:root {
    --golden: #FFD700;
    --dark: #000000;
    --light: #FFFFFF;
    --golden-hover: #FFC000;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark);
    color: var(--light);
}

header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://source.unsplash.com/1600x900/?awards') center/cover;
}

header h1 {
    color: var(--golden);
    font-size: 3rem;
    margin-bottom: 1rem;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: var(--golden);
    text-align: center;
    margin-bottom: 2rem;
}

/* Counters Section */
.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: transform 0.3s;
}

.counter:hover {
    transform: translateY(-5px);
}

.counter h3 {
    color: var(--golden);
    font-size: 2.5rem;
    margin: 0;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--golden);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: calc(50% - 2rem);
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: calc(50% + 2rem);
}

.timeline-item h4 {
    color: var(--golden);
    margin-top: 0;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.award-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.award-card h4 {
    color: var(--golden);
    margin: 1rem 0;
}

/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        width: calc(100% - 3rem);
        margin-left: 3rem;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .counters {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
}
