*{box-sizing:border-box;font-family:Arial,sans-serif}
body{margin:0;min-height:100vh;color:#fff;overflow-x:hidden}

.home-bg{background:url('assets/bg.png') center/cover fixed;filter:blur(0px)}
.chiefs-bg{background:url('assets/bg.png') center/cover fixed;filter:blur(0px)}
.departments-bg{background:url('assets/bg.png') center/cover fixed;filter:blur(0px)}
.ia-bg{background:url('assets/bg.png') center/cover fixed;filter:blur(0px)}
.availability-bg{background:url('assets/bg.png') center/cover fixed;filter:blur(0px)}
.app-bg{background:url('assets/bg.png') center/cover fixed;filter:blur(0px)}




.app-bg form input,
.app-bg form textarea,
.app-bg form select {
    background: rgba(255,255,255,.15);   
    color: #fff;                         
}


.staff-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
  max-width: 600px; /* Added max-width */
  margin-left: auto;
  margin-right: auto; /* Centered the stack */
}

.staff-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(30,30,30,.65);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .2s ease;
}

.staff-card:hover {
  transform: translateY(-3px);
}

.staff-pfp {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
}

.staff-info {
  display: flex;
  flex-direction: column;
}

.staff-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.staff-role {
  margin-top: 4px;
  font-size: .9rem;
  font-weight: 600;
  opacity: .9;
}

/* FUCKING BITCH ASS ROLE COLORS IDK IF I EVEN LIKE THESE FUCKERS */
.owner { color: #ff4d4d; }
.co-owner { color: #ff944d; }
.developer { color: #4da6ff; }
.hos { color: #4dff88; }

.box.grey h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.box.grey p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}



.topbar{position:fixed;top:15px;left:50%;transform:translateX(-50%);width:95%;height:65px;background:rgba(255,255,255,.1);backdrop-filter:blur(12px);border:1px solid rgba(0,0,0,.7);border-radius:20px;display:flex;align-items:center;justify-content:center;z-index:1000}
.topbar img{height:40px;border-radius:50%}
.menu-btn{position:absolute;right:20px;width:30px;cursor:pointer}
.menu-btn span{display:block;height:3px;background:#fff;margin:5px 0;border-radius:2px}
.side-menu{position:fixed;top:0;right:-280px;width:280px;height:100%;background:rgba(0,0,0,.6);backdrop-filter:blur(15px);transition:.35s;padding-top:100px;z-index:999}
.side-menu.open{right:0}
.side-menu a{display:block;padding:16px 25px;color:#fff;text-decoration:none}
.side-menu a:hover{background:rgba(255,255,255,.12)}
.page{padding-top:120px;padding-bottom:60px;display:flex;justify-content:center}
.box{width:92%;max-width:1100px;background:rgba(255,255,255,.1);border-radius:22px;padding:35px;backdrop-filter:blur(12px)}
.box.grey{background:rgba(130,130,130,.6)}
.center-logo{display:flex;justify-content:center;margin-bottom:20px}
.center-logo img{width:85px;border-radius:50%}
.fade-in{animation:fade .8s ease}
@keyframes fade{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:none}}
.dept-card{display:flex;gap:20px;background:rgba(255,255,255,.08);border-radius:18px;padding:22px;margin-bottom:22px;position:relative;animation:fade .8s ease}
.dept-card img{width:95px;height:95px;border-radius:14px}
.dept-title{font-size:19px;font-weight:bold}
.dept-quote{opacity:.85;margin-top:5px}
.dept-tag{position:absolute;top:18px;right:22px;font-size:13px;opacity:.85}
.dept-date{position:absolute;bottom:14px;left:22px;font-size:12px;opacity:.55}
form input,form textarea,form select{width:100%;padding:11px;margin-bottom:15px;border-radius:10px;border:none;outline:none}
textarea{resize:none;height:110px}
.name-row{display:flex;gap:10px}
.submit-btn{background:#1f4fd8;border:none;color:#fff;padding:10px 22px;border-radius:12px;font-size:14px;cursor:pointer}
.submit-btn:hover{opacity:.85}
.blue-link{color:#4da3ff;cursor:pointer}
.dept-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}
.dept-buttons button {
  padding: 12px 25px;
  border-radius: 15px;
  border: none;
  background: #1f4fd8; 
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.25s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.dept-buttons button:hover {
  background: #2a65e0;
  transform: scale(1.05);
}


.box.grey {
  background: rgba(60, 60, 60, 0.85);
}


.question-box{
  background: rgba(120,120,120,0.65);
  border-radius:18px;
  padding:18px 20px;
  margin-bottom:18px;
  backdrop-filter: blur(10px);
}


.question-box p{
  margin:0 0 8px;
  font-weight:600;
  opacity:.95;
}


.question-box input,
.question-box textarea,
.question-box select{
  background: rgba(200,200,200,0.9);
  color:#000;
  border-radius:10px;
  border:none;
  padding:11px;
}


.question-box input::placeholder,
.question-box textarea::placeholder{
  color: rgba(0,0,0,0.45);
}


.name-row{
  display:flex;
  gap:10px;
}


textarea{
  resize:none;
  height:110px;
}


.topbar{
  position:fixed;
  top:15px;
  left:50%;                   
  width:95%;
  height:65px;
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(12px);
  border:1px solid rgba(0,0,0,.7);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
  transition:width .35s ease;
}
.topbar.narrow{width:calc(95% - 500px)} 


.name-row select {
  padding: 12px 25px;
  border-radius: 15px;
  border: none;
  background: #1f4fd8;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all .25s;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  outline: none;               
}


.name-row select:hover,
.name-row select:focus {
  background: #2a65e0;
  transform: scale(1.05);
}


.name-row input[type="text"] 


.question-box select {
  padding: 12px 25px;
  border-radius: 15px;
  border: none;
  background: #1f4fd8;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all .25s;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  outline: none;
}

.question-box select:hover,
.question-box select:focus {
  background: #2a65e0;
  transform: scale(1.05);
}

.topbar img { height: 40px; }  