/* ============================================
   Linzey & Jacob Wedding Website
   Color Palette: Emerald Green, Rustic Gold, Cream
   Theme: Emerald & Rustic Elegance
   ============================================ */

:root {
    --emerald: #2D5A3D;
    --emerald-light: #3A7A52;
    --emerald-dark: #1E3F2B;
    --emerald-muted: #4A7C5C;
    --sage: #8BAF8A;
    --sage-light: #B5CCB4;
    --gold: #C9A96E;
    --gold-light: #D4BC8B;
    --gold-dark: #A8894D;
    --cream: #FAF6F1;
    --cream-warm: #F5EDE0;
    --rustic-brown: #6B4F3A;
    --rustic-light: #8B7355;
    --wood: #DDD0C0;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #8A8A7A;
    --bg-alt: #F0EBE3;
    --border: #DDD5C8;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--emerald);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--emerald-dark);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Floral Decorations (CSS-only botanical elements)
   ============================================ */

/* Reusable floral side decorations - position set in main .section rule below */

/* Left vine decoration */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background-image:
        radial-gradient(ellipse 8px 12px at 30px 80px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 6px 10px at 25px 95px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 7px 11px at 35px 110px, var(--sage) 0%, transparent 100%),
        radial-gradient(ellipse 8px 12px at 20px 200px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 6px 10px at 30px 215px, var(--sage) 0%, transparent 100%),
        radial-gradient(ellipse 7px 11px at 15px 230px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 8px 12px at 25px 340px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 6px 10px at 35px 355px, var(--sage) 0%, transparent 100%),
        radial-gradient(ellipse 7px 11px at 20px 370px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(circle 3px at 28px 140px, var(--gold-light) 0%, transparent 100%),
        radial-gradient(circle 2px at 22px 260px, var(--gold-light) 0%, transparent 100%),
        radial-gradient(circle 3px at 30px 400px, var(--gold-light) 0%, transparent 100%),
        linear-gradient(180deg, var(--sage) 0%, var(--sage) 100%);
    background-size:
        16px 24px, 12px 20px, 14px 22px,
        16px 24px, 12px 20px, 14px 22px,
        16px 24px, 12px 20px, 14px 22px,
        6px 6px, 4px 4px, 6px 6px,
        2px 100%;
    background-position:
        30px 80px, 25px 95px, 35px 110px,
        20px 200px, 30px 215px, 15px 230px,
        25px 340px, 35px 355px, 20px 370px,
        28px 140px, 22px 260px, 30px 400px,
        28px 0;
    background-repeat: no-repeat;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

/* Right vine decoration */
.section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background-image:
        radial-gradient(ellipse 8px 12px at 90px 60px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 6px 10px at 95px 75px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 7px 11px at 85px 90px, var(--sage) 0%, transparent 100%),
        radial-gradient(ellipse 8px 12px at 100px 180px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 6px 10px at 90px 195px, var(--sage) 0%, transparent 100%),
        radial-gradient(ellipse 7px 11px at 105px 210px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 8px 12px at 95px 320px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(ellipse 6px 10px at 85px 335px, var(--sage) 0%, transparent 100%),
        radial-gradient(ellipse 7px 11px at 100px 350px, var(--sage-light) 0%, transparent 100%),
        radial-gradient(circle 3px at 92px 120px, var(--gold-light) 0%, transparent 100%),
        radial-gradient(circle 2px at 98px 240px, var(--gold-light) 0%, transparent 100%),
        radial-gradient(circle 3px at 88px 380px, var(--gold-light) 0%, transparent 100%),
        linear-gradient(180deg, var(--sage) 0%, var(--sage) 100%);
    background-size:
        16px 24px, 12px 20px, 14px 22px,
        16px 24px, 12px 20px, 14px 22px,
        16px 24px, 12px 20px, 14px 22px,
        6px 6px, 4px 4px, 6px 6px,
        2px 100%;
    background-position:
        90px 60px, 95px 75px, 85px 90px,
        100px 180px, 90px 195px, 105px 210px,
        95px 320px, 85px 335px, 100px 350px,
        92px 120px, 98px 240px, 88px 380px,
        92px 0;
    background-repeat: no-repeat;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
}

.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--emerald) !important;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-medium);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--emerald);
    background: rgba(45, 90, 61, 0.06);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 40%, #E8E0D2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
}

/* Emerald glow top-right */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Gold glow bottom-left */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Hero floral corner decorations */
.hero-floral-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

/* Left floral corner */
.hero-floral-top::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 280px;
    height: 280px;
    background:
        radial-gradient(ellipse 20px 30px at 60px 50px, rgba(45, 90, 61, 0.15) 0%, transparent 100%),
        radial-gradient(ellipse 25px 18px at 40px 75px, rgba(45, 90, 61, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 18px 28px at 80px 35px, rgba(58, 122, 82, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 22px 16px at 95px 60px, rgba(139, 175, 138, 0.15) 0%, transparent 100%),
        radial-gradient(ellipse 15px 25px at 50px 95px, rgba(139, 175, 138, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 20px 14px at 115px 40px, rgba(139, 175, 138, 0.10) 0%, transparent 100%),
        radial-gradient(ellipse 18px 26px at 35px 115px, rgba(45, 90, 61, 0.10) 0%, transparent 100%),
        radial-gradient(ellipse 24px 17px at 75px 105px, rgba(58, 122, 82, 0.08) 0%, transparent 100%),
        radial-gradient(circle 4px at 70px 70px, rgba(201, 169, 110, 0.25) 0%, transparent 100%),
        radial-gradient(circle 3px at 55px 55px, rgba(201, 169, 110, 0.20) 0%, transparent 100%),
        radial-gradient(circle 5px at 90px 85px, rgba(201, 169, 110, 0.18) 0%, transparent 100%),
        radial-gradient(circle 3px at 45px 100px, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

/* Right floral corner */
.hero-floral-top::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 280px;
    height: 280px;
    background:
        radial-gradient(ellipse 20px 30px at 220px 50px, rgba(45, 90, 61, 0.15) 0%, transparent 100%),
        radial-gradient(ellipse 25px 18px at 240px 75px, rgba(45, 90, 61, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 18px 28px at 200px 35px, rgba(58, 122, 82, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 22px 16px at 185px 60px, rgba(139, 175, 138, 0.15) 0%, transparent 100%),
        radial-gradient(ellipse 15px 25px at 230px 95px, rgba(139, 175, 138, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 20px 14px at 165px 40px, rgba(139, 175, 138, 0.10) 0%, transparent 100%),
        radial-gradient(ellipse 18px 26px at 245px 115px, rgba(45, 90, 61, 0.10) 0%, transparent 100%),
        radial-gradient(ellipse 24px 17px at 205px 105px, rgba(58, 122, 82, 0.08) 0%, transparent 100%),
        radial-gradient(circle 4px at 210px 70px, rgba(201, 169, 110, 0.25) 0%, transparent 100%),
        radial-gradient(circle 3px at 225px 55px, rgba(201, 169, 110, 0.20) 0%, transparent 100%),
        radial-gradient(circle 5px at 190px 85px, rgba(201, 169, 110, 0.18) 0%, transparent 100%),
        radial-gradient(circle 3px at 235px 100px, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-names {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 10px;
}

.ampersand {
    font-style: italic;
    color: var(--emerald);
    font-weight: 300;
    display: inline-block;
    margin: 0 10px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald), var(--gold), var(--emerald), transparent);
    margin: 25px auto;
}

.hero-date {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.hero-location {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

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

.countdown-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--emerald);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 5px;
    display: block;
}

/* CTA Button */
.hero-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 48px;
    border: 2px solid var(--emerald);
    color: var(--emerald) !important;
    background: transparent;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--emerald);
    color: var(--white) !important;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    margin: 0 auto 15px;
}

/* Botanical accent under section titles */
.section-divider::after {
    content: '\2766';
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: var(--emerald-muted);
    margin-top: 8px;
    margin-bottom: 0;
    opacity: 0.5;
}

/* Extra bottom margin to account for floral accent */
.section-divider {
    margin-bottom: 50px;
}

/* ============================================
   Our Story
   ============================================ */
.story-content {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.story-lead {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--emerald);
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(45, 90, 61, 0.08);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 90, 61, 0.1);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   Events
   ============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle emerald top accent on cards */
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 90, 61, 0.08);
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.event-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--emerald-dark);
    margin-bottom: 15px;
}

.event-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.event-time {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--emerald);
    margin-bottom: 10px;
}

.event-location {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.event-note {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-light);
}

.add-to-calendar {
    text-align: center;
}

/* ============================================
   Schedule
   ============================================ */
.schedule-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--emerald-muted), var(--sage-light), var(--gold-light));
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 0;
    position: relative;
}

.schedule-item::after {
    content: '';
    position: absolute;
    left: 74px;
    top: 28px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--emerald);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--emerald-muted);
}

.schedule-time {
    flex-shrink: 0;
    width: 60px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--emerald);
    text-align: right;
}

.schedule-details {
    padding-left: 20px;
}

.schedule-details h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.schedule-details p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   Travel
   ============================================ */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.travel-card {
    padding: 35px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.travel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}

.travel-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.travel-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--emerald-dark);
    margin-bottom: 15px;
}

.travel-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 10px;
}

.hotel-list {
    margin-top: 15px;
}

.hotel-item {
    padding: 15px;
    background: var(--bg-alt);
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--emerald-muted);
}

.hotel-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.hotel-item p {
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.hotel-note {
    color: var(--emerald) !important;
    font-style: italic;
}

.things-list {
    list-style: none;
    margin-top: 10px;
}

.things-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border);
}

.things-list li:last-child {
    border-bottom: none;
}

.things-list li::before {
    content: '\2022';
    color: var(--emerald);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ============================================
   Gallery
   ============================================ */
.gallery-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-alt), var(--cream-warm));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(45, 90, 61, 0.2);
    transition: all 0.3s ease;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.gallery-placeholder:hover {
    border-color: var(--emerald-muted);
    background: rgba(45, 90, 61, 0.04);
}

/* ============================================
   RSVP Form
   ============================================ */
.rsvp-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 40px;
}

.rsvp-form-container {
    max-width: 550px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.rsvp-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-step > p {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text-dark) !important;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--emerald);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--emerald);
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 2px solid var(--emerald);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-dark);
}

.btn-outline {
    background: transparent;
    color: var(--emerald);
}

.btn-outline:hover {
    background: var(--emerald);
    color: var(--white) !important;
}

/* RSVP Confirmation */
.rsvp-confirmation {
    text-align: center;
    padding: 30px 0;
}

.confirmation-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--emerald);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rsvp-confirmation h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--emerald);
}

.rsvp-confirmation p {
    color: var(--text-medium);
    margin-top: 10px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--emerald);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--emerald);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   Registry
   ============================================ */
.registry-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.registry-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.registry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}

.registry-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--emerald-dark);
    margin-bottom: 10px;
}

.registry-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--emerald-dark);
    color: var(--white);
    text-align: center;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

/* Subtle botanical footer decoration */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--gold), var(--sage), var(--gold), var(--emerald));
}

.footer-monogram {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.footer-date {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.footer-location {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer-message {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-hashtag {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .section {
        padding: 70px 0;
    }

    /* Hide side florals on mobile */
    .section::before,
    .section::after {
        opacity: 0.08;
        width: 60px;
    }

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

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

    .story-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .rsvp-form-container {
        padding: 30px 24px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .schedule-timeline::before {
        left: 70px;
    }

    .schedule-item::after {
        left: 64px;
    }

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

@media (max-width: 480px) {
    .hero-names {
        font-size: 2.8rem;
    }

    .story-timeline {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .hero-floral-top::before,
    .hero-floral-top::after {
        width: 150px;
        height: 150px;
    }
}

/* Name Suggestions Dropdown */
.name-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--emerald);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.name-suggestions.active {
    display: block;
}

.name-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0ebe4;
    transition: background 0.2s;
}

.name-suggestion-item:last-child {
    border-bottom: none;
}

.name-suggestion-item:hover,
.name-suggestion-item.selected {
    background: var(--cream);
    color: var(--emerald);
}

.name-suggestion-item strong {
    color: var(--emerald);
}
