/* =================================
   GLOBAL RESET
================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#ffffff;
  color:#333;
  line-height:1.6;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}


/* =================================
   COLLEGE BANNER
================================= */

.announcement-banner{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:white;
  overflow:hidden;
}

/* Banner Image */

.banner-img{
  width:100%;
  max-height:140px;   /* controls banner height */
  object-fit:contain; /* keeps full image visible */
  display:block;
}


/* =================================
   HEADER
================================= */

.header-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 20px;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}
@media (max-width:768px){
  .banner-img{
    max-height:90px;
  }
}

/* =================================
   LOGO SECTION
================================= */

.logo-section{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1;
  min-width:0;
}

.logo-section img{
  height:40px;
  flex-shrink:0;
}

.logo-section h1{
  font-size:24px;
  font-weight:600;
  color:#222;
  white-space:nowrap;
}

.logo-watermark{
  position:fixed;          /* stays centered even while scrolling */
  top:50%;
  left:50%;

  transform:translate(-50%, -50%);

  width:220px;             /* adjust size if needed */
  opacity:0.06;            /* watermark effect */

  pointer-events:none;     /* prevents blocking clicks */
  z-index:-1;              /* stays behind text */
}

/* =================================
   MENU ICON
================================= */

.menu-icon{
  width:28px;
  display:flex;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  flex-shrink:0;
}

.menu-icon span{
  height:3px;
  background:#333;
  border-radius:2px;
  transition:0.3s;
}


/* =================================
   HAMBURGER ANIMATION
================================= */

.menu-icon.open span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.menu-icon.open span:nth-child(2){
  opacity:0;
}

.menu-icon.open span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}


/* =================================
   FULLSCREEN MENU
================================= */

#fullscreen-menu{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:#111;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  gap:22px;

  transform:translateY(-100%);
  opacity:0;

  transition:transform 0.45s ease, opacity 0.35s ease;

  z-index:2000;
}

#fullscreen-menu.active{
  transform:translateY(0);
  opacity:1;
}

#fullscreen-menu a{
  color:white;
  font-size:22px;
  font-weight:500;

  opacity:0;
  transform:translateY(15px);

  transition:0.35s;
}

#fullscreen-menu.active a{
  opacity:1;
  transform:translateY(0);
}

#fullscreen-menu a:hover{
  color:#ff4b5c;
  transform:scale(1.05);
}
/* Hide hamburger when menu is open */

#fullscreen-menu.active ~ .header-bar .menu-icon,
#fullscreen-menu.active + main ~ footer .menu-icon{
    display:none;
}
/* CLOSE BUTTON FOR FULLSCREEN MENU */

.menu-close{
    position:absolute;
    top:25px;
    right:30px;

    font-size:34px;
    color:white;
    cursor:pointer;

    transition:0.3s;
}

.menu-close:hover{
    transform:scale(1.2);
}
/* =================================
   ACTIVE PAGE HIGHLIGHT
================================= */

#fullscreen-menu a.active{
  color:#ff4b5c;
  font-weight:600;
}


/* DONATE BUTTON */

#fullscreen-menu .donate-btn{
  background:#ff4b5c;
  padding:10px 24px;
  border-radius:25px;
  font-size:20px;
}


/* =================================
   FOOTER
================================= */

footer{
  text-align:center;
  padding:18px;
  background:#111;
  color:white;
  margin-top:40px;
}


/* =================================
   RESPONSIVE DESIGN
================================= */

@media (max-width:768px){

  .logo-section img{
    height:38px;
  }

  .logo-section h1{
    font-size:22px;
  }

}

@media (max-width:480px){

  .header-bar{
    padding:10px 14px;
  }

  .logo-section{
    gap:8px;
  }

  .logo-section img{
    height:34px;
  }

  .logo-section h1{
    font-size:18px;
  }

  .menu-icon{
    margin-left:10px;
  }
.menu-icon.open{
    opacity:0;
    pointer-events:none;
}
  #fullscreen-menu a{
    font-size:20px;
  }

}
@media (max-width:768px){
  .logo-watermark{
    width:140px;
  }
}

/* DONATE BUTTON */

#fullscreen-menu .donate-btn{
  background:#ff4b5c;
  padding:10px 24px;
  border-radius:25px;
  font-size:20px;
  color:white; /* keep text visible */
}

/* HOVER STATE */

#fullscreen-menu .donate-btn:hover{
  background:#e63c4f;
  color:white;
}

/* ACTIVE PAGE STATE */

#fullscreen-menu .donate-btn.active{
  background:#ff4b5c;
  color:white;
  font-weight:600;
}