:root {
    --color-primary: #FFCBA4;
    /* Soft Peach (Less intensive orange) */
    --color-secondary: #E0F2F1;
    /* Soft Mint (Bringing back a little cool for balance) */
    --color-accent: #D1C4E9;
    /* Muted Lavender */
    --color-yellow: #FFFDE7;
    /* Lighter Cream */
    --color-text: #4A4A4A;
    /* Back to softer dark gray */
    --color-heading: #2D3436;
    /* Back to dark charcoal */
    --color-white: #FFFFFF;

    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --border-radius: 20px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #FAFAFA;
    /* Neutral off-white */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 183, 178, 0.4);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-heading);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 178, 0.6);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 600;
    color: var(--color-heading);
}

.nav-link:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-heading);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, #FFFDE7 0%, #FFE0B2 100%);
    /* Lighter, less saturated warm gradient */
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-heading);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Abstract blobs for hero */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    top: -50px;
    left: -100px;
    opacity: 0.5;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    bottom: 20px;
    right: -50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Sections */
.section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-heading);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.program-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 5px solid var(--color-secondary);
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.program-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-heading);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: space-between;
}

.contact-info,
.map-container {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: var(--spacing-md);
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.map-container iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background-color: var(--color-accent);
    color: var(--color-heading);
    padding: var(--spacing-md) 0;
    text-align: center;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* Instagram Feed */
.instagram-feed {
    background-color: #FAFAFA;
    text-align: center;
}

.insta-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 5px;
    scrollbar-width: thin;
    /* Firefox */
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    /* Allows scrolling from start */
}

/* Hide scrollbar for cleaner look but keep functionality */
.insta-scroll-container::-webkit-scrollbar {
    height: 8px;
    background: transparent;
}

.insta-scroll-container::-webkit-scrollbar-thumb {
    background: #FFB7B2;
    border-radius: 10px;
}

.insta-post {
    flex: 0 0 200px;
    /* Width of each post */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
    background: white;
}

.insta-post:hover {
    transform: translateY(-5px) scale(1.02);
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insta-post:hover .insta-img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-icon {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1000px) {
    .insta-scroll-container {
        justify-content: center;
        /* Center items if they fit on large screens */
    }
}