/* CSS Variables for "Light and Fun" Theme */
:root {
    --primary-color: #FF6B6B;
    /* Energetic Coral */
    --secondary-color: #4ECDC4;
    /* Fresh Teal */
    --accent-color: #FFE66D;
    /* Sunny Yellow */
    --text-dark: #292F36;
    --text-light: #F7FFF7;
    --bg-light: #F7FFF7;
    --card-bg: #FFFFFF;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-image: url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 47, 54, 0.4);
    /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    background-color: #ff5252;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    box-shadow: 20px 20px 0 var(--secondary-color);
    border: 5px solid white;
}

/* Offerings Section */
.offerings-section {
    padding: 80px 0;
    background-color: #fff;
}

.offerings-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offering-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 30px;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.offering-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.offering-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.offering-card p {
    padding: 0 20px 20px;
    color: #666;
}

.tag {
    margin-left: 20px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.testimonials-section h2 {
    margin-bottom: 30px;
}

.testimonial-card p {
    font-size: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
    max-width: 800px;
    margin: 0 auto 20px;
}

.testimonial-card cite {
    font-weight: 800;
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    margin: 0 10px;
    font-weight: 600;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Data */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}