/* Hero section with logo */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

/* Girls section - behind the logo, flush to footer */
.girls-section {
    position: absolute;
    bottom: -400px;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    z-index: 0;
    padding-bottom: 0;
    transition: bottom 0.1s ease-out;
}

/* Dancing logo styles */
.dancing-logo {
    max-width: 80%;
    max-height: 60vh;
    width: auto;
    height: auto;
    animation: dance 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 0, 0.8));
}

@keyframes dance {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    10% {
        transform: translateY(-10px) rotate(-2deg) scale(1.02);
    }

    20% {
        transform: translateY(-5px) rotate(1deg) scale(1.01);
    }

    30% {
        transform: translateY(-15px) rotate(-1deg) scale(1.03);
    }

    40% {
        transform: translateY(-8px) rotate(2deg) scale(1.01);
    }

    50% {
        transform: translateY(-20px) rotate(0deg) scale(1.05);
    }

    60% {
        transform: translateY(-12px) rotate(-1deg) scale(1.02);
    }

    70% {
        transform: translateY(-6px) rotate(1deg) scale(1.01);
    }

    80% {
        transform: translateY(-18px) rotate(-2deg) scale(1.04);
    }

    90% {
        transform: translateY(-3px) rotate(1deg) scale(1.01);
    }
}

/* Show buttons styles */
.show-buttons {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.show-btn {
    display: block;
    background: linear-gradient(45deg, #ffd700, #ffff00);
    color: #000;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 15px;
    border: 3px solid #ffff00;
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.5);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    min-width: 250px;
    font-family: 'SundaySchool', Arial, sans-serif;
}

.show-btn:hover {
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
    background: linear-gradient(45deg, #ffff00, #ffd700);
}

.show-btn h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
}

.show-btn p {
    margin: 5px 0;
    font-size: 1.1em;
    color: #333;
    font-weight: normal;
}

/* Girls logo styles */
.girls-logo {
    max-width: 100%;
    max-height: 50vh;
    width: auto;
    height: auto;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: bottom;
}

.girls-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}