html {
  color-scheme: only light;
}

:root {
  color-scheme: light;
  --navy: #001F3F;
  --gold1: #CDA349;
  --gold2: #E6C47A;
  --bg: #f5f5f5;
  --ink: #222;
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f4f4;
      color: #111;
      line-height: 1.6;
      margin: 0;
      padding: 0;      
    scroll-behavior: smooth;
    }

.nav-logo img {
  height: 40px;         /* or adjust as needed */
  max-height: 100%;
  width: auto;
  display: block;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background-color: #0f1a2c;
  color: white;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 1001;
}

.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Animation to X when active */
.nav-toggle.active .top {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .middle {
  opacity: 0;
}

.nav-toggle.active .bottom {
  transform: rotate(-45deg) translate(6px, -6px);
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin-left: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
    

.hero {
      font-family: 'Segoe UI', sans-serif;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      color: white;
    }
    .hero-text {
	 color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 2px 4px 10px rgba(0, 0, 0, 0.8), 2px 4px 20px rgba(0, 0, 0, 0.8),  0 0 2px rgba(0, 0, 0, 0.7);
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .hero p {
      max-width: 500px;
      margin-bottom: 2rem;
    }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 30vh;
    max-width: 600px;
  margin: 0 auto;
  width: 100%;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 2px 4px 10px rgba(0, 0, 0, 0.8), 2px 4px 20px rgba(0, 0, 0, 0.8),  0 0 2px rgba(0, 0, 0, 0.7);
}

.hero-logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 10px;
}


    
    .hero .btn {
      padding: 0.75rem 1.5rem;
      margin: 0.5rem;
      border: none;
      font-weight: bold;
      cursor: pointer;
    }
    .hero-parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-logo-wrapper {
  text-align: center;
}

.hero-description {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #0f1c2c;
  color: #ba8c44;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #ba8c44;
  color: #0f1c2c;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}
    

section {
      padding: 4rem 2rem;
    }

    .about, .team {
      max-width: 1400px;
      margin: 0 auto;
    }
.contact {
  background-color: #f4f4f4; /* or whatever you want */
  padding: 60px 20px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  color: #2c2c2e; /* default text color */
}


.pillars {
  background-color: #2c2c2e;
  color: white;
}

.pillars-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* force 2 columns max */
  gap: 2rem;
  padding: 20px 0;
  justify-content: center;
}

.pillars-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.pillars-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.pillars-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #F2AA4C;
}

.pillars-card p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ccc;
}

/* Optional: subtitle text */
.pillars-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #ccc;
}

.card-grid {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center; /* keep cards centered if not full row */
  gap: 1rem;
  flex-wrap: wrap;
}
.card {
  background: transparent;
  padding: 0.25rem;
  color: #c2c2c2;
  flex: 1 1 280px;
  max-width: 300px;        /* Prevents it from stretching wider */
  border-radius: 12px;
}

.card-strong {
    color: #ba8c44;
}

.pillars-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pillars-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
}

.intro-text-left,
.intro-text-right {
  flex: 1 1 45%;
}

.intro-text-left h2 {
  font-size: 2em;
  color: #b48c44;
  line-height: 1.2;
}

.intro-text-right p {
  color: #ccc;
  font-size: 1em;
  line-height: 1.6;
}



				/* === ABOUT Section Styles === */
    
.about {
  background-color: #f4f4f4; /* or whatever you want */
  padding: 60px 20px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  color: #eee; /* default text color */
}

.about-content {
  display: flex;
  color: #0f1c2c;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.about-text {
  flex: 1;
  color: #0f1c2c; /* override if needed */
}

.about-text h2 {
  color: #0f1c2c; /* headline accent color */
}

.about-text ul {
  padding-left: 20px;
  margin-top: 10px;
}

.about-text li {
  margin-bottom: 5px;
  color: #0f1c2c;
}


				/* === FOUR PILLARS Section Styles === */
#pillars h2 {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  color: #ba8c44; /* or any color you prefer */
  line-height: 1.2em;     /* controls vertical spacing */
  margin: 0 auto 1rem;    /* centers + adds spacing below */
  padding: 60px 20px;
}



				/* === CONTACT Section Styles === */

.contact-section {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  color: #ba8c44;
  font-family: 'Montserrat', sans-serif;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.contact-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-subtitle {
  font-size: 0.95rem;
  text-align: center;
  color: #2c2c2e;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: none;
  background: #c2c2c2;
  color: #0f1c2c;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #c2c2c2;
  box-shadow: 0 0 0 2px #3f82ff;
}

.form-terms {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #0f1c2c;
  flex-wrap: nowrap; /* keeps everything on one line */
}

.form-terms input[type="checkbox"] {
  flex: 0 0 auto; /* don't grow or shrink */
  width: 18px;
  height: 18px;
  margin: 0;
  transform: scale(1.1);
  cursor: pointer;
}

.form-terms label {
  flex: 1;
  margin: 0;
  line-height: 1.4;
  cursor: pointer;
  word-break: normal;
  white-space: normal;
}

.submit-button {
  display: inline-block;
  width: 100%;
  background-color: #0f1c2c;
  color: #ba8c44;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #ba8c44;
  color: #0f1c2c;
}

a.submit-button {
  display: inline-block;
  max-width: 250px;
  width: 100%;
  padding: 12px 24px;
  margin-bottom: 20px;
  background-color: #0f1c2c;
  color: #ba8c44;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-decoration: none; /* Removes underline */
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

a.submit-button:hover {
  background-color: #ba8c44;
  color: #0f1c2c;
}

.form-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space between label and input */
  margin-bottom: 1.5rem;
}

.form-inline input[type="text"] {
  width: 100px;
  padding: 0.5rem;
}


    
            /* === TEAM Section Styles === */
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  padding: 20px;
}

.learn-more-btn {
  display: inline-block;
  background-color: #0f1c2c;
  color: #ba8c44;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-bottom: 2rem;
}

.learn-more-btn:hover {
  background-color: #ba8c44;
  color: #0f1c2c;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ba8c44;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
  margin-top: 10px;
  font-size: 1.2em;
  color: #ba8c44;
}

.team-member p {
  color: #ddd;
  font-size: 0.9em;
  margin: 0;
}

.text-center {
  text-align: center;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  background-color: #ba8c44;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  background-color: #c69c55;
}

#team {
  background-color: #2c2c2e; /* dark gray or black */
  padding: 60px 0; /* gives breathing room above/below */
}


    
            /* === FOOTER Section Styles === */
  footer {
  background: #000;
  color: white;
  padding: 2rem;
  text-align: left;
}
    
  .site-footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-branding {
  flex: 1 1 250px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.social-icons a {
  margin-right: 12px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #F2AA4C;
}

.footer-columns {
  display: flex;
  flex: 2 1 700px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #F2AA4C;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: #F2AA4C;
  color: #111;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom hr {
  border: 0;
  border-top: 1px solid #333;
  margin-bottom: 15px;
}

.footer-disclaimer {
  font-size: 0.65rem; /* small text */
  color: #ccc;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  line-height: 1.4;
}

.footer-disclaimer a {
  color: #cda349; /* your gold tone */
  text-decoration: underline;
}

.footer-disclaimer a:hover {
  color: #e6c47a;
}

.disclaimer-container ul {
  padding-left: 25px;  /* space from the left edge */
  margin-left: 0;      /* ensures consistent alignment */
}
.disclaimer-container li {
  margin-bottom: 8px;  /* extra space between list items */
}



    
            /* === THANK YOU Page Styles === */



.thank-you-wrapper {
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
}

.thank-you-wrapper h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.return-home {
  display: inline-block;
  margin-top: 2rem;
  color: #3f82ff;
  font-weight: 600;
  text-decoration: none;
}
.return-home:hover {
  text-decoration: underline;
}
   


            /* === @MEDIA Section Styles === */



    @media (max-width: 768px) {
  .hero-content {
    padding-top: 0 !important;
  }
    
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  header nav, header .btn {
    margin-top: 0.5rem;
  }

  
    section {
      padding: 2.5%;
    }

  .nav-toggle {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
 
  .nav-toggle.active .top {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .middle {
    opacity: 0;
  }

  .nav-toggle.active .bottom {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 2rem;
    width: 35vw;
    background-color: #0f1c2c;
    padding: 1.5rem;
    box-shadow: -2px 6px 12px rgba(0, 0, 0, 0.5);
    border-left: 2px solid #333;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* keep text right-aligned */
    text-align: right;
    z-index: 1000;
    overflow: hidden;  /* prevents content from spilling out */
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem 0;
  }

  .nav-menu a:hover {
    color: #d4af37;
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
    align-items: flex-end;
  }

  .nav-buttons .btn {
    width: 100%;
    text-align: right;
  }

  .about {
  max-width: 250px;
  width: 100%;
}
  
  .about-content {
    flex-direction: column-reverse;
    width: 90%;
    gap: 40;
  }
  
  .pillars-container {
    padding: 1rem;
  }

 .pillars-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1rem !important;
    justify-items: center !important;
  }

  .pillars-card {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    background-color: rgba(255,255,255,0.08) !important;
    color: #fff !important;
  }

  .pillars-card img {
    width: 100% !important;
    height: auto !important;
  }
  
    .card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-text-left,
  .intro-text-right {
    flex: 1 1 100%;
  }
    
  .team-container{
    padding: 0;
  }

.contact-title {
  font-size: 1rem;
}
  
    #backToTop {
    display: flex;
  }

  .newsletter-form input[type="email"] {
  max-width: 240px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}
}