body {
    background-image: url('../img/bg-clasica.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: "Cormorant Garamond", serif;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Falling Rose Petals Animation */
.petal {
    position: fixed;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #D4AF37, #C5A059);
    border-radius: 50% 0;
    opacity: 0.6;
    animation: fall linear infinite;
    z-index: 0;
    pointer-events: none;
}

.petal:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.petal:nth-child(2) {
    left: 30%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.petal:nth-child(3) {
    left: 50%;
    animation-duration: 13s;
    animation-delay: 4s;
}

.petal:nth-child(4) {
    left: 70%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.petal:nth-child(5) {
    left: 90%;
    animation-duration: 16s;
    animation-delay: 3s;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- Typography --- */
.pinyon-script {
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
}

.cormorant-regular {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

.cormorant-bold {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
}

.cormorant-italic {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
}

.big-font {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.medium-font {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.text-gold {
    color: #D4AF37;
    /* Classic Gold */
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

.text-dark {
    color: #333;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

/* --- Layout & Cards (Classic Elegant Style) --- */
.main-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.wedding-card {
    background-color: #ffffff;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.wedding-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.divider-line {
    height: 1px;
    background-color: #D4AF37;
    width: 0;
    margin-left: auto;
    margin-right: auto;
    animation: grow 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes grow {
    to {
        width: 100px;
    }
}

/* --- Countdown Timer --- */
.countdown-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.countdown-timer-ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.date-item {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
}

.date-item span {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    color: #333;
}

.date-item .label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-family: "Cormorant Garamond", serif;
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
}

/* --- Buttons & Links --- */
.btn-wedding {
    background-color: #333;
    color: white;
    border: 1px solid #333;
    padding: 12px 40px;
    border-radius: 0;
    font-size: 1rem;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-wedding:hover {
    background-color: white;
    color: #333;
    text-decoration: none;
}

.btn-wedding-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    padding: 10px 30px;
    border-radius: 0;
    font-size: 0.9rem;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-wedding-outline:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .big-font {
        font-size: 3.5rem;
    }

    .medium-font {
        font-size: 2.8rem;
    }

    .wedding-card {
        padding: 3rem 1.5rem;
    }

    .countdown-timer-ul {
        gap: 1rem;
    }
}

/* --- Music Button --- */
.btn-music {
    background-color: transparent;
    color: #999;
    border: none;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

.btn-music:hover {
    color: #333;
}

.btn-music:focus {
    outline: none;
}

/* --- Couple Photo --- */
.couple-photo-container {
    position: relative;
    padding: 15px;
    border: 1px solid #D4AF37;
    display: inline-block;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.couple-photo-container::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #D4AF37;
    pointer-events: none;
}

.couple-photo {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* --- RSVP Buttons --- */
.rsvp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .rsvp-buttons {
        flex-direction: row;
        gap: 2rem;
    }
}

/* --- Floral Touch --- */
.wedding-card {
    border: 1px solid rgba(212, 175, 55, 0.2);
}