/* assets/css/style.css */

:root {
    --primary: #F47C20;
    /* Orange */
    --secondary: #FDD14B;
    /* Yellow */
    --accent: #1E90FF;
    /* Blue */
    --dark: #333;
    --light: #f9f9f9;
    --white: #ffffff;
    --text-color: #444;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

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

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    font-size: 16px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-cta {
    background: var(--secondary);
    color: #8b5e00;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(253, 209, 75, 0.4);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(253, 209, 75, 0.6);
}

/* Burger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 80px);
        padding-top: 20px;
        transition: 0.4s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-title span.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: #8b5e00;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(253, 209, 75, 0.4);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-image img {
    border-radius: 20px 20px 0 20px;
    /* Custom shape roughly */
    box-shadow: var(--shadow);
}

/* Features / Why Choose Us */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    /* Placeholder fallback */
    background: #fff5e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

/* Learning Paths */
.paths-section {
    padding: 80px 0;
    background: #f4fcff;
    /* Very light blue */
}

.path-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    position: relative;
}

.path-image {
    height: 200px;
    background: #ddd;
    overflow: hidden;
}

.path-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.path-content {
    padding: 20px;
    text-align: center;
}

.path-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    /* Overlay style button inside card usually */
    background: var(--primary);
    /* Fallback */
    padding: 10px;
    border-radius: 0 0 10px 10px;
    margin-top: -30px;
    position: relative;
    display: inline-block;
}

/* Make it look like the design: Orange, Blue, Pink pills */
.path-card:nth-child(1) .path-title {
    background: #F47C20;
}

.path-card:nth-child(2) .path-title {
    background: #1E90FF;
}

.path-card:nth-child(3) .path-title {
    background: #FF69B4;
}

.path-age {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stats-container {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #FDD14B;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

/* Footer */
.footer {
    background: #fafafa;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

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

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: #888;
}

/* Mobile Tweaks */
@media screen and (max-width: 768px) {
    .hero-text {
        text-align: center;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
    }
}