/* ===== Global ===== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h2, h3, h4 {
  color: #00ffff;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Desktop logo size */
.logo-container img {
  height: 80px; /* desktop default */
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 6px #00ffff) drop-shadow(0 0 12px #00ffff);
}

/* Tablets & small desktops */
@media (max-width: 991px) {
  .logo-container img {
    height: 60px; /* smaller on tablets */
  }
}

/* Phones */
@media (max-width: 480px) {
  .logo-container img {
    height: 50px; /* smaller on phones */
  }
}


.logo-container img:hover {
  transform: scale(1.2);
  /* stronger glow on hover */
  filter: drop-shadow(0 0 12px #00ffff) drop-shadow(0 0 24px #00ffff);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #00ffff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  z-index: 10001;
  transition: transform 0.3s ease;
}

.menu-toggle i.active {
  transform: rotate(90deg);
}

/* ===== Mobile Navbar ===== */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 9999;
  }

  .nav-links.active {
    height: 100vh;
    opacity: 1;
  }

  .nav-links a {
    font-size: 1.4rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  }

  .nav-links a:hover {
    color: #338686;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger fade-in links */
  .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }
  .nav-links.active a:nth-child(6) { transition-delay: 0.6s; }
}

/* ===== Privacy Page Content ===== */
.content {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 140px 20px 40px;
  position: relative;
  z-index: 1;
}

.content h1 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.content h2 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.content p, .content li {
  color: #cfcfcf;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}

.content ul {
  margin-left: 20px;
  margin-bottom: 14px;
}

/* ===== Fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Footer ===== */
footer, .site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

footer a, .site-footer a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

footer a:hover, .site-footer a:hover {
  color: #aaa;
}
