/* Body and Header Styles */
body {
  margin: 0;
  font-family: 'Hanken Grotesk', sans-serif;
  padding: 0;
  background: #fff;
  color: #000;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

/* Navigation Styles */
.nav-logo {
  font-weight: 800 !important;
  font-size: 2.2rem;
  margin-right: 3.5rem;
}

.nav-right {
  background: rgba(243, 243, 243, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 1rem 2rem;
  width: fit-content;
  margin: 0 auto;
}

.nav-right a {
  margin: 0 1.5rem;
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  background: none;
}

.nav-right a:first-child {
  margin-left: 0;
}

.nav-right a:last-child {
  margin-right: 0;
}

/* Remove old nav-left styles if present */
.nav-left { display: none; }

/* Hero Section Styles */
#hero {
    text-align: center;
    font-size: 5rem;
    margin: 0 0 2rem 0;
    font-weight: 500;
    background-color: #f9f9f9;
    background-image: url('/images/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    /* border-radius: 0 0 1rem 1rem; */
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 400;
    color: #485C11;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

.hero-cta {
    background: rgba(255, 255, 255, 0.75);
    color: #3a5a7a;
    /* border: 1.5px solid #bfc9a7; */
    /* box-shadow: 0 4px 24px rgba(0,0,0,0.08); */
    backdrop-filter: blur(2px);
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
    background: rgba(255,255,255,0.92);
    color: #222;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #bfc9a7;
    opacity: 0.7;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

@media (max-width: 768px) {
  #hero {
    font-size: 5rem;
    padding: 0 1rem;
    height: 60vh;
  }
  .hero-tagline {
    font-size: 1.5rem;
  }
  .hero-cta {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .scroll-indicator {
    font-size: 2rem;
    bottom: 1rem;
  }
}

.hero-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

/* Main Content Styles */
main {
  /* padding: 2rem; */
  text-align: left;
}

main h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

section {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f3f3f3;
    margin: 3rem 0;
}

section:first-of-type {
    margin-top: 0;
}

section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

section h2 {
    font-weight: 700;
    font-size: 2rem;
}

section img {
    max-width: 100%;
    border-radius: 1rem;
}

section p {
    color: #6F6F6F;
    font-weight: 400;
    line-height: 1.6;
}

/* Card Styles */
#features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

@media (min-width: 900px) {
  #features {
    padding: 4rem 3rem;
  }
}

#team {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

#features .card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: left;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-thumbnail {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

#team .card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: left;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #f3f3f3;
    margin-bottom: 1rem;
}

#team h4 {
    font-weight: 600;
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
    text-transform: lowercase;
}

#team p {
    font-weight: 400;
    color: #6F6F6F;
    line-height: 1.5;
    flex-grow: 1;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Button Styles */
.buttons {
  margin-top: 1rem;
}

.button {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  background-color: #556B2F;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Footer Styles */
footer {
  margin-top: auto;
  padding: 2rem;
  background-color: #f9f9f9;
  color: #222;
}

.footer-left h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left li {
  margin-bottom: 0.4rem;
}

.footer-left a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
}

footer .copyright {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #485C11;
  font-weight: 400;
}

/* .newsletter {
    background: #f5f5f5;
    text-align: center;
    padding: 3rem 1rem;
}

.newsletter input[type="email"] {
    padding: 0.7rem;
    width: 250px;
    margin-right: 0.5rem;
    border-radius: 999px;
    border: 1px solid #ccc;
}

.newsletter button {
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: #000;
    color: white;
} */

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 900px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-right {
    margin: 1rem auto;
  }
}

html {
  scroll-behavior: smooth;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: #d9d5d5;
    display: block;
    /* line-height: 1.1; */
    letter-spacing: .16rem;
    margin-bottom: 2rem;
}

.hero-title .hero-word,
.hero-title .hero-dash {
  display: inline;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-tagline {
    font-size: 1.5rem;
  }
  .hero-cta {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .scroll-indicator {
    font-size: 2rem;
    bottom: 1rem;
  }
  .hero-title .hero-word,
  .hero-title .hero-dash {
    display: block;
    line-height: 1.2;
  }
  .hero-title .hero-dash {
    margin-bottom: 0.2em;
    margin-top: 0.2em;
  }
}

/* Contact Container Styles */
.contact-container {
  max-width: 600px;
  margin: 100px auto 0 auto;
  padding: 2rem 1rem;
  border-radius: 12px;
  text-align: left;
  flex: 1;
}

/* Legal Document Styles */
.legal-doc {
  padding-top: 100px !important;
  display: block;
  max-width: 800px;
  margin: 80px auto 40px auto;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
}