/* Custom Styles for Landing Page */

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Colors */
:root {
    --primary-yellow: #ffc107;
    --dark-bg: #1a1a1a;
}

/* Hero Section */
.hero-section {
    background-color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.stat-item h3 {
    color: var(--primary-yellow);
}

.extra-small {
    font-size: 0.75rem;
}

/* Scenario Cards */
.scenario-card {
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.scenario-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    font-size: 2.5rem;
}

/* Learning Cards */
.learning-card {
    background: #fff;
    padding: 20px;
}

/* Feature Cards */
.feature-card {
    border: none;
    transition: all 0.3s ease;
}

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

/* Investment Card */
.price-card {
    border-radius: 20px;
}

.next-class-badge {
    min-width: 120px;
    z-index: 10;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #eee !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: #fff9e6;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-yellow);
}

/* Buttons */
.btn-warning {
    background-color: var(--primary-yellow);
    border: none;
    color: #000;
}

.btn-warning:hover {
    background-color: #e5ac00;
}

/* Instructor */
.instructor-img-wrapper {
    max-width: 300px;
    margin: 0 auto;
}

/* Progress Bar */
.progress-bar {
    transition: width 1s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .next-class-badge {
        position: relative !important;
        margin: 0 auto 20px !important;
        top: 0 !important;
        right: 0 !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.bg-black {
    background-color: #000;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}
