/* General Styles */


body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #E6E8E5;
  color: #333;
}

  * {
    box-sizing: border-box;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

  html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #E6E8E5;
  }

  .logo {
    margin: 0; /* remove default margin */
    padding: 0; /* remove default padding */
    display: flex;
    align-items: center; /* vertically align with nav */
  }
  
  .logo a {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 1; /* eliminate extra line height space */
  }
  
  .logo-image {
    max-height: 120px;   /* adjust as needed for desktop */
    display: block; /* removes inline gap */
    height: auto;
    width: auto;
  }
  
  @media (max-width: 768px) {
    .logo-image {
      max-height: 90px; /* smaller logo on mobile */
    }
  }


@media (max-width: 400px) {
  .logo-image {
    max-height: 60px; /* very small phones */
  }
}
  
  
  
  /* Film Grain Overlay for any section */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 200 200'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
}

/* Ensure the section content stays on top */
.section {
  position: relative;
  z-index: 2;
}


  /* Headings, buttons */
h1, h2, h3, .pop-button h3, .callout, button {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
  
.site-header {
  background-color: rgba(230, 232, 229, 0.9);
  padding: 0 1rem; /* no vertical padding */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 500;
  line-height: 1;
}

  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0A3D62;
  }
  
  .main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .main-nav a:hover {
    color: #D4AF37; /* Gold color */
  }

  /* Desktop - Hide hamburger, show normal nav */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
  
  .main-nav {
    position: static;
    width: auto;
    background-color: transparent;
    max-height: none;
    overflow: visible;
    border-bottom: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .main-nav ul {
    flex-direction: row;
    gap: 2rem;
    padding: 0;
  }
}

  /* Hamburger Button */
  @media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25px; /* increased width */
    height: 25px; /* increased height */
    background: none;
    border: none;
    cursor: pointer;
    overflow: visible;
    z-index: 2001;
    padding: 0; /* ensure there's no padding restriction */
  }
  
  .menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin: 1.1px 0; /* adds spacing between bars */
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0; /* aligns to the right edge of the container */
    width: 100%;
    background-color: #E6E8E5;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-bottom: 1px solid #ccc;
  }
  
  .main-nav.open {
    max-height: 300px; /* Or however tall your nav items are */
    transform: translateY(0);
  }
  
  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    margin: 0;
    padding: 0;
    text-align: right;
  }
  
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
  }

  .main-nav a {
    font-size: 1.1rem;
    color: #333;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.);
  }
 
  .main-nav {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, max-height 0.4s ease;
    border-radius: 0 0 12px 12px;
  }
}

  


  /* Hero Styles */
  #hero h1 {
    font-size: 6rem;       /* Make it extra big */
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  
  #hero h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
  }

  #hero .btn {
    margin-top: 1rem; /* adjust the value as needed */
  }
  
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 3.5rem;
    }
  
    #hero h3 {
      font-size: 1.25rem;
    }
  }

  .hero-logo img {
  max-width: 100%;
  height: auto;
  max-height: 200px; /* adjust as needed */
}

@media (max-width: 768px) {
  .hero-logo img {
    max-height: 120px; /* smaller on mobile, adjust as desired */
  }
}

  
  /* Video Section */
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  
  

/* Sections Styles */
    .section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
  }
  
  .section-dark {
    background-color: #29363A;
    color: #E6E8E5;
  }
  
  .section-light {
    background-color: #E6E8E5;
    color: #000;
  }
  
  .content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .content p, .content ul {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .content .quote {
    font-style: italic;
    font-weight: 300;
    font-size: 1.5rem;
  }


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #e6e8e5;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #D4AF37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #b8982e;
}



/* Mobile view for 1 column layout */
@media (max-width: 768px) {
  .button-container {
    grid-template-columns: 1fr; /* 1 column for small screens */
  }
}

/* Socials Section */
#socials {
    background-color: #29363A;
    color: #E6E8E5;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  #socials h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }

  #socials p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  #socials a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  #socials a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #D4AF37;
  }
  
  /* Social Links Styling */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .social-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px #c10588;
  }
  
  .social-links a i {
    transition: color 0.3s ease;
  }  
  
  /* Footer */
  footer {
    background-color: #1C2528;
    color: #D4AF37;
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #444;
    margin: 0;

  }

  body {
    overflow-x: hidden;
  }
  
  .section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 2rem; 
  }
  
  /*update notes */