:root {
    /* Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #fffdf5; /* Pale Yellow */
    --bg-tertiary: #eefaf2;  /* Mint Green */
    --text-main: #2c3e50;
    --text-light: #52677a;
    
    --accent-coral: #ff6b6b;
    --accent-blue: #4facfe;
    --accent-green: #2ea043;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
    
    --radius-heavy: 28px;
    --radius-pill: 50px;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, .logo, .caveat-font {
    font-family: 'Caveat', cursive;
    color: var(--text-main);
    letter-spacing: 1px;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-coral);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.6);
    background-color: #ff5252;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    background-color: var(--accent-blue);
    color: white;
}

.btn-small:hover {
    transform: translateY(-2px);
    background-color: #3b94eb;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-coral);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-coral);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 4rem 2rem 4rem;
    position: relative;
    background-color: var(--bg-primary);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
    z-index: 10;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: var(--radius-heavy);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-soft);
    font-size: 1.5rem;
    color: var(--text-light);
    font-family: 'Caveat', cursive;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.image-placeholder:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
}

.blob1 {
    width: 300px;
    height: 300px;
    background-color: var(--bg-secondary);
    top: -50px;
    left: -100px;
    animation: float 8s ease-in-out infinite alternate;
}

.blob2 {
    width: 400px;
    height: 400px;
    background-color: var(--bg-tertiary);
    bottom: 0;
    right: 30%;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, 40px) rotate(10deg); }
}

/* Wavy Dividers */
.wavy-divider {
    display: block;
    width: 100%;
    height: 120px;
    margin-bottom: -5px; /* Prevent tiny gaps */
}

.flip-x {
    transform: scaleX(-1);
}

/* About Section */
.about {
    background-color: var(--bg-secondary);
    padding: 4rem 0 6rem 0;
    text-align: center;
}

.section-title {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.about-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-heavy);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

/* Classes Section */
.classes {
    background-color: var(--bg-tertiary);
    padding: 4rem 0 6rem 0;
}

.classes .section-title {
    text-align: center;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.class-card {
    background: white;
    border-radius: var(--radius-heavy);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.class-img-placeholder {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: rgba(0,0,0,0.5);
}

.class-content {
    padding: 2.5rem;
    position: relative;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-coral { background-color: var(--accent-coral); }
.badge-blue { background-color: var(--accent-blue); }
.badge-green { background-color: var(--accent-green); }

.class-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.class-content p {
    margin-bottom: 2rem;
}

.class-btn {
    background-color: white;
    color: var(--text-main);
    border: 2px solid #eaeaea;
    width: 100%;
    text-align: center;
}

.class-btn:hover {
    border-color: var(--accent-coral);
    color: var(--accent-coral);
    transform: none;
    box-shadow: none;
}

/* Footer Section */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.footer-content p {
    color: #a0b2c6;
    margin-bottom: 0.5rem;
}

.socials {
    margin: 2rem 0;
}

.socials a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: var(--accent-coral);
}

.copyright {
    font-size: 0.9rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem auto;
    }
    
    .blob2 {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        padding: 1.5rem 2rem;
    }
}
@media (max-width: 600px) {
    h2 { font-size: 2.8rem; }
    .hero-content h1 { font-size: 3.5rem; }
    .nav-links { display: none; }
}
