/* ===== CSS Variables ===== */
:root {
    --color-cream: #FAF8F5;
    --color-cream-dark: #F5F0EA;
    --color-gold: #C9A86C;
    --color-gold-light: #D4A574;
    --color-rose: #C4A484;
    --color-rose-dark: #B8956E;
    --color-text: #6B5B4F;
    --color-text-light: #8B7B6B;
    --color-heading: #C4978A;
    --color-heading-alt: #D4A574;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ===== Decorative Elements ===== */
.decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.top-left-branch {
    top: 0;
    left: 50px;
    width: 200px;
    opacity: 0.6;
}

/* ===== Header ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(250, 248, 245, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 60px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text);
}

.logo-subtext {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.book-btn {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    padding: 10px 30px;
    border: 1px solid var(--color-gold);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: var(--color-gold);
    color: white;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 450px;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-light);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-heading);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.explore-btn {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text);
    padding: 15px 40px;
    border: 1px solid var(--color-text-light);
    border-radius: 0;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}

.hero-image-container {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    height: 100%;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: 550px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(25%) saturate(90%) brightness(1.02);
}

/* ===== About Section ===== */
.about {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    background-color: var(--color-cream);
}

.about-images {
    flex: 1;
    position: relative;
    height: 600px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 280px;
    height: 320px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-decoration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    opacity: 0.5;
}

.about-decoration-left {
    position: absolute;
    left: 0;
    top: 20%;
    width: 100px;
    opacity: 0.4;
}

.about-content {
    flex: 1;
    max-width: 500px;
}

.about-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-light);
    margin-bottom: 20px;
    display: block;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.about-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 60px;
    background-color: var(--color-cream-dark);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-light);
    margin-bottom: 15px;
    display: block;
}

.services-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-heading);
    letter-spacing: 0.1em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--color-cream);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 100px 60px;
    background-color: var(--color-cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-light);
    margin-bottom: 15px;
    display: block;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-heading);
    letter-spacing: 0.1em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

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

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 60px;
    background-color: var(--color-cream-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-decoration {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    opacity: 0.3;
}

.testimonials-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-light);
    margin-bottom: 15px;
    display: block;
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-heading);
    letter-spacing: 0.1em;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--color-cream);
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-heading);
}

.author-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    background-color: var(--color-cream);
}

.contact-content {
    flex: 1;
    max-width: 500px;
}

.contact-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-light);
    margin-bottom: 20px;
    display: block;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.contact-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(107, 91, 79, 0.2);
    background-color: transparent;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

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

.form-input.full {
    width: 100%;
}

.form-textarea {
    padding: 15px 20px;
    border: 1px solid rgba(107, 91, 79, 0.2);
    background-color: transparent;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
    min-height: 150px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

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

.submit-btn {
    align-self: flex-start;
    padding: 15px 40px;
    background-color: var(--color-gold);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--color-rose-dark);
}

.contact-image {
    flex: 1;
    max-width: 500px;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-cream-dark);
    padding: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(107, 91, 79, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 25px;
}

.social-link {
    font-size: 0.85rem;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-gold);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

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

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

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 992px) {
    .header {
        padding: 20px 30px;
    }

    .nav {
        gap: 25px;
    }

    .hero {
        flex-direction: column;
        padding: 120px 30px 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-container {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        height: 400px;
    }

    .about {
        flex-direction: column;
        padding: 80px 30px;
        gap: 50px;
    }

    .about-images {
        height: 450px;
        width: 100%;
    }

    .about-image-main {
        width: 300px;
        height: 380px;
    }

    .about-image-secondary {
        width: 220px;
        height: 260px;
        right: 20px;
    }

    .about-content {
        text-align: center;
    }

    .contact {
        flex-direction: column;
        padding: 80px 30px;
        gap: 50px;
    }

    .contact-content {
        text-align: center;
        max-width: 100%;
    }

    .submit-btn {
        align-self: center;
    }

    .contact-image {
        width: 100%;
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .book-btn {
        order: 2;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-title,
    .contact-title {
        font-size: 2.2rem;
    }

    .services-title,
    .gallery-title,
    .testimonials-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 15px 20px;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-image {
        max-width: 100%;
        height: 280px;
    }

    .form-row {
        flex-direction: column;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .services,
    .gallery,
    .testimonials {
        padding: 60px 20px;
    }

    .footer {
        padding: 40px 20px;
    }
}

/* ===== Mobile Menu (hamburger for very small screens) ===== */
@media (max-width: 480px) {
    .nav {
        display: none;
    }

    .header.menu-open .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-cream);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

/* ===== Wedding Specific Styles ===== */

/* Hero Title for Names */
.hero-title .ampersand {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--color-gold);
}

/* Wedding Date */
.hero-date {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-heading);
    line-height: 1;
}

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

.wedding-day {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-style: italic;
}

/* Love Quote */
.love-quote {
    position: relative;
    padding: 20px 0;
    margin-top: 20px;
}

.love-quote .quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.5;
    position: absolute;
    top: -10px;
    left: -10px;
    line-height: 1;
}

.love-quote p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
    padding-left: 30px;
}

/* Details Section */
section.details-section {
    padding: 80px 60px;
    background-color: #F5F0EA;
    text-align: center;
}

section.details-section .details-container {
    max-width: 800px;
    margin: 0 auto;
}

section.details-section .details-main-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

section.details-section .event-block {
    margin-bottom: 50px;
}

section.details-section .event-block:last-child {
    margin-bottom: 0;
}

section.details-section .event-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

section.details-section .event-date {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 25px;
}

section.details-section .details-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    background-color: #FAF8F5;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

section.details-section .detail-item {
    flex: 1;
    text-align: center;
}

section.details-section .detail-item-full {
    flex: none;
    width: 100%;
}

section.details-section .detail-label {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 15px;
}

section.details-section .detail-time {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 15px;
}

section.details-section .detail-venue {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 5px;
}

section.details-section .venue-link {
    color: var(--color-heading);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

section.details-section .venue-link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

section.details-section .detail-location {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

section.details-section .detail-divider {
    width: 1px;
    min-height: 100px;
    background-color: var(--color-gold);
    opacity: 0.4;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    section.details-section {
        padding: 60px 20px;
    }

    section.details-section .details-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    section.details-section .details-content {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }

    section.details-section .detail-divider {
        width: 60px;
        height: 1px;
        min-height: auto;
        align-self: center;
    }
}

/* Wedding Date Banner */
.wedding-date-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--color-cream);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.date-icon {
    width: 60px;
    height: 60px;
}

.date-icon svg {
    width: 100%;
    height: 100%;
}

.date-text {
    display: flex;
    flex-direction: column;
}

.day-name {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.full-date {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-heading);
}

/* Service Time */
.service-time {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-style: italic;
}

/* Gallery Note */
.gallery-note {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-light);
}

/* RSVP Section */
.rsvp-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rsvp-deadline {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.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 fill='%238B7B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Event Selection Radio Buttons */
.event-selection {
    margin-bottom: 20px;
    width: 100%;
}

.event-selection-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-style: italic;
    display: block;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.radio-group-inline {
    flex-direction: row;
    gap: 15px;
}

.radio-group-inline .radio-option {
    flex: 1;
    justify-content: center;
}

label.radio-option {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

label.radio-option:hover {
    background-color: rgba(201, 168, 108, 0.1);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

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

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--color-gold);
    background-color: rgba(201, 168, 108, 0.1);
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-option input[type="radio"]:checked ~ .radio-text {
    color: var(--color-heading);
    font-weight: 500;
}

.radio-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .radio-group {
        gap: 10px;
    }

    .radio-option {
        padding: 10px 14px;
    }
}

.rsvp-decoration {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hearts-decoration {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
}

.hearts-decoration svg {
    width: 100%;
    height: 100%;
}

.couple-initials {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-heading);
}

.couple-initials .heart-small {
    font-size: 1.5rem;
    color: var(--color-gold);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.save-date-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 20px;
    letter-spacing: 0.3em;
}

/* Registry Section */
.registry-card {
    text-align: center;
}

.registry-buttons {
    margin-top: 30px;
}

.registry-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-gold);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.registry-btn:hover {
    background-color: var(--color-rose-dark);
}

/* Footer for Wedding */
.couple-names {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.footer-message {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-gold);
    font-style: italic;
}

/* Responsive adjustments for wedding elements */
@media (max-width: 992px) {
    .countdown {
        gap: 20px;
    }

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

    .rsvp-section {
        flex-direction: column;
    }

    .rsvp-decoration {
        order: -1;
        padding: 20px;
    }

    .hearts-decoration {
        width: 150px;
        height: 150px;
    }

    .couple-initials {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title .ampersand {
        font-size: 2rem;
    }

    .hero-date {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 15px;
    }

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

    .countdown-label {
        font-size: 0.6rem;
    }

    .wedding-date-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
    }

    .couple-initials {
        font-size: 2rem;
    }

    .hearts-decoration {
        width: 120px;
        height: 120px;
    }
}
