:root {
    --pastel-pink: #FFB7B2;
    --soft-purple: #B5EAD7;
    /* Actually Mint Green, let's fix names */
    --real-soft-purple: #C7CEEA;
    --soft-blue: #E2F0CB;
    --soft-blue-bg: #E0F7FA;
    --text-grey: #555555;
    --watercolor-pink: rgba(255, 183, 178, 0.8);
    --watercolor-purple: rgba(199, 206, 234, 0.8);
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-grey);
    background-color: #fff;
    overflow-x: hidden;
}

.script-font {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.names-font {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-grey);
    text-shadow: 2px 2px 0px rgba(199, 206, 234, 0.5);
}

.serif-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--text-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-padding {
    padding: 5rem 0;
}

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

.btn-music-acuarela {
    background-color: var(--real-soft-purple);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-music-acuarela:hover {
    background-color: var(--pastel-pink);
    transform: scale(1.1);
}

/* Floating Petals */
#petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--pastel-pink);
    border-radius: 50% 0 50% 0;
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

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

/* Hero Section */
.hero-section {
    height: 100vh;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.transparenttextures.com/patterns/watercolor.png');
    /* Subtle texture */
}

.watercolor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.hero-image-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 10px;
    margin: 2rem auto;
    background: linear-gradient(45deg, var(--pastel-pink), var(--real-soft-purple));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
}

.date-font {
    font-size: 1.5rem;
    color: var(--text-grey);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.location-font {
    font-size: 1.2rem;
    color: var(--real-soft-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Watercolor Splash */
.watercolor-splash {
    width: 80px;
    height: 80px;
    background-color: var(--pastel-pink);
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    /* Organic shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: morph 5s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    }

    50% {
        border-radius: 40% 60% 50% 60% / 60% 50% 60% 40%;
    }

    100% {
        border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    }
}

.watercolor-line {
    height: 3px;
    width: 50px;
    background: linear-gradient(to right, var(--pastel-pink), var(--real-soft-purple));
    margin: 0 auto;
    border-radius: 2px;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-circle {
    background-color: rgba(255, 255, 255, 0.9);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--real-soft-purple);
}

.countdown-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-grey);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    margin-top: 0.2rem;
    color: var(--real-soft-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    position: relative;
}

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

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

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--real-soft-purple);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--pastel-pink);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -10px;
}

.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content h3 {
    color: var(--real-soft-purple);
    font-weight: 700;
    margin-bottom: 5px;
}

.content p {
    color: var(--text-grey);
}

/* Cards */
.acuarela-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.acuarela-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(199, 206, 234, 0.2);
}

.icon-splash {
    width: 70px;
    height: 70px;
    background-color: var(--soft-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text-grey);
    font-size: 1.5rem;
}

.time-text {
    font-weight: 700;
    color: var(--real-soft-purple);
    font-size: 1.2rem;
}

/* Buttons */
.btn-acuarela {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--real-soft-purple);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-acuarela:hover {
    background-color: var(--pastel-pink);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-acuarela-outline {
    display: inline-block;
    padding: 10px 30px;
    background-color: white;
    color: var(--text-grey);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-acuarela-outline:hover {
    background-color: var(--real-soft-purple);
    color: white;
    text-decoration: none;
}

.btn-acuarela-light {
    display: inline-block;
    padding: 15px 50px;
    background-color: white;
    color: var(--text-grey);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-acuarela-light:hover {
    background-color: var(--pastel-pink);
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--pastel-pink), var(--real-soft-purple));
    position: relative;
}

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

    .countdown-container {
        gap: 1rem;
    }

    .countdown-circle {
        width: 100px;
        height: 100px;
    }

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

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after,
    .right::after {
        left: 15px;
    }

    .right {
        left: 0%;
    }
}