:root {
    --bg-color: #FFF0F5;
    /* Lavender Blush */
    --text-color: #4A4A4A;
    --accent-color: #B76E79;
    /* Rose Gold */
    --secondary-accent: #D4AF37;
    /* Gold */
    --card-bg: #FFFFFF;
    --font-heading: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    background-image: radial-gradient(#B76E79 0.5px, transparent 0.5px);
    background-size: 30px 30px;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 400;
}

.big-font {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #B76E79, #D4AF37, #B76E79);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s infinite linear;
    background-size: 200% auto;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.medium-font {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

/* --- Layout --- */
.section-padding {
    padding: 5rem 1rem;
    position: relative;
}

/* --- Rose Gold Border --- */
.rosegold-border {
    border: 2px solid var(--accent-color);
    padding: 15px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 15px rgba(183, 110, 121, 0.2);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 240, 245, 0.8), rgba(255, 255, 255, 1));
}

.hero-image-container {
    width: 280px;
    height: 380px;
    margin: 2rem auto;
    position: relative;
    padding: 10px;
    background: #fff;
    border-radius: 150px 150px 20px 20px;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 140px 140px 10px 10px;
    border: 2px solid var(--accent-color);
}

.tiara-icon {
    font-size: 3rem;
    color: var(--secondary-accent);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- Buttons --- */
.btn-rosegold {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.4);
}

.btn-rosegold:hover {
    background-color: #a05a65;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.6);
    text-decoration: none;
}

/* --- Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

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

.countdown-number {
    font-size: 2rem;
    font-family: var(--font-body);
    color: var(--accent-color);
    font-weight: 700;
    background: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--accent-color);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 1px;
}

/* --- Sparkles Animation --- */
.sparkle {
    position: fixed;
    width: 5px;
    height: 5px;
    background-color: var(--secondary-accent);
    border-radius: 50%;
    pointer-events: none;
    animation: twinkle 2s infinite ease-in-out;
    opacity: 0;
}

@keyframes twinkle {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 10px var(--secondary-accent);
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* --- Cards --- */
.xv-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(183, 110, 121, 0.1);
    transition: transform 0.3s ease;
}

.xv-card:hover {
    transform: translateY(-5px);
}

/* --- Music Button --- */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.4);
}

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

    .hero-image-container {
        width: 80%;
    }
}

/* --- XV Gallery --- */
.xv-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item-xv img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item-xv:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
}

/* --- XV Timeline --- */
.xv-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.xv-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item .time {
    width: 80px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    padding-right: 20px;
}

.timeline-item .icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.2);
}

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

.timeline-item .info h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--accent-color);
}

.timeline-item .info p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}