/* Events Page Styles */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.events-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-weight: 800;
    color: #29193d;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff8000;
    margin: 20px auto 0;
    border-radius: 2px;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-image {
    height: 200px;
    background: linear-gradient(45deg, #ff8000, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    background: #ff8000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #29193d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-description {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.event-location {
    color: #888;
    font-size: 0.9rem;
}

.event-link {
    background: linear-gradient(45deg, #ff8000, #ff6b6b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 128, 0, 0.3);
    color: white;
}

@media (max-width:768px) {
    .hero-section h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .event-content { padding: 20px; }
    .event-title { font-size: 1.2rem; }
}
