/* 
   Vanshika Happy Kidz Home - Stylesheet
   Theme: Bubbly, Vibrant, Creative
   Colors: Red (#E31E24), Yellow (#FFD700), Soft Cream (#FFF9E6)
*/

:root {
    --primary-red: #E31E24;
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFF1A8;
    --bg-cream: #FFF9E6;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --bubbly-font: 'Fredoka', sans-serif;
    --body-font: 'Quicksand', sans-serif;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: var(--body-font);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .bubbly-text {
    font-family: var(--bubbly-font);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--primary-yellow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 60px;
    width: auto;
}

.school-name {
    font-family: var(--bubbly-font);
    font-size: 1.2rem;
    color: var(--primary-red);
    line-height: 1.2;
}

.nav-links {
    display: none; /* Hidden on mobile */
}

.nav-links a:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-red);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at top right, var(--secondary-yellow), transparent);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--bubbly-font);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.btn-secondary {
    background: var(--primary-yellow);
    color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

.hero-illustration {
    margin-top: 40px;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards & Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
}

.card img {
    height: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

/* Founder Section */
.founder-section {
    background: var(--white);
    border-radius: 50px;
    padding: 50px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow);
    border: 5px solid var(--primary-yellow);
}

.founder-img-container {
    width: 100%;
    max-width: 400px;
}

.founder-content h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--primary-red);
    color: var(--white);
    padding: 60px 0 20px;
    border-radius: 50px 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.pop-in {
    animation: popIn 0.6s ease-out forwards;
}

/* Responsive Queries */
@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 30px;
        font-family: var(--bubbly-font);
        font-weight: 600;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .founder-section {
        flex-direction: row;
        text-align: left;
    }
    
    .hero {
        padding: 100px 0;
    }
}
