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

:root {
    --bg: #ECE4DB;
    --accent: #C4A69B;
    --accent-dark: #A8887C;
    --accent-light: #DDD0CA;
    --white: #FFFFFF;
    --text-dark: #3A2E28;
    --text-light: #7A6D65;
    --gold: #C8A96E;
    --gold-light: #E0CB9A;
    --shadow: rgba(180, 150, 138, 0.22);
    --shadow-soft: rgba(0, 0, 0, 0.07);
    --oliver: #6e8567;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg);
}

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

/* ─── Ornamental dividers between sections ─── */
.ornament-divider {
    text-align: center;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent));
    margin: 0 18px;
}

.ornament-divider::after {
    background: linear-gradient(to left, transparent, var(--accent));
}

.ornament-divider span {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--accent);
    vertical-align: middle;
    display: inline-block;
}

/* ─── Hero Section ─── */
.hero {
    height: 100vh;
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -12px;
    background-image: url('images/image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    z-index: 0;
}

.mt-4 {
    margin-top: 130px;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(236, 228, 219, 0.25) 0%,
            rgba(196, 166, 155, 0.25) 45%,
            rgba(236, 228, 219, 0.88) 75%,
            rgba(236, 228, 219, 1.00) 100%
        ),
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: var(--white);
    position: relative;
    margin-top: 400px;
}

.hero h1 {
    font-family: 'Allura', cursive;
    font-size: 5.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.names {
    font-size: 3.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.bride, .groom {
    font-family: 'Allura', cursive;
    font-weight: 600;
    letter-spacing: 2px;
}

.ampersand {
    font-size: 2.5rem;
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

/* Fade in animations */
.fade-in {
    animation: fadeIn 1.5s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1.5s ease-in 0.5s both;
}

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

/* Floating hearts */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}



.heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.heart:nth-child(2) { left: 30%; animation-delay: 2s; }
.heart:nth-child(3) { left: 50%; animation-delay: 4s; }
.heart:nth-child(4) { left: 70%; animation-delay: 1s; }
.heart:nth-child(5) { left: 90%; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    animation: bounce 2s infinite;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes scrollAnim {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

/* ─── Section base ─── */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

/* ─── Date Section ─── */
.date-section {
    background: var(--bg);
    text-align: center;
}

.section-call {
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-dark);
    line-height: 2;
}

.section-call-second {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

/* Schedule List */
.section-schedule {
    list-style: none;
    max-width: 750px;
    margin: 0 auto;
    padding: 0;
    
}

.section-schedule li {
    font-family: 'Playfair Display', serif;
    font-size: 1.40rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    padding: 15px 25px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 10px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-schedule li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* ─── Quote Section ─── */
.quote-section {
    background: var(--accent);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before,
.quote-section::after {
    content: '✦';
    position: absolute;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.quote-section::before { top: -10px; left: 20px; }
.quote-section::after  { bottom: -10px; right: 20px; }

.quote-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 1.2rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ─── Location Section Headers ─── */
.section-location {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent);
    text-align: center;
}

.venue-card {
    max-width: 480px;
    margin: 0 auto 3rem;
    text-align: center;
    background: var(--white);
    padding: 40px 50px;
    border: 1px solid var(--accent-light);
    box-shadow: 0 8px 40px var(--shadow);
    position: relative;
}

.venue-card::before,
.venue-card::after,
.venue-card-corners::before,
.venue-card-corners::after {
    content: '✦';
    position: absolute;
    font-size: 0.75rem;
    color: var(--accent);
    line-height: 1;
}

.venue-card::before {
    top: 10px; left: 12px;
}

.venue-card::after {
    bottom: 10px; right: 12px;
}

.venue-card-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.venue-card-corners::before {
    top: 10px; right: 12px;
}

.venue-card-corners::after {
    bottom: 10px; left: 12px;
}

.venue-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.venue-card-divider {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 20px;
}

.venue-card-detail {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.venue-card-icon {
    color: var(--accent);
    font-size: 0.7rem;
}

.venue-card .btn-map {
    margin: 24px auto 0;
}

h3.section-location {
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h3.section-location::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 10px auto 0;
}

/* Location Description */
.section-location-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.75);
    padding: 30px 35px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    text-align: left;
    display: block;
    white-space: pre-line;
}

.section-location-desc strong {
    color: var(--accent-dark);
    font-weight: 600;
}

.section-location-desc a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--accent);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.section-location-desc a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent-dark);
}

.section-location-desc h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin: 25px 0 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: normal;
}

.section-location-desc li {
    margin-left: 25px;
    list-style: disc;
    list-style-position: inside;
}

.section-location-streets {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.75);
    padding: 7px 35px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    text-align: left;
    display: block;
}

.section-location-streets li {
    margin-left: 25px;
    margin-top: 10px;
    list-style: disc;
    list-style-position: inside;
}

/* Google Maps Button */
.btn-map {
    display: block;
    width: fit-content;
    margin: 15px auto 30px;
    padding: 12px 32px;
    background: transparent;
    color: var(--accent-dark);
    text-decoration: none;
    border-radius: 50px;
    border: 1.5px solid var(--accent);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-map:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow);
}

/* ─── Calendar Card ─── */
.calendar-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.calendar-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.calendar-header {
    background: var(--accent);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.year {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.calendar-body {
    padding: 40px;
    text-align: center;
    background: var(--white);
}

.day-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.calendar-footer {
    background: var(--bg);
    padding: 20px;
}

.time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
}

.icon {
    width: 24px;
    height: 24px;
}

.date-description {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
}

/* ─── Countdown Section ─── */
.countdown-section {
    background: var(--accent-light);
    padding: 70px 20px;
    text-align: center;
    position: relative;
}

/* decorative corner ornaments */
.countdown-section::before,
.countdown-section::after {
    content: '❧';
    position: absolute;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.35;
}

.countdown-section::before { top: 20px; left: 30px; }
.countdown-section::after  { bottom: 20px; right: 30px; transform: scaleX(-1); }

.countdown-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: var(--accent-dark);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 4px;
    min-width: 100px;
    box-shadow: 0 10px 30px var(--shadow);
    border-top: 2px solid var(--accent);
}

.countdown-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.countdown-complete {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--accent-dark);
}

/* ─── Gallery Section ─── */
.gallery-section {
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.gallery-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.4s; }

.placeholder-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.image-1 { background-image: url('images/image1.jpg'); }
.image-2 { background-image: url('images/image.jpg'); }
.image-3 { background-image: url('images/image3.jpg'); }
.image-4 { background-image: url('images/image4.jpg'); }

.placeholder-image {
    background-size: cover;
    background-position: center;
}

.image-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.3s ease;
}

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

.gallery-item:hover .placeholder-image::before {
    background: rgba(0, 0, 0, 0.08);
}

.gallery-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* ─── Venue Section ─── */
.venue-section {
    background: var(--bg);
}

.venue-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-dark);
    text-align: center;
    margin: 2.5rem 0 1.5rem;
}

/* Hierarchical Headings for Practical Info */
.section-main-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--accent);
    text-align: center;
    margin: 3rem 0 2rem;
}

.practical-info-container {
    background: rgba(255, 255, 255, 0.65);
    padding: 30px 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto 3rem;
    border-top: 2px solid var(--accent-light);
}

.info-title-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-align: left;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-title-h2:first-child {
    margin-top: 0;
}

.info-content {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.practical-info-container .info-title-h3,
.practical-info-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-align: left !important;
    margin: 1.5rem 0 0.8rem 20px;
    text-transform: uppercase;
}

.info-content-indented {
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 2;
    margin-left: 40px;
    margin-bottom: 1.5rem;
}

.info-content a,
.info-content-indented a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--accent);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.info-content a:hover,
.info-content-indented a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent-dark);
}

.info-content strong,
.info-content-indented strong {
    color: var(--accent-dark);
    font-weight: 600;
    display: block;
}

.venue-content {
    display: block;
}

.venue-info {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.venue-info.visible {
    transform: translateX(0);
    opacity: 1;
}

.venue-info h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Great Vibes', cursive;
}

.address {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.venue-details {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px var(--shadow);
}

.venue-details p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.venue-details strong {
    color: var(--accent-dark);
}

/* Map Container */
.map-container {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
    margin-top: 2rem;
}

.map-container.visible {
    transform: translateX(0);
    opacity: 1;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-directions {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-directions:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow);
}

/* ─── Floating RSVP Button ─── */
.floating-rsvp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 25px rgba(196, 166, 155, 0.45);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatButton 3s ease-in-out infinite;
}

.floating-rsvp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(196, 166, 155, 0.55);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--accent);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ─── RSVP Section ─── */
.rsvp-section {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.rsvp-section::before {
    content: '\2665\FE0E';
    position: absolute;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-variant-emoji: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    line-height: 1;
}

.rsvp-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.rsvp-deadline {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.rsvp-deadline strong {
    font-weight: 700;
    color: var(--gold-light);
}

.rsvp-contacts {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.rsvp-contact {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 40px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-name {
    display: block;
    font-family: 'Allura', cursive;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-phone {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--gold-light);
}

.rsvp-message {
    font-family: 'Great Vibes', cursive;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

.rsvp-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-rsvp {
    display: inline-block;
    padding: 20px 50px;
    background: var(--white);
    color: var(--accent-dark);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-rsvp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ─── Footer ─── */
.footer {
    background: var(--text-dark);
    color: var(--accent-light);
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
}

.heart-divider {
    color: rgba(255, 255, 255, 0.45);;
    font-size: 1.5rem;
    margin: 20px 0;
    font-style: normal;
    letter-spacing: 8px;
    font-variant-emoji: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
}
.heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.45);
    font-size: 2rem;
    animation: float 15s infinite ease-in-out;
    font-variant-emoji: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .names { font-size: 4rem; gap: 1rem; }
    .ampersand { font-size: 1.5rem; }
    .section-title { font-size: 2.5rem; }
    .section-call { font-size: 1.1rem; padding: 0 15px; }
    .section-location { font-size: 2.2rem; }
    h3.section-location { font-size: 2rem; }
    .section-location-desc { font-size: 1rem; padding: 20px; margin: 0 10px 2rem; }
    .section-schedule li { font-size: 0.9rem; padding: 12px 18px; }
    .section-main-title { font-size: 2.5rem; }
    .practical-info-container { padding: 20px 25px; margin: 0 10px 2rem; }
    .info-title-h2 { font-size: 1rem; }
    .info-content-indented { font-size: 1rem; margin-left: 25px; }
    .floating-rsvp-btn { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 0.75rem; }
    .rsvp-contacts { gap: 30px; }
    .rsvp-contact { padding: 20px 30px; }
    .rsvp-title { font-size: 2.5rem; }
    .countdown-title { font-size: 2rem; }
    .countdown-timer { gap: 15px; }
    .countdown-item { padding: 20px 22px; min-width: 80px; }
    .countdown-number { font-size: 2.2rem; }
    .countdown-label { font-size: 0.65rem; }
    .venue-content { grid-template-columns: 1fr; gap: 30px; }
    .venue-info, .map-container { transform: none; }
    .map-container { height: 300px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .day-number { font-size: 4rem; }
    .quote-text { font-size: 2rem; }
    .ornament-divider::before,
    .ornament-divider::after { width: 60px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .names { flex-direction: column; font-size: 1.8rem; gap: 0.5rem; }
    section { padding: 60px 0; }
    .calendar-card { max-width: 100%; margin: 0 15px; }
    .btn-rsvp { padding: 15px 30px; font-size: 0.9rem; }
    .section-location-desc { font-size: 0.95rem; padding: 15px; }
    .section-schedule li { font-size: 0.85rem; }
}
