/* ==============================================
   FILE: assets/css/style.css
   Main Stylesheet
   ============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFCF8;
    color: #2C2A29;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5A3E;
    text-decoration: none;
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2C2A29;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2C5A3E;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2C5A3E;
    color: white;
}

.btn-primary:hover {
    background: #1F3B2C;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44,90,62,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2C5A3E;
    color: #2C5A3E;
}

.btn-outline:hover {
    background: #2C5A3E;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #8B6B4D;
    color: white;
}

.btn-secondary:hover {
    background: #6B4F35;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline-small {
    background: transparent;
    border: 2px solid #2C5A3E;
    color: #2C5A3E;
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
    border-bottom: 1px solid #F0E7DF;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2C5A3E;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B6B6B;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FEF9F0 0%, #FFFFFF 100%);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 24px;
    color: #1F3B2C;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 32px;
    color: #4A5B52;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* What Is Section */
.what-is-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4A5B52;
}

/* Programs Grid */
.programs-grid, .workshops-grid, .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.program-card, .workshop-card, .story-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #F0E7DF;
}

.program-card:hover, .workshop-card:hover {
    transform: translateY(-5px);
}

.program-category, .workshop-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B6B4D;
    margin-bottom: 12px;
}

.program-card h3, .workshop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1F3B2C;
}

/* Helps With Grid */
.helps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.help-item {
    background: #FEF6ED;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.help-item i {
    margin-right: 10px;
    color: #2C5A3E;
}

.help-item:hover {
    background: #2C5A3E;
    color: white;
    transform: translateY(-2px);
}

.help-item:hover i {
    color: white;
}

/* Stories Section */
.story-card {
    text-align: center;
}

.story-card i {
    font-size: 2rem;
    color: #2C5A3E;
    margin-bottom: 20px;
}

.story-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #4A5B52;
}

.story-card h4 {
    color: #2C5A3E;
    margin-bottom: 8px;
}

.story-category {
    font-size: 0.85rem;
    color: #8B6B4D;
}

.stories-footer {
    text-align: center;
    margin-top: 50px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1F3B2C, #2C5A3E);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-outline {
    border-color: white;
    color: white;
}

.final-cta .btn-outline:hover {
    background: white;
    color: #2C5A3E;
}

/* Footer */
footer {
    background: #1F3B2C;
    color: #E9E1D7;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section a {
    display: block;
    color: #E9E1D7;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2C5A3E;
}

/* Auth Pages */
.auth-page {
    background: linear-gradient(135deg, #FEF9F0 0%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C5A3E;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.auth-header h2 {
    color: #1F3B2C;
    margin-bottom: 10px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2C2A29;
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2D9D0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: #2C5A3E;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #F0E7DF;
}

.auth-footer a {
    color: #2C5A3E;
    text-decoration: none;
}

.demo-credentials {
    font-size: 0.85rem;
    color: #8B6B4D;
    margin-top: 15px;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert-error {
    background: #FEE2E2;
    color: #C0392B;
    border: 1px solid #FECACA;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

/* Workshop Details */
.workshop-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #6B6B6B;
    flex-wrap: wrap;
}

.workshop-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5A3E;
    margin: 15px 0;
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #E2D9D0;
    border-radius: 40px;
    text-decoration: none;
    color: #2C2A29;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #2C5A3E;
    border-color: #2C5A3E;
    color: white;
}

/* Page Header */
.page-header {
    background: #F8F5F0;
    padding: 60px 0;
    text-align: center;
    margin-top: 50px;
}

.page-header h1 {
    color: #1F3B2C;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Mobile Responsive */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .programs-grid, .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .helps-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .auth-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}