/* ===================== Base Styles ===================== */
* {
  font-family: 'Rajdhani', sans-serif;
}

* body {
  padding-top: 64px; 
}

/* ===================== Page Transitions ===================== */
.fade {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.fade.show {
  opacity: 1;
}

/* ===================== Navbar Styles ===================== */
.custom-navbar {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  border-bottom: 1px solid #2a2a2a;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
}

/* ===================== Navbar Container ===================== */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* ===================== Hamburger Menu Toggle ===================== */
.menu-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
}

/* ===================== Nav Links ===================== */
.nav-links {
  display: flex;
}

.nav-links a {
  margin-left: 20px;
  margin-right: 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0;
  transition: 0.3s;
}

.nav-links a:hover {
  color: rgb(2, 154, 255);
}

.nav-links a.current {
  color: rgb(2, 154, 255);
  border-bottom: 2px solid rgb(2, 154, 255);
}

/* ===================== Logo ===================== */
.logo {
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

#CCA-Logo {
  height: 40px;
  width: 50px;
  padding-right: 10px;
}

.Logo-Title {
  color: #ffffff;
}

/* ===================== Scroll Offset ===================== */
html {    
  scroll-padding-top: 100px;   
}

/* ===================== Responsive Layout ===================== */
@media (max-width: 768px) {
  /* ----- Hamburger Icon Visibility on Mobile ----- */
  .menu-toggle {
    display: block;
  }

  /* ----- Make Navbar Fixed on Top ----- */
  .custom-navbar {
    position: fixed; 
    top: 0;
    width: 100%;
    background-color: #000000;
    z-index: 10000;
  }

  /* ----- Collapsible Nav Links for Mobile ----- */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #111111;
    width: 100%;
    padding: 16px 0;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-top: 1px solid #333333;
    font-size: 24px;  
  }

  /* ----- Body Padding to ensure content is not hidden by fixed mobile navbar ----- */
  body {
    padding-top: 80px; 
  }
}

/* ===================== Footer Styles ===================== */
footer {
  font-size: 13px;
  background-color: #000000;
  padding: 15px 0;
  text-align: center;
}

.footer-title {
  text-decoration: none;
  color: rgb(213, 213, 213);
  font-weight: bold;
}

.footer-socials {
  padding-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-socials .social-icon img {
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(0.9);
  transition: transform 0.2s ease;
}

.footer-socials .social-icon img:hover {
  transform: scale(1.2);
}
