/* =============================================
   The Gathering Porch — Stylesheet
   Color Palette: Navy (#1B3A5C), Gold (#C9A96E),
   Cream (#FAF8F5), Soft Blue (#E8EFF6), White
   ============================================= */

:root {
  --navy: #1B3A5C;
  --navy-dark: #0F2640;
  --navy-light: #2A5580;
  --gold: #C9A96E;
  --gold-light: #D4BB8A;
  --gold-dark: #A88B4A;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --blue-soft: #E8EFF6;
  --blue-muted: #B8CCDE;
  --text-dark: #2C2C2C;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(27, 58, 92, 0.08);
  --shadow-md: 0 4px 20px rgba(27, 58, 92, 0.1);
  --shadow-lg: 0 10px 40px rgba(27, 58, 92, 0.15);
  --shadow-xl: 0 20px 60px rgba(27, 58, 92, 0.2);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== NAVIGATION ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--navy);
}

.nav-logo-the {
  font-family: 'Great Vibes', cursive;
  font-size: 16px;
  margin-bottom: -4px;
  align-self: flex-start;
  margin-left: 4px;
}

.nav-logo-main {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: inherit;
}

.nav-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.navbar.scrolled .nav-menu a {
  color: var(--text-dark);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  letter-spacing: 1.5px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(184, 204, 222, 0.1) 0%, transparent 40%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-prelude {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.8s 0.3s ease forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.hero-the {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  font-weight: 400;
  color: var(--gold-light);
  align-self: flex-start;
  margin-left: calc(50% - 160px);
  margin-bottom: -10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero-gathering {
  font-family: 'Great Vibes', cursive;
  font-size: 110px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.7s ease forwards;
}

.hero-porch {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 18px;
  text-transform: uppercase;
  margin-top: -8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s ease forwards;
}

/* Hero title animations handled via direct CSS animation properties */

.hero-divider {
  margin: 16px auto;
  opacity: 0;
  transform: scaleX(0);
  animation: scaleIn 0.8s 1.1s ease forwards;
}

.hero-flourish {
  width: 120px;
  height: 20px;
  color: var(--gold);
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: var(--gold-light);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.3s ease forwards;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.5s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.7s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 16px;
}

.title-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 24px;
}

.title-accent.center {
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-description {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ===================== ABOUT ===================== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}

.image-placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon svg {
  width: 200px;
  height: 200px;
  color: var(--gold-light);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.stat-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
}

/* ===================== SERVICES ===================== */
.services {
  position: relative;
  background: var(--white);
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 92, 0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
  transition: color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
}

.service-card:hover .service-icon svg {
  color: var(--gold-light);
}

.service-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-accent {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.5;
}

/* ===================== EVENTS ===================== */
.events {
  background: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid rgba(27, 58, 92, 0.06);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-image {
  position: relative;
  overflow: hidden;
}

.event-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(
    135deg,
    hsl(var(--hue), 30%, 90%) 0%,
    hsl(var(--hue), 40%, 82%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.event-placeholder svg {
  width: 60px;
  height: 60px;
  color: hsl(var(--hue), 25%, 55%);
  opacity: 0.6;
}

.event-card:hover .event-placeholder {
  transform: scale(1.05);
}

.event-content {
  padding: 24px;
}

.event-content h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.event-content p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===================== PARALLAX QUOTE ===================== */
.parallax-quote {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.parallax-quote .container {
  position: relative;
  z-index: 1;
}

.parallax-quote blockquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}

.parallax-quote blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}

.parallax-quote blockquote footer {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===================== PRICING ===================== */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 92, 0.08);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.pricing-card h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-amount {
  margin-bottom: 8px;
}

.currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--navy);
  vertical-align: top;
  line-height: 1.4;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price.custom {
  font-size: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-duration {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ===================== GALLERY ===================== */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    hsl(var(--hue), 25%, 88%) 0%,
    hsl(var(--hue), 35%, 78%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
}

.gallery-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: hsl(var(--hue), 20%, 45%);
  font-style: italic;
  opacity: 0.7;
}

.gallery-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 15px;
}

.gallery-note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-note a:hover {
  color: var(--gold);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-tagline {
  margin-top: 40px;
}

.script-text {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: var(--navy);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all var(--transition);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%239CA3AF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================== MAP ===================== */
.map-section {
  position: relative;
  background: var(--navy);
}

.map-section iframe {
  display: block;
  filter: saturate(0.8) contrast(1.1);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo .nav-logo-main {
  font-size: 28px;
}

.footer-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.6;
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer ul a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 38, 64, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1001;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 18px;
    color: var(--white) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  /* When menu is open, force hamburger lines to white so X is visible on navy overlay */
  .nav-toggle.active span {
    background: var(--white) !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* When menu is open, hide the navbar background so it doesn't cover the overlay */
  .navbar.menu-open {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .hero-gathering {
    font-size: 64px;
  }

  .hero-the {
    font-size: 24px;
    margin-left: calc(50% - 100px);
  }

  .hero-porch {
    font-size: 18px;
    letter-spacing: 12px;
  }

  .hero-tagline {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .services-grid,
  .events-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .parallax-quote blockquote p {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-gathering {
    font-size: 48px;
  }

  .hero-the {
    margin-left: calc(50% - 75px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 28px;
    font-size: 12px;
  }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-light);
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--white);
}
