:root {
    --primary-color: #B76E79;
    /* Rose Gold */
    --secondary-color: #C71585;
    /* Deep Pink (Accent) */
    --text-color: #5D4037;
    /* Brownish Grey */
    --bg-light: #FFF0F5;
    /* Lavender Blush */
    --bg-white: #FFFAF0;
    /* Floral White */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.script-font {
    font-family: var(--font-script);
    color: var(--secondary-color);
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: #999;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.floating-flower {
    animation: float 4s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    /* Bigger for Rose */
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    /* Circular Hero for Rose */
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.2);
}

.main-title {
    font-size: 4rem;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Buttons */
.btn-rose {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 50px;
    /* Fully rounded */
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-rose:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-rose-filled {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-rose-filled:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    text-decoration: none;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-music-rose {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-music-rose:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

/* Sections (No Cards) */
.section-padding {
    padding: 100px 0;
}

.narrative-section {
    padding: 120px 0;
    position: relative;
}

.bg-rose-light {
    background-color: var(--bg-light);
}

.flower-divider {
    text-align: center;
    margin: 60px 0;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.8;
}

.section-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Use row text-center or text-left/right for variation */
.event-block {
    padding: 20px;
}

.event-time {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Dress Code Icons */
.dress-code-icons i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 20px;
    /* More horizontal space */
}

/* Gift Buttons */
.btn-gift {
    background-color: var(--bg-white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 20px;
    border-radius: 10px;
    /* Slightly less rounded for cards/buttons */
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    /* Block for gift table usually */
    margin-bottom: 10px;
    font-weight: 600;
}

.btn-gift:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.2);
}

/* Gift Envelope */
.envelope-box {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed var(--primary-color);
}

.floral-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    padding: 15px;
    border-radius: 50%;
    /* Circles */
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.1);
    border: 1px solid rgba(183, 110, 121, 0.3);
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #999;
}

/* Padrinos */
.padrinos-names {
    font-size: 1.8rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--primary-color);
    /* Underline style */
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Footer */
.footer-rose {
    background-color: var(--primary-color);
    color: white;
}

/* Utility */
.bg-white {
    background-color: var(--bg-white) !important;
}

.bg-soft-blue {
    /* Compatibility override */
    background-color: var(--bg-light) !important;
}

.bg-soft-green {
    background-color: var(--bg-light) !important;
}

/* Timeline/List (Planner) */
.list-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}