/* ===================================
   POKÉMON INFANTIL THEME
   =================================== */

:root {
    --red-color: #EE1515;
    --yellow-color: #FFCB05;
    --blue-color: #3B4CCA;
    --white-color: #FFFFFF;
    --text-color: #2C3E50;
    --font-display: 'Luckiest Guy', cursive;
    --font-body: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFFFF 50%, #E6F3FF 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(--red-color) 0%, var(--yellow-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(238, 21, 21, 0.4);
}

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

/* Typography */
.big-font {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--red-color) 0%, var(--yellow-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(--red-color);
    margin-bottom: 1rem;
}

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

.pokeball-icon {
    font-size: 4rem;
    margin: 1rem 0;
    animation: float 3s ease-in-out infinite;
}

.pokeball-icon img {
    display: block;
    margin: 0 auto;
}

.lightning-icon {
    font-size: 3rem;
    margin: 1rem 0;
    filter: drop-shadow(0 0 15px rgba(255, 203, 5, 0.7));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {

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

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

@keyframes pulse {

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

    50% {
        transform: scale(1.2);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    background: #FFF9E6;
}

.hero-image-container {
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--red-color);
    box-shadow: 0 15px 40px rgba(238, 21, 21, 0.3),
        0 0 0 12px rgba(255, 255, 255, 0.8),
        0 0 0 18px rgba(59, 76, 202, 0.3);
}

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

.age-badge {
    margin: 1rem auto;
}

.pokeball-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(180deg, var(--red-color) 0%, var(--red-color) 50%, #fff 50%, #fff 100%);
    border-radius: 50%;
    border: 8px solid #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pokeball-badge::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 6px solid #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.age-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #000;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

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

/* Pokémon Divider */
.pokemon-divider {
    font-size: 3rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(238, 21, 21, 0.15);
    transition: all 0.3s ease;
    border: 4px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(135deg, var(--red-color), var(--yellow-color));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.pokemon-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(238, 21, 21, 0.3);
}

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

/* Pokémon Border (for RSVP) */
.pokemon-border {
    border: 5px solid var(--red-color);
    border-radius: 30px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 15px 50px rgba(238, 21, 21, 0.2);
    position: relative;
}

.pokemon-border::before,
.pokemon-border::after {
    content: '⚡';
    position: absolute;
    font-size: 3rem;
    color: var(--yellow-color);
}

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

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

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

/* Buttons */
.btn-pokemon {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--red-color) 0%, var(--yellow-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(238, 21, 21, 0.3);
    font-family: var(--font-body);
}

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

.btn-pokemon.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;
    }

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

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

    .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;
    }

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

    .pokeball-badge {
        width: 90px;
        height: 90px;
    }

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

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