/* ===================================
   ENCANTO INFANTIL THEME
   =================================== */

:root {
    --purple-color: #8B4789;
    --yellow-color: #FFD700;
    --turquoise-color: #40E0D0;
    --pink-color: #FF69B4;
    --orange-color: #FF8C00;
    --text-color: #2C3E50;
    --font-display: 'Fredoka One', cursive;
    --font-body: 'Quicksand', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFFFF 50%, #E6F9FF 100%);
    color: var(--text-color);
    overflow-x: hidden;
}

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

.btn-music-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-color) 0%, var(--pink-color) 100%);
    border: 3px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 71, 137, 0.4);
}

.btn-music-circle:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 8px 30px rgba(139, 71, 137, 0.6);
}

/* Typography */
.big-font {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-color) 0%, var(--turquoise-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.medium-font {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--purple-color);
    margin-bottom: 1rem;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--text-color);
}

.butterfly-icon {
    font-size: 4rem;
    margin: 1rem 0;
    filter: drop-shadow(0 0 15px rgba(139, 71, 137, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFFFF 100%);
}

.hero-image-container {
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--purple-color);
    box-shadow: 0 15px 40px rgba(139, 71, 137, 0.3),
        0 0 0 12px rgba(255, 215, 0, 0.3),
        0 0 0 18px rgba(64, 224, 208, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.age-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--yellow-color) 0%, var(--orange-color) 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
    margin: 1rem auto;
}

.age-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: #fff;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.age-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

/* Sections */
.section-padding {
    padding: 5rem 1rem;
}

.encanto-quote {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 100%);
}

/* Encanto Divider */
.encanto-divider {
    font-size: 3rem;
    margin: 1rem auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

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

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

.countdown-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-color) 0%, var(--pink-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: #fff;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(139, 71, 137, 0.2);
    border: 4px solid var(--yellow-color);
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    color: var(--purple-color);
    font-weight: 700;
}

/* Encanto Card */
.encanto-card {
    background: #fff;
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(139, 71, 137, 0.15);
    transition: all 0.3s ease;
    border: 4px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(135deg, var(--purple-color), var(--turquoise-color));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.encanto-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(139, 71, 137, 0.3);
}

.encanto-card h3 {
    font-family: var(--font-display);
    color: var(--text-color);
    letter-spacing: 2px;
    font-size: 1.8rem;
}

/* Encanto Border (for RSVP) */
.encanto-border {
    border: 5px solid var(--purple-color);
    border-radius: 30px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 15px 50px rgba(139, 71, 137, 0.2);
    position: relative;
}

.encanto-border::before,
.encanto-border::after {
    content: '🦋';
    position: absolute;
    font-size: 3rem;
}

.encanto-border::before {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.encanto-border::after {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.encanto-rsvp-section {
    background: linear-gradient(135deg, #E6F9FF 0%, #FFF9E6 100%);
}

/* Buttons */
.btn-encanto {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--purple-color) 0%, var(--turquoise-color) 100%);
    border: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 71, 137, 0.3);
    font-family: var(--font-body);
}

.btn-encanto:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 71, 137, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-encanto.btn-block {
    display: block;
    width: 100%;
}

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

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

    .hero-image-container {
        width: 250px;
        height: 250px;
    }

    .age-badge {
        width: 100px;
        height: 100px;
    }

    .age-number {
        font-size: 3rem;
    }

    .countdown-number {
        font-size: 3rem;
        padding: 1rem 1.5rem;
    }

    .countdown-container {
        gap: 1.5rem;
    }

    .section-padding {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .big-font {
        font-size: 2.5rem;
    }

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

    .countdown-number {
        font-size: 2.5rem;
        padding: 0.8rem 1.2rem;
    }

    .encanto-card {
        padding: 2rem 1.5rem;
    }

    .age-badge {
        width: 80px;
        height: 80px;
    }

    .age-number {
        font-size: 2.5rem;
    }
}
/* Gallery */
.encanto-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.gallery-item-encanto { position: relative; overflow: hidden; border-radius: 25px; aspect-ratio: 1; background: #fff; box-shadow: 0 10px 30px rgba(139, 71, 137, 0.15); border: 4px solid var(--yellow-color); }
.gallery-item-encanto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item-encanto:hover img { transform: scale(1.15) rotate(2deg); }

/* Timeline */
.encanto-timeline { max-width: 700px; margin: 0 auto; }
.encanto-timeline .timeline-item { display: flex; align-items: center; margin-bottom: 2.5rem; }
.encanto-timeline .time { width: 25%; text-align: right; font-family: var(--font-display); font-size: 1.8rem; background: linear-gradient(135deg, var(--purple-color) 0%, var(--pink-color) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; padding-right: 2rem; }
.encanto-timeline .content { width: 75%; background: #fff; border: 4px solid var(--yellow-color); border-radius: 20px; padding: 1.5rem; box-shadow: 0 5px 20px rgba(139, 71, 137, 0.15); }
.encanto-timeline .content::before { content: '??'; position: absolute; left: -25px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; }
.encanto-timeline .content h3 { font-family: var(--font-display); color: var(--purple-color); font-size: 1.3rem; margin-bottom: 0.5rem; }
.encanto-timeline .content p { color: var(--text-color); margin: 0; font-weight: 600; }
