:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-bg: #f1faee;
    --dark-bg: #0f172a;
    --text-light: #f1faee;
    --text-dark: #1d3557;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.reverse {
    flex-direction: row-reverse;
}

.col-text {
    flex: 1;
    min-width: 300px;
}

.col-img {
    flex: 1;
    min-width: 300px;
}

.section {
    padding: 80px 0;
}

.dark-bg {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.light-bg {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.highlight-bg {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s;
    margin-top: 20px;
}

.btn:hover {
    transform: scale(1.05);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-buttons .btn {
    margin-top: 0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    border-radius: 0;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
}

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

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Stats */
.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.focus-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.focus-box h3 {
    font-size: 2.5rem;
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.event-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    transition: background 0.3s;
}

.event-card:hover {
    background: rgba(255,255,255,0.1);
}

.event-card .date {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.gallery-mini {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.gallery-mini img {
    height: 200px;
    width: auto;
}

/* Contact */
.contact-info {
    text-align: center;
    margin-top: 50px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-mini {
        flex-direction: column;
        align-items: center;
    }
}
