/* ================= Colors ================= */
:root {
    --primary-purple: #8f6ad6;
    --primary-dark: #6b4bab;
    --light-bg: #f8f9ff;
    --dark-text: #2c2c2c;
    --light-text: #666;
    --border-radius: 12px;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ================= Typography ================= */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero-cap {
    margin-top: 120px !important;
}
/* ================= Stats ================= */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item-simple {
    text-align: center;
    padding: 20px;
    min-width: 140px;
}

.stat-number-simple {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.stat-label-simple {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ================= Event Section ================= */
.events-section {
    padding: 80px 0;
}

.event-section-simple {
    padding: 80px 0;
}

.event-section-simple:nth-child(even) {
    background: var(--light-bg);
}

/* ================= Event Card ================= */
.event-card-simple {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.event-card-simple:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.event-title-simple {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.event-card-simple:hover .event-title-simple {
    opacity: 1;
    color: var(--primary-purple);
}

.event-text-simple {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ================= Pics ================= */
.event-image-simple {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.event-image-simple:hover {
    transform: scale(1.02);
}

/* ================= Tags ================= */
.tags-container {
    margin-bottom: 25px;
}

.tag-simple {
    display: inline-block;
    background: rgba(143, 106, 214, 0.1);
    color: var(--primary-purple);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-simple:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

/* ================= Buttons ================= */
.btn-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-simple-primary {
    background: var(--primary-purple);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none !important;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    text-align: center;
}

.btn-simple-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    color: #8f6ad6;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 8px 20px rgba(143, 106, 214, 0.3);
}

.btn-simple-outline {
    color: var(--primary-purple);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none !important;
    font-weight: 600;
    border: 2px solid var(--primary-purple);
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    text-align: center;
}

.btn-simple-outline:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(143, 106, 214, 0.3);
}

/* ================= Header ================= */
.section-header-simple {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle-simple {
    color: var(--primary-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title-simple {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-description-simple {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ================= CTA  ================= */
.cta-simple {
    background: var(--light-bg);
    color: --primary-purple;
    padding: 80px 0;
    text-align: center;
}

.cta-title-simple {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-text-simple {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ================= Mobile ================= */
@media (max-width: 992px) {
    .simple-hero {
        padding: 100px 0 60px;
    }
    
    .simple-hero h1 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    .stat-item-simple {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number-simple {
        font-size: 1.8rem;
    }
    
    .events-section {
        padding: 60px 0;
    }
    
    .event-card-simple {
        padding: 30px;
    }
    
    .section-title-simple {
        font-size: 2rem;
    }
    
    .cta-simple {
        padding: 60px 0;
    }
    
    .cta-title-simple {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item-simple {
        min-width: 100px;
        padding: 10px;
    }
    
    .stat-number-simple {
        font-size: 1.5rem;
    }
    
    .event-title-simple {
        font-size: 1.5rem;
    }
    
    .event-image-simple {
        height: 250px;
    }
    
    .btn-container {
        flex-direction: column;
    }
    
    .btn-simple-primary,
    .btn-simple-outline {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .simple-hero h1 {
        font-size: 1.8rem;
    }
    
    .simple-hero p {
        font-size: 1rem;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item-simple {
        width: 100%;
        max-width: 200px;
    }
    
    .section-title-simple {
        font-size: 1.8rem;
    }
    
    .event-card-simple {
        padding: 20px;
    }
    
    .tag-simple {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}