:root {
    --bg-color: #FCFBF7;
    --text-color: #333333;
    --accent-color: #555555;
    --script-font: 'Oooh Baby', cursive;
    --clean-font: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--clean-font);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    text-align: center;
}

/* Hero Section */
.hero {
    margin-bottom: 60px;
}

.main-title {
    font-family: var(--script-font);
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.date-section {
    margin-bottom: 40px;
}

.date {
    font-family: var(--clean-font);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.subtitle {
    font-family: var(--clean-font);
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--accent-color);
    font-weight: 300;
}

/* Video Section */
.video-section {
    margin-bottom: 60px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* RSVP Section */
.rsvp-section {
    margin-bottom: 80px;
}

.rsvp-button {
    display: inline-block;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 18px 45px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 3px;
    transition: var(--transition);
    font-weight: 300;
    border-radius: 30px;
}

.rsvp-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Details Section */
.info-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    gap: 40px;
}

.info-item {
    flex: 1;
    padding: 20px;
}

.info-item h3 {
    font-family: var(--script-font);
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-divider {
    height: 120px;
    width: 1px;
    background-color: #eee;
    align-self: center;
}

.time {
    font-family: var(--clean-font);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.name {
    font-family: var(--clean-font);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    color: #444;
    white-space: nowrap;
}

.map-link {
    display: inline-block;
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--text-color);
    border-bottom-color: var(--text-color);
}

/* Footer */
.footer {
    margin-top: 80px;
    padding: 60px 0 30px;
    font-family: var(--script-font);
    font-size: 3.5rem;
    color: var(--text-color);
}

/* Flowers Section */
.flowers-section {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.flowers-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 600px) {
    .info-grid {
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        font-size: 3.8rem;
    }

    .footer {
        font-size: 3rem;
    }

    .flowers-section {
        height: 250px;
    }

    .flowers-img {
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}