:root {
    /* Color Palette */
    --soft-purple: #D9A7EB;
    --deep-purple: #7B4CC8;
    --retro-orange: #FF8C42;
    --gold-yellow: #FFCB42;
    --bright-pink: #FF4D6D;
    /* Mapping missing/inconsistent variables */
    --primary-orange: var(--retro-orange);
    --accent-gold: var(--gold-yellow);
    --accent-yellow: var(--gold-yellow);
    --primary-pink: var(--bright-pink);

    --text-dark: #2D1B36;
    --text-light: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--primary-orange);
    /* Default fallback */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: transparent;
    /* Seamless blend */
    position: absolute;
    /* Overlay on hero */
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    background-color: white;
    padding: 0;
    border-radius: 50%;
    /* Perfect Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 105px;
    height: 105px;
    overflow: hidden;
}

.logo-img {
    height: 105px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Social Icons in Header */
.header-socials {
    display: flex;
    gap: 1rem;
    margin-right: 1rem;
}

.social-icon-btn {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.social-icon-btn:hover {
    transform: rotate(15deg) scale(1.1);
}

.cta-button {
    background-color: var(--gold-yellow);
    color: var(--deep-purple);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

/* Hero Section - Block 1 */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left aligned content */
    padding: 8rem 8% 4rem;
    min-height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('class_photo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 900px;
}

.highlight {
    color: var(--accent-gold);
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: var(--gold-yellow);
    color: var(--deep-purple);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.primary-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.primary-btn:hover {
    transform: scale(1.05) rotate(-2deg);
}

.secondary-btn {
    border: 3px solid white;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--primary-orange);
}

/* Decorations & Animations */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinning-hoop {
    position: absolute;
    border-radius: 50%;
    border: 15px solid rgba(255, 255, 255, 0.3);
    border-top: 15px solid var(--accent-yellow);
    animation: spin 3s linear infinite;
}

.hoop-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary-pink);
    animation-duration: 4s;
}

.hoop-2 {
    width: 250px;
    height: 250px;
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-yellow);
    animation-direction: reverse;
    animation-duration: 3s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Classes Section - Block 2 */
.info-grid {
    background-color: var(--soft-purple);
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    color: var(--deep-purple);
    box-shadow: 10px 10px 0px rgba(123, 76, 200, 0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px) rotate(1deg);
}

.card-icon {
    font-size: 4rem;
    /* Keep existing visual but standard font size, could replace with svg if strict on 'no emojis' */
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.2));
}

/* Using CSS shapes/icons instead of emojis for icons if possible, or keeping generic simple ones */
.info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.info-card p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Location Section - Block 3 */
.location-section {
    background-color: #81C784;
    /* Soft Sage Green */
    padding: 6rem 5%;
    text-align: center;
    color: white;
}

.section-header h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    border: 5px solid white;
}

/* Contact Section - Block 4 */
.contact-section {
    background-color: var(--soft-purple);
    padding: 6rem 5%;
    text-align: center;
    color: var(--deep-purple);
}

.contact-section h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: white;
    color: var(--primary-orange);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
}

.booking-cta {
    background-color: transparent;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: none;
}

.booking-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.big-btn {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    background-color: var(--retro-orange);
    color: white;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.big-btn:hover {
    background-color: var(--deep-purple);
    color: white;
    transform: scale(1.05);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--deep-purple);
    color: white;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
        background-color: transparent;
    }

    .logo-container {
        width: 100px;
        height: 100px;
        padding: 0;
    }

    .logo-img {
        height: 100px;
    }

    .nav {
        gap: 0.8rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 8rem 5% 4rem;
        text-align: center;
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .info-grid {
        padding: 4rem 5%;
    }

    .info-card {
        padding: 2rem;
    }

    .location-section,
    .contact-section {
        padding: 4rem 5%;
    }

    .hero-visual {
        height: 250px;
        margin-top: 1rem;
    }

    .spinning-hoop.hoop-1 {
        width: 240px;
        height: 240px;
    }

    .spinning-hoop.hoop-2 {
        width: 150px;
        height: 150px;
    }
}