/* Events page – hen party, dance parties, themes & testimonials */
.hero-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1508700115892-45ecd05ae2ad?auto=format&fit=crop&w=1000&q=80') center/cover;
    opacity: 0.15;
    z-index: -1;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-purple);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-magenta) 100%);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px 8px 25px 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 2px solid var(--secondary-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--vibrant-pink) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 57, 255, 0.4);
}

.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-type {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-purple);
}

.event-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event-type-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.event-type-content {
    padding: 1.5rem;
}

.event-type-title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--secondary-purple);
}

.event-type-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.features-title {
    text-align: center;
    margin: 2rem 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--primary-purple);
}

.feature:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-magenta);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-purple);
}

.testimonials {
    margin: 3rem 0;
}

.testimonial {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid var(--primary-purple);
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 5rem;
    color: var(--secondary-purple);
    line-height: 1;
    opacity: 0.3;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: var(--accent-magenta);
}

.upcoming-events {
    margin-top: 3rem;
}

.cta-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--primary-purple);
}

/* Admin-style event cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Filter styles */
.filter-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid var(--primary-purple);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.filter-group label {
    font-size: 1.1rem;
    color: var(--secondary-purple);
    font-weight: bold;
    margin: 0;
}

.theme-filter-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.theme-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-purple);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    color: white;
}

.theme-icon-btn:hover {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-color: var(--accent-magenta);
    transform: translateY(-2px);
}

.theme-icon-btn.active {
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--vibrant-pink) 100%);
    border-color: var(--accent-magenta);
    box-shadow: 0 0 15px rgba(231, 57, 255, 0.4);
}

.theme-icon-btn .icon {
    font-size: 1.5rem;
}

.theme-icon-btn .label {
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.upcoming-events .event-card {
    background: linear-gradient(135deg, rgba(139, 77, 199, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-purple);
}

.upcoming-events .event-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(139, 77, 199, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.upcoming-events .event-card.hidden {
    display: none;
}

.event-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.category-badge, .theme-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.category-badge {
    background: rgba(255, 166, 0, 0.3);
    color: #ffcc00;
}

.theme-badge {
    background: rgba(135, 206, 250, 0.2);
    color: #87cefa;
}

/* Features list inside event cards (not the "Why Choose" grid) */
.upcoming-events .event-card .features {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.upcoming-events .event-card .features ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.upcoming-events .event-card .features li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .event-types {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .filter-container {
        padding: 1rem;
    }

    .theme-filter-icons {
        gap: 0.5rem;
    }

    .theme-icon-btn {
        min-width: 70px;
        padding: 0.8rem;
    }

    .theme-icon-btn .icon {
        font-size: 1.3rem;
    }

    .theme-icon-btn .label {
        font-size: 0.7rem;
    }
}