/* Events Page Specific Styles */

/* Hero Section for Events */
.hero-events {
    height: 60vh;
    background: linear-gradient(rgba(117, 0, 3, 0.6), rgba(74, 47, 42, 0.6)),
                url('../images/sfeer_3.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.hero-events .hero-content {
    color: var(--text-light);
    max-width: 800px;
    padding: 2rem;
}

.hero-events h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero-events p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary-cream);
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-red);
    position: relative;
}

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

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(117, 0, 3, 0.3);
    z-index: 1;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.event-content {
    padding: 2rem;
    padding-top: 1.5rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-content h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
    padding-right: 100px;
    min-height: 2.5rem;
}

.event-time {
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.event-time i {
    margin-right: 0.5rem;
}

.event-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-content .btn {
    margin-top: auto;
}

.event-price {
    background: var(--primary-cream);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-gold);
}

.event-price span {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.1rem;
}

.event-price i {
    margin-right: 0.5rem;
}

/* Regular Events Section */
.regular-event-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.regular-event-icon i {
    font-size: 3rem;
    color: var(--accent-gold);
    background: var(--primary-cream);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px var(--shadow);
}

/* Private Event Features */
.private-event-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--primary-cream);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.feature i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.feature span {
    font-weight: bold;
    color: var(--primary-red);
}

/* Newsletter Section */
#newsletter {
    background: linear-gradient(135deg, var(--primary-cream), white);
    padding: 4rem 0;
}

#newsletter h2 {
    margin-bottom: 0.5rem;
}

#newsletter p {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Event Booking Section */
#event-booking {
    background: linear-gradient(135deg, var(--primary-cream), white);
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .hero-events {
        margin-top: 70px;
    }
    
    .hero-events h1 {
        font-size: 2.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        margin: 0 1rem;
    }
    
    .event-date {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .private-event-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-events {
        margin-top: 70px;
    }
    
    .hero-events h1 {
        font-size: 2rem;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-date {
        padding: 0.75rem;
    }
    
    .event-date .day {
        font-size: 1.5rem;
    }
    
    .event-content .btn {
        display: block;
        width: 100%;
        margin-top: 1rem;
        padding: 12px 20px;
        font-size: 1rem;
        text-align: center;
    }
}