/* ===== Events Page ===== */
.events-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    text-align: center;
}

.events-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.events-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Event List */
.events-list {
    padding: 60px 0;
}

.event-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 40px;
}

.event-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 90px;
    flex-shrink: 0;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f59e0b;
}

.event-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.event-year {
    font-size: 0.75rem;
    opacity: 0.7;
}

.event-info h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.event-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.event-summary {
    color: #444;
    line-height: 1.7;
}

/* Highlights */
.event-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.highlight-item {
    text-align: center;
}

.highlight-item strong {
    display: block;
    font-size: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.highlight-item span {
    font-size: 0.85rem;
    color: #666;
}

/* Gallery Grid */
.event-gallery {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Tags */
.event-products h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f0f4f8;
    color: #1a1a2e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA */
.events-cta {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.events-cta h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.events-cta p {
    color: #666;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .event-header {
        flex-direction: column;
        gap: 16px;
    }

    .event-date {
        flex-direction: row;
        gap: 10px;
        padding: 12px 20px;
        min-width: auto;
        width: fit-content;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .event-card {
        padding: 24px;
    }

    .event-highlights {
        gap: 16px;
    }

    .events-hero h1 {
        font-size: 1.8rem;
    }
}
