
/* ===== CSS RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;   /* ensures width includes padding/border */
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;  /* base font */
  scroll-behavior: smooth;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

ul {
  list-style: none;
}

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

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

/* ===== NAVBAR ===== */

/* Navbar basics */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2rem;
    background-color: white;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    z-index: 1000;
  }
  
  /* Logo */
  .logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  
  /* Nav links */
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    margin-left: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    
  }
 
  /* Burger menu - default hidden */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;         /* exact height for spacing */
    cursor: pointer;
    z-index: 1001;        /* above nav-links */
  }
  
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  
  /* Toggle to X */
  .burger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .burger.toggle span:nth-child(2) {
    opacity: 0;   /* hide middle line */
  }
  
  .burger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .burger {
      display: flex;
    }
  
.nav-links {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            text-align: center;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow: hidden;
            max-height: 0;                  /* hidden by default */
            transition: max-height 0.4s ease;
            z-index: 1000;
          }
  
          .nav-links.show {
            max-height: 500px;              /* enough for all links */
          }
  
    .nav-links li {
      margin: 0;
      padding: 1rem 0;
    }
  }
  

  
  /* ===== HERO SECTION ===== */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
    z-index: 2;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-overlay h1 {
    color: white;
    font-size: 2rem;
    max-width: 800px;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  }

  .hero-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;        /* keeps it proportional if needed */
    display: block;
    margin: 0 auto;             /* centers horizontally */
    opacity: 0;
  animation: heroLogoFade 3s ease forwards;
  animation-delay: 0.7s; /* fade AFTER video + page load */
  }

  @keyframes heroLogoFade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @media (max-width: 768px) {
    .hero-logo {
      width: 300px;
      height: 300px;
    }
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-section {
    background-color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
  }
  
  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
  }

  @media (max-width: 768px) {
    .about-section {
      padding: 3rem 1.5rem;
    }
  
    .about-inner {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }
  
    .about-image img {
      width: 220px; /* smaller illustration on mobile */
    }
  }
  
  
  /* Text column */
  .about-text {
    flex: 1;
  }
  
  .about-text h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  .about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  /* Image column */
  .about-image {
    flex-shrink: 0;
  }
  
  .about-image img {
    width: 350px;
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  
  /* ===== MORE FROM US SECTION ===== */
  .more {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('LandsEndChough169.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .more-content {
    background-color: white;
    padding: 50px 60px; /* desktop/tablet padding */
    max-width: 800px;
    text-align: center;  /* center all text and links */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    line-height: 1.6;
  }
  
  .more-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  
  .more-content p {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .more-content a {
    color: #000;              /* black text */
    font-weight: bold;         /* bold text */
    text-decoration: none;     /* remove underline by default */
    transition: text-decoration 0.2s ease;
  }
  
  .more-content a:hover {
    text-decoration: underline; /* subtle underline on hover */
  }
  
  /* ===== FADE-IN ANIMATION ===== */
  .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .about-content { padding: 0 15px; font-size: 1rem; }
    .about-content h2 { font-size: 1.8rem; }
    .about-content p { font-size: 1rem; }
  
    .more-content { padding: 30px 40px; font-size: 1rem; }
    .more-content h2 { font-size: 1.6rem; }
  }
  
  @media (max-width: 480px) {
    .logo img {
        width: 50px;
        height: 50px;
      }
    .about-content { padding: 0 10px; font-size: 0.95rem; }
    .about-content h2 { font-size: 1.6rem; }
    .about-content p { font-size: 0.95rem; }
  
    .more-content { padding: 20px 25px; font-size: 0.95rem; }
    .more-content h2 { font-size: 1.4rem; }
  }
  