body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
  }

/* VIDEO BACKGROUND STYLES */
  .video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
  }
  
  /* OVERLAY TEXT STYLES */
  body.home_page .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    padding: 5rem;
    width: 90%;
    max-width: 900px;
  }
  
  
  .text-title {
    font-size: 40px;
    margin-bottom: 1rem;
  }
  
  .text-description p {
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  
  @media (max-width: 768px) {
    .text-overlay  {
      padding: 1.5rem;
    }
  
    .text-title {
      font-size: 1.4em;
    }
    
    .text-description p  {
      font-size: 0.95rem;
    }
  }
  

  /* NAVBAR STYLES */
 
/* === Scroll-aware navbar per privacy/contact === */
.navbar.scroll-aware {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem 4rem;
  background-color: transparent;
  color: white;
  z-index: 10;
  transition: all 0.3s ease;
}

.navbar.scroll-aware.sticky {
  position: fixed;
  top: 0;
  background-color: rgba(24, 23, 23, 0.95);
  color: #000;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Logo and nav font scaling */
.navbar.scroll-aware.sticky .logo {
  font-size: 1.3rem;
}

.navbar.scroll-aware.sticky .nav-links a {
  font-size: 0.95rem;
}

/* Spacer to prevent layout shift */
.navbar-placeholder {
  display: none;
  height: 90px;
}

.navbar.scroll-aware.sticky + .navbar-placeholder {
  display: block;
}

/* Navbar styles */
   
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    padding: 2rem 4rem;
    box-sizing: border-box;
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
  }

  .logo:hover {
    color: #ccc; 
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ccc;
  }
  /* Mobile menu */
  .burger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: rgba(44, 44, 48, 0.85);
      position: absolute;
      top: 100%;
      right: 0;
      padding: 1rem;
      width: 200px;
      border-radius: 10px;
    }

    .navbar {
     padding-left: 30px;
    }
  
    .nav-links.show {
      display: flex !important;
    }
  
    .burger {
      display: block;
    }
  }
  
/* Existing styles for body, navbar, etc. remain unchanged */

/* FOOTER STYLES */
footer {
  text-align: center;
  padding: 0.5rem 0; 
  color: #fff;
  font-size: 0.8rem; 
  z-index: 2;
}

body.home_page footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
}

body.secondary-page footer {
  background-color: #222;
  margin-top: auto;
}

/* Ensure content doesn't overlap with fixed footer on home page */
body.home_page main {
  padding-bottom: 40px; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer {
    font-size: 0.8rem; 
    padding: 0.3rem 0; 
  }
}

/* ****EXTRA PAGES***** */


/* CONTACT */
body.secondary-page {
  background-color:#f0f0f0;
  color: #111;
  font-family: 'Poppins', sans-serif;
}
/* Hero background image */
.contact-hero {
  width: 100%;
  overflow: hidden;
}
.hero-img-c {
  width:100%;
  height: auto;
  display: block;
  object-fit:cover; 
  max-height: 80vh; 
  opacity: 8 rbg(rgb(15, 15, 15), 255, 255, 0.9);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-img-c {
    max-height: 50vh; 
  }
}
@media (min-width: 1200px) {
  .contact-hero-c {
    max-height: none; /
  }
  .hero-img-c {
    max-height: 90vh; 
  }
}

/* TEXT CONTACT*/
.contact-content {
  max-width: 800px;
  margin: 5rem auto;
  padding: 0 2rem;
  padding-bottom: 1rem;
  line-height: 1.7;
  text-align: center; 
}
.contact-content h2 {
  margin-bottom: 1.5rem;
  width: 100%;
  font-size: 2rem;
  color: #383838;
}
.contact-content p { 
  margin-bottom: 1.5rem;
  width: 100%;
  font-size: 1rem;
  color: #666;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-content h2 {
    font-size: 1.5rem;
  }
  .contact-content p {
    font-size: 0.95rem;
  }
}

/* ICON CONTACT*/
.contact-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding-top: 1rem;
  padding-bottom: 9rem;
  
  background-color: #f0f0f0;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.contact-box {
  flex: 1 1 250px;
  max-width: 300px;
}

.icon-circle {
  background-color: #333;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle img {
  width: 40px;
  height: 40px;
  filter: invert(1); /* make icon white if it's black */
}

.contact-box h4 {
  margin: 0.5rem 0;
  font-weight: bold;
  color: #111;
}

.contact-box p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}


/* PRIVACY */
body.privacy-page {
  background-color: #111;
  color: #f0f0f0; 
  font-family: 'Poppins', sans-serif;
}

/* Hero background image */
.privacy-hero {
  width: 100%;
  max-height: 100vh; 
  overflow: hidden;
}

.hero-img {
  width:100%;
  height: auto;
  display: block;
  object-fit:cover; 
  max-height: 80vh; 
}


.hero-text {
  max-width: 900px;
  margin: 1rem auto 3rem auto;
  padding: 0 1rem;
  color: #656464; 
  text-align: center;
}

h2.contact-text-p{
  font-size: 2rem;
  color: #383838;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
}


/* TEXT */
.privacy-content {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 3rem;
  line-height: 1.7;
}

.privacy-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #383838; 
}

.privacy-content li {
  font-size: 1rem;
  color: #646464; 
}
