/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #eae6df;
}

/* Navbar */
.navbar {
  width: 100%;
  background-color: #ffffff;   /* White background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 80px;               /* Slightly taller for luxury feel */
  position: relative;
}

/* Logo */
.logo a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  position: relative;
  color: #0b2d5c;   /* Biltmore dark blue */
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  opacity: 0.7;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #d4af37; /* Gold */
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.navbar {
  border-bottom: 3px solid #d4af37;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 36px;
  }
}

.hero-image {
  width: 100%;
  overflow: hidden;
}

/* Hero Section */
.hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
}

/* Overlay Text */
.hero-text {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #0b2d5c; /* Dark Blue */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
  padding: 0 20px;

  /* Sexy layered shadow */
  text-shadow:
 0 3px 6px rgba(0,0,0,0.3),
  0 12px 30px rgba(0,0,0,0.25);
}

/* Responsive Text */
@media (max-width: 768px) {
  .hero-text {
    font-size: 28px;
    top: 10%;
  }

  .hero-image img {
    height: 60vh;
  }
}

/* Headline */
.headline {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Subheadline */
.subheadline {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInTagline 2s ease forwards;
  animation-delay: 1s;
}

/* ===== Lower Section Wrapper ===== */
.home-lower {
  width: 100%;
  padding: 64px 18px 70px;
  background: #faf7f2; /* warm light background like your sample */
}

.home-lower__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ===== Headings ===== */
.home-lower__title {
  color: #0b2d5c;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 6px 0 12px;
}

.home-lower__subtitle {
  color: #b58a2a; /* warm gold text tone */
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  margin: 0 0 28px;
}

/* ===== Buttons ===== */
.home-lower__buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.home-lower__buttons .btn {
  width: 220px;     /* Exact same width */
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}

.btn--gold {
  background: #d4af37;
  color: #0b2d5c;
}

.btn--navy {
  background: #0b2d5c;
  color: #ffffff;
}

.btn--wide {
  width: min(240px, 100%);
  margin-top: 16px;
}

.btn--pill {
  border-radius: 8px;
  padding: 13px 26px;
}

/* ===== Cards Grid ===== */
.home-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: 26px auto 42px;
}

.card {
  background: #ffffff;
  border-radius: 4px;
  padding: 30px 26px 26px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  text-align: center;
}

.card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: #d4af37; /* gold icon */
}

.card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card__title {
  color: #0b2d5c;
  font-size: 20px;
  font-weight: 500;
  margin: 6px 0 10px;
}

.card__text {
  color: #6a7486;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Divider ===== */
.gold-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.9);
  margin: 52px 0 38px;
}

/* ===== Newsletter ===== */
.newsletter__title {
  color: #0b2d5c;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  margin: 0 0 18px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
  align-items: center;
}

.newsletter input {
  height: 52px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid rgba(11,45,92,0.15);
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  font-size: 16px;
  outline: none;
}

.newsletter input:focus {
  border-color: rgba(11,45,92,0.35);
}

/* Accessibility helper */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .home-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 520px) {
  .newsletter {
    grid-template-columns: 1fr;
  }

  .btn--pill {
    width: 100%;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: #0b2d5c;   /* Brand Navy */
  padding: 28px 18px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer p {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}




/* Responsive */
@media (max-width: 768px) {
  .headline {
    font-size: 28px;
  }

  .subheadline {
    font-size: 16px;
  }
}



/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #0b2d5c;   /* Blue bars instead of white */
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0b2d5c;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

/* Gold underline hover effect */
.nav-links li a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #d4af37; /* Gold */
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

}