* {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-bar {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
  color: white;
}

.logo {
  width: 4%;
  height: auto;
  cursor: pointer;
  transition: width 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
}

.nav-bar-a {
  display: flex !important;
  align-items: center !important;
  gap: 2rem;
  white-space: nowrap;
  font-size: 1rem;
  flex-wrap: nowrap;
  overflow: visible;
}

.nav-bar-a a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Chrome-specific fix for navigation links */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .nav-bar-a a {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.nav-bar-a a:hover {
  color: gold;
  transform: scale(1.1);
}

.nav-bar-a .login-link {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-bar-a .login-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.nav-bar-a a:active {
  opacity: 0.8;
  transform: none;
}

.home-button {
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.home-button:hover {
  color: gold !important;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.8) !important;
}

.home-button.active {
  color: gold !important;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.8) !important;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  transition: transform 0.3s ease;
}

.hamburger:focus {
  outline: none;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Show hamburger and hide links on small screens */
@media (max-width: 668px) {
  .nav-bar-a {
    position: fixed;
    top: 4rem;
    right: -250px; /* hidden off screen */
    width: 220px;
    height: calc(100% - 4rem);
    background-color: #111;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: -3px 0 12px rgba(0, 0, 0, 0.8);
    gap: 1.5rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    opacity: 0;
  }

  .nav-bar-a.active {
    right: 0;
    opacity: 1;
  }

  .nav-bar-a a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }
}

/* Hamburger animation to X */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Smaller logo on very small screens */
@media (max-width: 480px) {
  .logo {
    width: 8%;
  }
}

/* Base Styles */
body {
  background-color: #1C1C1C;
  color: #EDEDED;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

/* Hero Section */
.hero-image {
  height: 100vh;
  background: url('../images/hero.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-text {
  z-index: 2;
  max-width: 800px;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 5rem;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  opacity: 0.85;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}

/* Stat Page */
.stat-page {
  padding: 4rem 2rem;
  text-align: center;
}

.stat-page-title h1 {
  color: #FFD700;
  font-size: 2.5rem;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.stat-page-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-page-stats > div {
  flex: 1 1 18%;
  min-width: 160px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-page-stats img {
  width: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8));
}

.stat-page-stats p {
  font-size: 0.95rem;
  color: #DDDCDC;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.4);
}

/* Get to Know Us Section */
.get-to-know-page {
  padding: 4rem 2rem;
  text-align: center;
}

.get-to-know-title h1 {
  color: #FFD700;
  font-size: 2.5rem;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
  margin-bottom: 3rem;
  opacity: 0.9;
}
.get-to-know-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.get-to-know-buttons button {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.get-to-know-buttons button:hover {
  background-color: #FFD700;
  color: #1C1C1C;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Scroll Animation */
.hidden-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.show-up {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Titles */
@media (max-width: 844px) {
  .stat-page-title h1,
  .get-to-know-title h1 {
    font-size: 2rem;
  }
}

@media (max-width: 652px) {
  .stat-page-title h1,
  .get-to-know-title h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 487px) {
  .stat-page-title h1,
  .get-to-know-title h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 418px) {
  .stat-page-title h1,
  .get-to-know-title h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 330px) {
  .stat-page-title h1,
  .get-to-know-title h1 {
    font-size: 1.3rem;
  }
}

/* Responsive Layout for Stat Items */
@media (max-width: 1070px) {
  .stat-page-stats > div {
    flex: 1 1 30%;
  }
}

@media (max-width: 720px) {
  .stat-page-stats > div {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .stat-page-stats > div {
    flex: 1 1 100%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .get-to-know-buttons {
    flex-direction: column;
  }
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 1.5rem 2rem;
  box-shadow: inset 0 1px 3px rgba(255, 215, 0, 0.3);
  font-size: 0.9rem;
  color: #DDDCDC;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.footer-left p {
  color: #DDDCDC;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.8);
}

.footer-left a {
  color: #FFD700;
  text-decoration: none;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.8);
  font-weight: 600;
  margin-left: 0.3rem;
  transition: color 0.3s ease;
}

.footer-left a:hover,
.footer-left a:focus {
  color: #FFF;
  text-shadow: 0 0 6px #FFD700;
  outline: none;
}

.footer-right {
  display: flex;
  gap: 1.25rem;
}

.social-icon svg {
  height: 2rem;
  width: 2rem;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.8));
  transition: filter 0.3s ease;
  cursor: pointer;
}
.ig-icon {
  height: 1.75rem;
  width: 1.75rem;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
  transition: filter 0.3s ease;
  cursor: pointer;
}
.social-icon:hover svg,
.social-icon:focus svg {
  filter: drop-shadow(0 0 6px #FFD700);
  outline: none;
}

/* Responsive for small screens */
@media (max-width: 520px) {
  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-right {
    justify-content: center;
  }
}
.sid-git {
  white-space: nowrap;
}