﻿/* ===== HOME PAGE STYLES (home.css) ===== */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(74, 28, 106, 0.9) 0%, rgba(125, 60, 152, 0.85) 100%), url('https://images.unsplash.com/photo-1549056572-75914d6d7e1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 7rem 0;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    color: white;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.btn-hero {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

    .btn-hero-primary:hover {
        background: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.btn-hero-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

    .btn-hero-outline:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-3px);
    }

/* Features Section */
.features-section {
    padding: var(--space-xxl) 0;
    background-color: var(--warm-beige);
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid #eaeaea;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
}

.feature-content {
    padding: var(--space-xl);
    text-align: center;
}

    .feature-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: var(--space-sm);
        color: var(--primary);
    }

    .feature-content p {
        color: #666;
    }

/* Stats Section */
.stats-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--primary), var(--light-purple));
    color: white;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
        background-size: cover;
    }

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    color: white;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: var(--space-xxl) 0;
    background-color: white;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin: var(--space-sm);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
}

    .testimonial-text::before {
        content: """; font-size: 4rem; color: var(--accent); opacity: 0.2;
        position: absolute;
        top: -1.5rem;
        left: -1rem;
        font-family: Georgia, serif;
    }

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--space-sm);
    border: 2px solid var(--accent);
}

.author-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-details p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Upcoming Features Section */
.upcoming-features-section {
    padding: var(--space-xxl) 0;
    background-color: white;
}

.upcoming-card {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin: var(--space-md);
    position: relative;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
    transition: var(--transition-normal);
}

.upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.upcoming-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    background: rgba(217, 109, 29, 0.1);
    color: var(--accent);
}

.upcoming-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.upcoming-content p {
    color: #666;
    margin-bottom: var(--space-md);
}

.coming-soon {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* CTA Section */
.cta-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(to right, var(--warm-orange), var(--accent));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: white;
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

/* Responsive adjustments for home page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
        }

    .stat-number {
        font-size: 2.5rem;
    }
}