/*
Theme Name: PlayVilla
Description: A modern WordPress theme for event management and party planning
Version: 1.0.0
Author: PlayVilla Team
Text Domain: playvilla
*/

.main-navigation a:hover {
    color: #cccccc;
    text-shadow: none;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Active/Current menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-parent > a,
.main-navigation .current_page_parent > a {
    color: #ffffff !important;
    font-weight: 700;
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-parent > a::after,
.main-navigation .current_page_parent > a::after {
    width: 100% !important;
    background-color: #ffffff !important;
}

/* Additional selectors for better coverage */
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a {
    color: #ffffff !important;
    font-weight: 700;
 
}

.main-navigation li.current-menu-item a::after,
.main-navigation li.current_page_item a::after,
.main-navigation li.current-menu-parent a::after,
.main-navigation li.current_page_parent a::after {
    width: 100% !important;
    background-color: #ffffff !important;
}

/* Mobile Menu Toggle - Ensure it's always visible on mobile */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .main-navigation a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .main-navigation a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Ensure mobile menu toggle is visible on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Enhanced Hero Section Mobile */
@media (max-width: 768px) {
    .hero-section.bw-hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .bw-hero .hero-content {
        padding: 0 1rem;
    }

    .hero-row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .hero-left {
        text-align: center;
        order: 1;
    }

    .hero-right {
        order: 2;
        width: 100%;
        max-width: 400px;
    }

    .bw-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .hero-email-section {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .email-heading {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .email-prompt {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        min-height: 50px;
        transition: all 0.3s ease;
    }

    .hero-email-section .email-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Hero Event Cards Mobile */
    .hero-event-card {
        height: 280px;
        border-radius: 12px;
    }

    .hero-event-card .event-content {
        padding: 1.5rem;
    }

    .hero-event-card .event-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-event-card .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .hero-event-card .event-date {
        font-size: 1rem;
        font-weight: 500;
    }

    .hero-event-card .event-status {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    /* Event Tabs Mobile */
    .hero-event-tabs {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .event-tab {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
    }

    .event-tab.active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }

    /* Coming Soon Messages Mobile */
    .coming-soon-message,
    .no-events-message {
        height: 280px;
        padding: 2rem 1.5rem;
    }

    .coming-soon-message h3,
    .no-events-message h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .coming-soon-message p,
    .no-events-message p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section.bw-hero {
        padding: 1.5rem 0.5rem;
    }

    .bw-hero .hero-content {
        padding: 0 0.5rem;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        letter-spacing: 0.5px;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }

    .hero-email-section {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }

    .email-heading {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .email-prompt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .hero-email-section .email-submit-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .hero-event-card {
        height: 260px;
    }

    .hero-event-card .event-content {
        padding: 1.2rem;
    }

    .hero-event-card .event-title {
        font-size: 1.3rem;
    }

    .event-tab {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .coming-soon-message,
    .no-events-message {
        height: 260px;
        padding: 1.5rem 1rem;
    }

    .coming-soon-message h3,
    .no-events-message h3 {
        font-size: 1.4rem;
    }

    .coming-soon-message p,
    .no-events-message p {
        font-size: 0.95rem;
    }
}

/* Previous Parties Section Mobile */
@media (max-width: 768px) {
    .previous-parties {
        padding: 3rem 1rem;
    }

    .previous-parties .container {
        padding: 0;
    }

    .previous-parties h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .previous-parties .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .party-slider {
        margin: 0 -0.5rem;
    }

    .party-slide {
        border-radius: 12px;
        overflow: hidden;
    }

    .party-slide img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .slide-overlay {
        padding: 1rem;
    }

    .party-date {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .party-slider-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        pointer-events: none;
    }

    .party-slider-prev,
    .party-slider-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        pointer-events: all;
        transition: all 0.3s ease;
    }

    .party-slider-dots {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .party-slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-section .container {
        padding: 0;
    }

    .about-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .about-section > .container > p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

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

    .feature {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .feature h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .feature p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Community Values Mobile */
@media (max-width: 768px) {
    .community-values {
        padding: 3rem 1rem;
    }

    .community-values .container {
        padding: 0;
    }

    .community-values h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .value-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .value-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Experience Highlights Mobile */
@media (max-width: 768px) {
    .experience-highlights {
        padding: 3rem 1rem;
    }

    .experience-highlights .container {
        padding: 0;
    }

    .experience-highlights h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .highlight h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .highlight ul {
        margin-left: 1rem;
    }

    .highlight li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-section .container {
        padding: 0;
    }

    .faq-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Newsletter Section Mobile */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1rem;
    }

    .newsletter-section .container {
        padding: 0;
    }

    .newsletter-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .newsletter-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 50px;
    }

    .newsletter-form .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 50px;
        transition: all 0.3s ease;
    }

    .newsletter-form .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    button, 
    .cta-button,
    .event-tab,
    .party-slider-prev,
    .party-slider-next,
    .party-slider-dot {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve form elements */
    input[type="email"],
    input[type="text"],
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better spacing for mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Improve readability */
    p, li {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Better button spacing */
    .cta-button,
    .email-submit-btn {
        margin: 0.5rem 0;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section.bw-hero {
        min-height: 100vh;
        padding: 1rem;
    }

    .hero-row {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }

    .hero-left {
        flex: 1;
        text-align: left;
    }

    .hero-right {
        flex: 1;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-event-card .event-background img,
    .party-slide img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Ensure proper contrast in dark mode */
    .hero-email-section,
    .newsletter-form input[type="email"] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Black & White Hero Section */
.hero-section.bw-hero {
    min-height: 80vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.bw-hero .hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

.hero-left {
    text-align: left;
}

.hero-right {
    text-align: center;
}

.bw-hero .hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bw-hero .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-email-section {
    margin-top: 0;
    text-align: left;
    max-width: 100%;
 
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.3rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Hero Placeholder */
.hero-placeholder {
    width: 100%;
    height: 500px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.email-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-prompt {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-email-section .email-subscription-form {
    justify-content: flex-start;
    max-width: 100%;
}

.hero-email-section .email-subscription-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.hero-email-section .email-subscription-form input[type="email"]:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.hero-email-section .email-submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-email-section .email-submit-btn:hover:not(:disabled) {
    background: transparent;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

.hero-email-section .email-form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-email-section .email-form-message.success {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.hero-email-section .email-form-message.error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Main Content & Other Sections */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Other global styles from your theme can be added here */
/* For example: event cards, about section, etc. */

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

.events-cta {
    text-align: center;
    margin-top: 2rem;
}

.events-cta .cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.events-cta .cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.events-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.events-cta .cta-button:hover::before {
    left: 100%;
}

.no-events {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    grid-column: 1 / -1;
}

.no-events-container {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 2rem 0;
}

.no-events-container .no-events {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.no-events-newsletter {
    max-width: 500px;
    margin: 0 auto;
}

.no-events-newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.no-events-newsletter .email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-events-newsletter .email-form input[type="email"] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1rem;
    flex-grow: 1;
    max-width: 300px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.no-events-newsletter .email-form input[type="email"]:focus {
    border-color: #ffffff;
    outline: none;
}

.no-events-newsletter .email-form button {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.no-events-newsletter .email-form button:hover {
    background-color: transparent;
    color: #ffffff;
}

.about-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.previous-parties {
    background: #111;

}

.status-past {
    background: rgb(145, 32, 32);
}

/* Fallback for email form if not in hero */
.email-form-container {
     /* Styles for a generic email form container */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    /* Remove the conflicting display: none that breaks the mobile menu */
    /* .main-navigation {
        display: none;
    } */

    /* Remove duplicate mobile menu toggle styles that conflict */
    /* .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 3px;
        background: #ffffff;
        transition: all 0.3s ease;
    } */

    .hero-row {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-left {
        text-align: center;
    }

    .bw-hero .hero-title {
        font-size: 2.5rem;
    }

    .bw-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-email-section {
        margin-top: 2rem;
    }

    .email-heading {
        font-size: 1.2rem;
    }

    .email-prompt {
        font-size: 0.9rem;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Hero Event Card Mobile */
    .hero-event-card {
        height: 250px;
    }

    .hero-event-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

  

    .hero-event-section {
        margin-bottom: 1rem;
    }

    .all-events-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-event-card .event-title {
        font-size: 1.3rem;
        text-align: left;
    }

    .hero-event-card .event-content {
        padding: 1.5rem;
    }

    .hero-event-card .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero-event-card .event-date {
        font-size: 0.9rem;
    }

    /* Previous Parties Mobile */
    .previous-parties h2 {
        font-size: 2rem;
    }

    .party-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .party-image {
        aspect-ratio: 16/9;
    }

    /* Coming Soon Mobile */
    .coming-soon-content h3 {
        font-size: 1.5rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
  .single-event-article {
    padding: 0 0.5rem;
  }
  
  .single-event-header {
    margin: 0 -0.5rem 2rem -0.5rem;
    width: calc(100% + 1rem);
    height: 35vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2rem;
  }
  
  .event-date-header {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .event-details-card {
    padding: 1rem;
  }
}

/* Events Page & Cards */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    color: #b0b0b0;
    max-width: 500px;
    margin: 0.5rem auto 0;
}

.event-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

#events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card-modern {
    background-color: #000;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.5);
}

.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card-image-wrapper {
    height: 350px;
    position: relative;
    background-color: #111;
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card-modern:hover .event-card-image {
    transform: scale(1.05);
}

.event-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    z-index: 2;
}

.event-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-card-details {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.event-card-date {
    margin-right: 1rem;
}

.event-card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255,255,255,0.9);
    color: #000;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.event-card-status.past {
    background-color: rgba(0,0,0,0.7);
    color: #999;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.load-more-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Ensure original event grid styles don't conflict */
.events-grid {
    all: unset;
}

/*--------------------------------------------------------------
## Single Event Page
--------------------------------------------------------------*/
.single-event-page {
  background-color: #000;
  color: #fff;
}

.single-event-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.single-event-header {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  margin: 3rem 0rem 2rem 0rem;
}

.single-event-header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.single-event-header .header-content {
  position: relative;
  z-index: 2;
}

.single-event-header .entry-title {
  font-size: 4rem;
  margin: 0 0 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.single-event-header .event-status {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date-header {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.single-event-header .event-status.status-past {
  background-color: #333;
  color: #aaa;
}

.event-body {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.event-main-content {
  flex: 2;
  min-width: 300px;
}

.event-main-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.event-main-content .entry-content p {
  line-height: 1.8;
  color: #ccc;
  font-size: 1.1rem;
}

.event-sidebar {
  flex: 1;
  min-width: 300px;
}

.event-details-card {
  background-color: #111;
  border: 1px solid #222;
  padding: 2rem;
  border-radius: 8px;
}

.event-details-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

.event-details-card .event-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-details-card .meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.event-details-card .meta-icon {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  min-width: 80px;
}

.event-details-card .meta-value {
  font-weight: 500;
}

.event-details-card .event-actions {
  margin-top: 2rem;
}

.event-details-card .cta-button {
  display: block;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  text-transform: uppercase;
}

.event-details-card .cta-button:hover {
  background-color: #ccc;
  color: #000;
}

.entry-footer {
    padding: 2rem;
    border-top: 1px solid #222;
    margin-top: 2rem;
}

.event-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.event-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: 600;
}

.event-navigation a:hover {
    color: #aaa;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .single-event-article {
    padding: 0 1rem;
  }
  
  .single-event-header {
    margin: 0 -1rem 2rem -1rem;
    width: calc(100% + 2rem);
    height: 40vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2.5rem;
  }
  
  .event-date-header {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .event-body {
    padding: 2rem 0;
    flex-direction: column;
  }
  
  .event-details-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .single-event-article {
    padding: 0 0.5rem;
  }
  
  .single-event-header {
    margin: 0 -0.5rem 2rem -0.5rem;
    width: calc(100% + 1rem);
    height: 35vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2rem;
  }
  
  .event-date-header {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .event-details-card {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
## Front Page Sections
--------------------------------------------------------------*/

/* About Section */
.about-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section > .container > p {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #ccc;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.feature p {
  color: #ccc;
  line-height: 1.6;
}

/* Events Preview Section */
.events-preview {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.events-preview .container {
  max-width: 1200px;
  margin: 0 auto;
}

.events-preview h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.events-cta {
  text-align: center;
}

.no-events {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  grid-column: 1 / -1;
}

/* Community Values Section */
.community-values {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.community-values .container {
  max-width: 1200px;
  margin: 0 auto;
}

.community-values h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.value-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Experience Highlights Section */
.experience-highlights {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.experience-highlights .container {
  max-width: 1200px;
  margin: 0 auto;
}

.experience-highlights h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight {
  padding: 2rem;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.highlight h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.highlight ul {
  list-style: none;
  padding: 0;
}

.highlight li {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.highlight li:before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  color: #fff;
  font-weight: 600;
  font-style: normal;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding: 2rem;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.newsletter-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.newsletter-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: 1px solid #333;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: #666;
}

.newsletter-form .cta-button {
  padding: 1rem 2rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form .cta-button:hover {
  background-color: #ccc;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 600;
}

.form-message.success {
  background-color: #1a472a;
  color: #4ade80;
  border: 1px solid #4ade80;
}

.form-message.error {
  background-color: #450a0a;
  color: #f87171;
  border: 1px solid #f87171;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section,
  .events-preview,
  .community-values,
  .experience-highlights,
  .testimonials,
  .faq-section,
  .newsletter-section {
    padding: 2rem 1rem;
  }

  .about-section h2,
  .events-preview h2,
  .community-values h2,
  .experience-highlights h2,
  .testimonials h2,
  .faq-section h2,
  .newsletter-section h2 {
    font-size: 2rem;
  }

  .features-grid,
  .values-grid,
  .highlights-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

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

.email-form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.email-form-message.success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.email-form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    display: block;
}

.email-form-container {
    position: relative;
}

.email-form-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.email-subscription-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.email-subscription-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
}

.email-subscription-form input[type="email"]:focus {
    outline: none;
    border-color: #ffffff;
}

.email-submit-btn {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-submit-btn:hover:not(:disabled) {
    background: transparent;
    color: #ffffff;
}

.email-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive styling for hero email section */
@media (max-width: 768px) {
    .hero-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .bw-hero .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1rem;
    }

    .hero-email-section {
        margin-top: 1rem;
        padding: 1.5rem;
        max-width: 100%;
    }

    .email-heading {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .email-prompt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        min-width: auto;
        width: 100%;
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero-row {
        gap: 1.5rem;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        letter-spacing: 1px;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .hero-email-section {
        padding: 1.2rem;
        margin-top: 1rem;
    }

    .email-heading {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .email-prompt {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* Ensure hero content stays above background */
.hero-content {
    position: relative;
    z-index: 5;
}

/* Hero Event Card */
.hero-event-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 320px;
}

.hero-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: inherit;
}

.hero-event-card .event-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-event-card .event-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-event-card:hover .event-background img {
    transform: scale(1.05);
}

.hero-event-card .event-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.hero-event-card .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.hero-event-card .event-content {
    padding: 1rem;
    width: 100%;
}

.hero-event-card .event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-event-card .event-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-event-card .event-date {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-event-card .event-status {
    /* background: #00ff88; */
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Past Event Card Styles */
.hero-past-event {
    opacity: 0.8;
}

.hero-past-event:hover {
    opacity: 1;
}

.event-status.status-past {
    background: #ff6b6b;
    color: #ffffff;
}

.event-status.status-upcoming {
    background: #05c86d;
    color: #ffffff;
}

/* Coming Soon Section */
.hero-coming-soon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-coming-soon:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.coming-soon-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Previous Parties Section */
.previous-parties {
    padding: 4rem 0;
    background: #111;
}

.previous-parties .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.previous-parties h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.previous-parties .section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.party-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.party-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.party-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.party-slide {
    flex: 0 0 calc(33.333% - 1rem);
    margin-right: 1rem;
    position: relative;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.party-slide:last-child {
    margin-right: 0;
}

.party-slide:hover {
    transform: scale(1.02);
}

.party-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.party-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.party-slide:hover .party-slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem 1rem 1rem;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.party-slide:hover .slide-overlay {
    opacity: 1;
}

.party-date {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-trigger {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-trigger:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.party-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
    padding: 0 1rem;
}

.party-slider-prev, 
.party-slider-next {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 300;
    line-height: 1;
}

.party-slider-prev:hover, 
.party-slider-next:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.party-slider-prev:active, 
.party-slider-next:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.party-slider-prev:disabled, 
.party-slider-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
    background: rgba(0, 0, 0, 0.3);
}

.party-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.party-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.party-slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.party-slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.party-slider-dot.active::before {
    width: 6px;
    height: 6px;
}

.party-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-date {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive styles for enhanced party slider */
@media (max-width: 1024px) {
    .party-slider-container {
        height: 350px;
    }
    
    .party-slide {
        flex: 0 0 calc(50% - 0.75rem);
        margin-right: 0.75rem;
    }
    
    .party-slide:last-child {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .party-slider-container {
        height: 300px;
    }
    
    .party-slide {
        flex: 0 0 calc(100% - 0.5rem);
        margin-right: 0.5rem;
    }
    
    .slide-overlay {
        padding: 1rem 0.75rem 0.75rem;
        opacity: 1; /* Always visible on mobile */
    }
    
    .party-date {
        font-size: 0.8rem;
    }
    
    .lightbox-trigger {
        width: 32px;
        height: 32px;
    }
    
    .lightbox-trigger svg {
        width: 20px;
        height: 20px;
    }
    
    .party-slider-controls {
        padding: 0 0.5rem;
    }
    
    .party-slider-prev, 
    .party-slider-next {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        backdrop-filter: blur(8px);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }
    
    .party-slider-prev:hover, 
    .party-slider-next:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    }
    
    /* Lightbox mobile adjustments */
    .lightbox-content {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-info {
        bottom: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .lightbox-date {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .party-slider-container {
        height: 250px;
    }
    
    .party-slide {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .slide-overlay {
        padding: 0.75rem 0.5rem 0.5rem;
    }
    
    .party-date {
        font-size: 0.75rem;
    }
    
    .lightbox-trigger {
        width: 28px;
        height: 28px;
    }
    
    .lightbox-trigger svg {
        width: 18px;
        height: 18px;
    }
    
    .party-slider-prev, 
    .party-slider-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .party-slider-dots {
        margin-top: 1rem;
    }
    
    .party-slider-dot {
        width: 10px;
        height: 10px;
    }
}

.no-party-images {
    text-align: center;
    padding: 3rem 0;
}

.no-party-images p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hero Event Section */
.hero-event-section {
    width: 100%;
    margin-bottom: 1.5rem;
}

.hero-event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hero Events Container */
.hero-events-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Hero Events CTA */
.hero-events-cta {
    text-align: center;
    margin-top: 1rem;
}

.all-events-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.all-events-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-event-card .event-title {
    font-size: 1.3rem;
}

.hero-event-card .event-content {
    padding: 1.5rem;
}

.hero-event-card .event-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero-event-card .event-date {
    font-size: 0.9rem;
}

/* Hero Event Tabs */
.hero-event-tabs {
    display: flex;
}

.event-tab {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    padding: 0.5rem 2rem 1rem 0;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.event-tab:hover {
    opacity: 1;
}

.event-tab.active {
    color: #ffffff;
    opacity: 1;
}

.hero-event-content {
    position: relative;
}

.event-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.event-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Coming Soon and No Events Messages */
.coming-soon-message,
.no-events-message {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon-message h3,
.no-events-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-message p,
.no-events-message p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 300px;
}

/* Remove all rounded corners from the website */
*,
*::before,
*::after,
button,
input,
textarea,
select,
.cta-button,
.event-card-modern,
.hero-event-card,
.party-slide,
.party-slider-container,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.lightbox-trigger,
.lightbox-content,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
/*
Theme Name: PlayVilla
Author: Your Name
Description: A sophisticated dark-themed WordPress theme for party and event management.
Version: 1.1.0
*/

/* General Body & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: #0a0a0a;
    color: white;
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 50px;
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 5px;
    width: auto;
    transition: all 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.site-title a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.site-title a:hover {
    color: #cccccc !important;
    text-shadow: none;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    padding: 0.25rem 0;
}

.main-navigation a:hover {
    color: #cccccc;
    text-shadow: none;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Active/Current menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-parent > a,
.main-navigation .current_page_parent > a {
    color: #ffffff !important;
    font-weight: 700;
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-parent > a::after,
.main-navigation .current_page_parent > a::after {
    width: 100% !important;
    background-color: #ffffff !important;
}

/* Additional selectors for better coverage */
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a {
    color: #ffffff !important;
    font-weight: 700;
 
}

.main-navigation li.current-menu-item a::after,
.main-navigation li.current_page_item a::after,
.main-navigation li.current-menu-parent a::after,
.main-navigation li.current_page_parent a::after {
    width: 100% !important;
    background-color: #ffffff !important;
}

/* Mobile Menu Toggle - Ensure it's always visible on mobile */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .main-navigation a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .main-navigation a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Ensure mobile menu toggle is visible on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Enhanced Hero Section Mobile */
@media (max-width: 768px) {
    .hero-section.bw-hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .bw-hero .hero-content {
        padding: 0 1rem;
    }

    .hero-row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .hero-left {
        text-align: center;
        order: 1;
    }

    .hero-right {
        order: 2;
        width: 100%;
        max-width: 400px;
    }

    .bw-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .hero-email-section {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .email-heading {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .email-prompt {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        min-height: 50px;
        transition: all 0.3s ease;
    }

    .hero-email-section .email-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Hero Event Cards Mobile */
    .hero-event-card {
        height: 280px;
        border-radius: 12px;
    }

    .hero-event-card .event-content {
        padding: 1.5rem;
    }

    .hero-event-card .event-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-event-card .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .hero-event-card .event-date {
        font-size: 1rem;
        font-weight: 500;
    }

    .hero-event-card .event-status {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    /* Event Tabs Mobile */
    .hero-event-tabs {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .event-tab {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
    }

    .event-tab.active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }

    /* Coming Soon Messages Mobile */
    .coming-soon-message,
    .no-events-message {
        height: 280px;
        padding: 2rem 1.5rem;
    }

    .coming-soon-message h3,
    .no-events-message h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .coming-soon-message p,
    .no-events-message p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section.bw-hero {
        padding: 1.5rem 0.5rem;
    }

    .bw-hero .hero-content {
        padding: 0 0.5rem;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        letter-spacing: 0.5px;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }

    .hero-email-section {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }

    .email-heading {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .email-prompt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .hero-email-section .email-submit-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .hero-event-card {
        height: 260px;
    }

    .hero-event-card .event-content {
        padding: 1.2rem;
    }

    .hero-event-card .event-title {
        font-size: 1.3rem;
    }

    .event-tab {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .coming-soon-message,
    .no-events-message {
        height: 260px;
        padding: 1.5rem 1rem;
    }

    .coming-soon-message h3,
    .no-events-message h3 {
        font-size: 1.4rem;
    }

    .coming-soon-message p,
    .no-events-message p {
        font-size: 0.95rem;
    }
}

/* Previous Parties Section Mobile */
@media (max-width: 768px) {
    .previous-parties {
        padding: 3rem 1rem;
    }

    .previous-parties .container {
        padding: 0;
    }

    .previous-parties h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .previous-parties .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .party-slider {
        margin: 0 -0.5rem;
    }

    .party-slide {
        border-radius: 12px;
        overflow: hidden;
    }

    .party-slide img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .slide-overlay {
        padding: 1rem;
    }

    .party-date {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .party-slider-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        pointer-events: none;
    }

    .party-slider-prev,
    .party-slider-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        pointer-events: all;
        transition: all 0.3s ease;
    }

    .party-slider-dots {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .party-slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-section .container {
        padding: 0;
    }

    .about-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .about-section > .container > p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

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

    .feature {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .feature h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .feature p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Community Values Mobile */
@media (max-width: 768px) {
    .community-values {
        padding: 3rem 1rem;
    }

    .community-values .container {
        padding: 0;
    }

    .community-values h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .value-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .value-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Experience Highlights Mobile */
@media (max-width: 768px) {
    .experience-highlights {
        padding: 3rem 1rem;
    }

    .experience-highlights .container {
        padding: 0;
    }

    .experience-highlights h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .highlight h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .highlight ul {
        margin-left: 1rem;
    }

    .highlight li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-section .container {
        padding: 0;
    }

    .faq-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Newsletter Section Mobile */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1rem;
    }

    .newsletter-section .container {
        padding: 0;
    }

    .newsletter-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .newsletter-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 50px;
    }

    .newsletter-form .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 50px;
        transition: all 0.3s ease;
    }

    .newsletter-form .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    button, 
    .cta-button,
    .event-tab,
    .party-slider-prev,
    .party-slider-next,
    .party-slider-dot {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve form elements */
    input[type="email"],
    input[type="text"],
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better spacing for mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Improve readability */
    p, li {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Better button spacing */
    .cta-button,
    .email-submit-btn {
        margin: 0.5rem 0;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section.bw-hero {
        min-height: 100vh;
        padding: 1rem;
    }

    .hero-row {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }

    .hero-left {
        flex: 1;
        text-align: left;
    }

    .hero-right {
        flex: 1;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-event-card .event-background img,
    .party-slide img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Ensure proper contrast in dark mode */
    .hero-email-section,
    .newsletter-form input[type="email"] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Black & White Hero Section */
.hero-section.bw-hero {
    min-height: 80vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.bw-hero .hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

.hero-left {
    text-align: left;
}

.hero-right {
    text-align: center;
}

.bw-hero .hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bw-hero .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-email-section {
    margin-top: 0;
    text-align: left;
    max-width: 100%;
 
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.3rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Hero Placeholder */
.hero-placeholder {
    width: 100%;
    height: 500px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.email-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-prompt {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-email-section .email-subscription-form {
    justify-content: flex-start;
    max-width: 100%;
}

.hero-email-section .email-subscription-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.hero-email-section .email-subscription-form input[type="email"]:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.hero-email-section .email-submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-email-section .email-submit-btn:hover:not(:disabled) {
    background: transparent;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

.hero-email-section .email-form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-email-section .email-form-message.success {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.hero-email-section .email-form-message.error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Main Content & Other Sections */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Other global styles from your theme can be added here */
/* For example: event cards, about section, etc. */

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

.events-cta {
    text-align: center;
    margin-top: 2rem;
}

.events-cta .cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.events-cta .cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.events-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.events-cta .cta-button:hover::before {
    left: 100%;
}

.no-events {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    grid-column: 1 / -1;
}

.no-events-container {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 2rem 0;
}

.no-events-container .no-events {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.no-events-newsletter {
    max-width: 500px;
    margin: 0 auto;
}

.no-events-newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.no-events-newsletter .email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-events-newsletter .email-form input[type="email"] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1rem;
    flex-grow: 1;
    max-width: 300px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.no-events-newsletter .email-form input[type="email"]:focus {
    border-color: #ffffff;
    outline: none;
}

.no-events-newsletter .email-form button {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.no-events-newsletter .email-form button:hover {
    background-color: transparent;
    color: #ffffff;
}

.about-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.previous-parties {
    background: #111;

}

.status-past {
    background: rgb(145, 32, 32);
}

/* Fallback for email form if not in hero */
.email-form-container {
     /* Styles for a generic email form container */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    /* Remove the conflicting display: none that breaks the mobile menu */
    /* .main-navigation {
        display: none;
    } */

    /* Remove duplicate mobile menu toggle styles that conflict */
    /* .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 3px;
        background: #ffffff;
        transition: all 0.3s ease;
    } */

    .hero-row {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-left {
        text-align: center;
    }

    .bw-hero .hero-title {
        font-size: 2.5rem;
    }

    .bw-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-email-section {
        margin-top: 2rem;
    }

    .email-heading {
        font-size: 1.2rem;
    }

    .email-prompt {
        font-size: 0.9rem;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Hero Event Card Mobile */
    .hero-event-card {
        height: 250px;
    }

    .hero-event-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

  

    .hero-event-section {
        margin-bottom: 1rem;
    }

    .all-events-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-event-card .event-title {
        font-size: 1.3rem;
        text-align: left;
    }

    .hero-event-card .event-content {
        padding: 1.5rem;
    }

    .hero-event-card .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero-event-card .event-date {
        font-size: 0.9rem;
    }

    /* Previous Parties Mobile */
    .previous-parties h2 {
        font-size: 2rem;
    }

    .party-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .party-image {
        aspect-ratio: 16/9;
    }

    /* Coming Soon Mobile */
    .coming-soon-content h3 {
        font-size: 1.5rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
  .single-event-article {
    padding: 0 0.5rem;
  }
  
  .single-event-header {
    margin: 0 -0.5rem 2rem -0.5rem;
    width: calc(100% + 1rem);
    height: 35vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2rem;
  }
  
  .event-date-header {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .event-details-card {
    padding: 1rem;
  }
}

/* Events Page & Cards */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    color: #b0b0b0;
    max-width: 500px;
    margin: 0.5rem auto 0;
}

.event-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

#events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card-modern {
    background-color: #000;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.5);
}

.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card-image-wrapper {
    height: 350px;
    position: relative;
    background-color: #111;
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card-modern:hover .event-card-image {
    transform: scale(1.05);
}

.event-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    z-index: 2;
}

.event-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-card-details {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.event-card-date {
    margin-right: 1rem;
}

.event-card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255,255,255,0.9);
    color: #000;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.event-card-status.past {
    background-color: rgba(0,0,0,0.7);
    color: #999;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.load-more-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Ensure original event grid styles don't conflict */
.events-grid {
    all: unset;
}

/*--------------------------------------------------------------
## Single Event Page
--------------------------------------------------------------*/
.single-event-page {
  background-color: #000;
  color: #fff;
}

.single-event-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.single-event-header {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  margin: 3rem 0rem 2rem 0rem;
}

.single-event-header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.single-event-header .header-content {
  position: relative;
  z-index: 2;
}

.single-event-header .entry-title {
  font-size: 4rem;
  margin: 0 0 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.single-event-header .event-status {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date-header {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.single-event-header .event-status.status-past {
  background-color: #333;
  color: #aaa;
}

.event-body {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.event-main-content {
  flex: 2;
  min-width: 300px;
}

.event-main-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.event-main-content .entry-content p {
  line-height: 1.8;
  color: #ccc;
  font-size: 1.1rem;
}

.event-sidebar {
  flex: 1;
  min-width: 300px;
}

.event-details-card {
  background-color: #111;
  border: 1px solid #222;
  padding: 2rem;
  border-radius: 8px;
}

.event-details-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

.event-details-card .event-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-details-card .meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.event-details-card .meta-icon {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  min-width: 80px;
}

.event-details-card .meta-value {
  font-weight: 500;
}

.event-details-card .event-actions {
  margin-top: 2rem;
}

.event-details-card .cta-button {
  display: block;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  text-transform: uppercase;
}

.event-details-card .cta-button:hover {
  background-color: #ccc;
  color: #000;
}

.entry-footer {
    padding: 2rem;
    border-top: 1px solid #222;
    margin-top: 2rem;
}

.event-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.event-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: 600;
}

.event-navigation a:hover {
    color: #aaa;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .single-event-article {
    padding: 0 1rem;
  }
  
  .single-event-header {
    margin: 0 -1rem 2rem -1rem;
    width: calc(100% + 2rem);
    height: 40vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2.5rem;
  }
  
  .event-date-header {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .event-body {
    padding: 2rem 0;
    flex-direction: column;
  }
  
  .event-details-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .single-event-article {
    padding: 0 0.5rem;
  }
  
  .single-event-header {
    margin: 0 -0.5rem 2rem -0.5rem;
    width: calc(100% + 1rem);
    height: 35vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2rem;
  }
  
  .event-date-header {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .event-details-card {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
## Front Page Sections
--------------------------------------------------------------*/

/* About Section */
.about-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section > .container > p {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #ccc;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.feature p {
  color: #ccc;
  line-height: 1.6;
}

/* Events Preview Section */
.events-preview {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.events-preview .container {
  max-width: 1200px;
  margin: 0 auto;
}

.events-preview h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.events-cta {
  text-align: center;
}

.no-events {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  grid-column: 1 / -1;
}

/* Community Values Section */
.community-values {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.community-values .container {
  max-width: 1200px;
  margin: 0 auto;
}

.community-values h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.value-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Experience Highlights Section */
.experience-highlights {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.experience-highlights .container {
  max-width: 1200px;
  margin: 0 auto;
}

.experience-highlights h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight {
  padding: 2rem;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.highlight h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.highlight ul {
  list-style: none;
  padding: 0;
}

.highlight li {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.highlight li:before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  color: #fff;
  font-weight: 600;
  font-style: normal;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding: 2rem;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.newsletter-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.newsletter-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: 1px solid #333;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: #666;
}

.newsletter-form .cta-button {
  padding: 1rem 2rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form .cta-button:hover {
  background-color: #ccc;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 600;
}

.form-message.success {
  background-color: #1a472a;
  color: #4ade80;
  border: 1px solid #4ade80;
}

.form-message.error {
  background-color: #450a0a;
  color: #f87171;
  border: 1px solid #f87171;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section,
  .events-preview,
  .community-values,
  .experience-highlights,
  .testimonials,
  .faq-section,
  .newsletter-section {
    padding: 2rem 1rem;
  }

  .about-section h2,
  .events-preview h2,
  .community-values h2,
  .experience-highlights h2,
  .testimonials h2,
  .faq-section h2,
  .newsletter-section h2 {
    font-size: 2rem;
  }

  .features-grid,
  .values-grid,
  .highlights-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

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

.email-form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.email-form-message.success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.email-form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    display: block;
}

.email-form-container {
    position: relative;
}

.email-form-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.email-subscription-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.email-subscription-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
}

.email-subscription-form input[type="email"]:focus {
    outline: none;
    border-color: #ffffff;
}

.email-submit-btn {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-submit-btn:hover:not(:disabled) {
    background: transparent;
    color: #ffffff;
}

.email-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive styling for hero email section */
@media (max-width: 768px) {
    .hero-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .bw-hero .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1rem;
    }

    .hero-email-section {
        margin-top: 1rem;
        padding: 1.5rem;
        max-width: 100%;
    }

    .email-heading {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .email-prompt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        min-width: auto;
        width: 100%;
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero-row {
        gap: 1.5rem;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        letter-spacing: 1px;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .hero-email-section {
        padding: 1.2rem;
        margin-top: 1rem;
    }

    .email-heading {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .email-prompt {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* Ensure hero content stays above background */
.hero-content {
    position: relative;
    z-index: 5;
}

/* Hero Event Card */
.hero-event-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 320px;
}

.hero-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: inherit;
}

.hero-event-card .event-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-event-card .event-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-event-card:hover .event-background img {
    transform: scale(1.05);
}

.hero-event-card .event-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.hero-event-card .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.hero-event-card .event-content {
    padding: 1rem;
    width: 100%;
}

.hero-event-card .event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-event-card .event-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-event-card .event-date {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-event-card .event-status {
    /* background: #00ff88; */
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Past Event Card Styles */
.hero-past-event {
    opacity: 0.8;
}

.hero-past-event:hover {
    opacity: 1;
}

.event-status.status-past {
    background: #ff6b6b;
    color: #ffffff;
}

.event-status.status-upcoming {
    background: #05c86d;
    color: #ffffff;
}

/* Coming Soon Section */
.hero-coming-soon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-coming-soon:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.coming-soon-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Previous Parties Section */
.previous-parties {
    padding: 4rem 0;
    background: #111;
}

.previous-parties .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.previous-parties h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.previous-parties .section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.party-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.party-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.party-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.party-slide {
    flex: 0 0 calc(33.333% - 1rem);
    margin-right: 1rem;
    position: relative;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.party-slide:last-child {
    margin-right: 0;
}

.party-slide:hover {
    transform: scale(1.02);
}

.party-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.party-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.party-slide:hover .party-slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem 1rem 1rem;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.party-slide:hover .slide-overlay {
    opacity: 1;
}

.party-date {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-trigger {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-trigger:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.party-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
    padding: 0 1rem;
}

.party-slider-prev, 
.party-slider-next {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 300;
    line-height: 1;
}

.party-slider-prev:hover, 
.party-slider-next:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.party-slider-prev:active, 
.party-slider-next:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.party-slider-prev:disabled, 
.party-slider-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
    background: rgba(0, 0, 0, 0.3);
}

.party-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.party-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.party-slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.party-slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.party-slider-dot.active::before {
    width: 6px;
    height: 6px;
}

.party-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-date {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive styles for enhanced party slider */
@media (max-width: 1024px) {
    .party-slider-container {
        height: 350px;
    }
    
    .party-slide {
        flex: 0 0 calc(50% - 0.75rem);
        margin-right: 0.75rem;
    }
    
    .party-slide:last-child {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .party-slider-container {
        height: 300px;
    }
    
    .party-slide {
        flex: 0 0 calc(100% - 0.5rem);
        margin-right: 0.5rem;
    }
    
    .slide-overlay {
        padding: 1rem 0.75rem 0.75rem;
        opacity: 1; /* Always visible on mobile */
    }
    
    .party-date {
        font-size: 0.8rem;
    }
    
    .lightbox-trigger {
        width: 32px;
        height: 32px;
    }
    
    .lightbox-trigger svg {
        width: 20px;
        height: 20px;
    }
    
    .party-slider-controls {
        padding: 0 0.5rem;
    }
    
    .party-slider-prev, 
    .party-slider-next {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        backdrop-filter: blur(8px);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }
    
    .party-slider-prev:hover, 
    .party-slider-next:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    }
    
    /* Lightbox mobile adjustments */
    .lightbox-content {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-info {
        bottom: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .lightbox-date {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .party-slider-container {
        height: 250px;
    }
    
    .party-slide {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .slide-overlay {
        padding: 0.75rem 0.5rem 0.5rem;
    }
    
    .party-date {
        font-size: 0.75rem;
    }
    
    .lightbox-trigger {
        width: 28px;
        height: 28px;
    }
    
    .lightbox-trigger svg {
        width: 18px;
        height: 18px;
    }
    
    .party-slider-prev, 
    .party-slider-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .party-slider-dots {
        margin-top: 1rem;
    }
    
    .party-slider-dot {
        width: 10px;
        height: 10px;
    }
}

.no-party-images {
    text-align: center;
    padding: 3rem 0;
}

.no-party-images p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hero Event Section */
.hero-event-section {
    width: 100%;
    margin-bottom: 1.5rem;
}

.hero-event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hero Events Container */
.hero-events-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Hero Events CTA */
.hero-events-cta {
    text-align: center;
    margin-top: 1rem;
}

.all-events-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.all-events-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-event-card .event-title {
    font-size: 1.3rem;
}

.hero-event-card .event-content {
    padding: 1.5rem;
}

.hero-event-card .event-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero-event-card .event-date {
    font-size: 0.9rem;
}

/* Hero Event Tabs */
.hero-event-tabs {
    display: flex;
}

.event-tab {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    padding: 0.5rem 2rem 1rem 0;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.event-tab:hover {
    opacity: 1;
}

.event-tab.active {
    color: #ffffff;
    opacity: 1;
}

.hero-event-content {
    position: relative;
}

.event-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.event-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Coming Soon and No Events Messages */
.coming-soon-message,
.no-events-message {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon-message h3,
.no-events-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-message p,
.no-events-message p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 300px;
}

/* Remove all rounded corners from the website */
*,
*::before,
*::after,
button,
input,
textarea,
select,
.cta-button,
.event-card-modern,
.hero-event-card,
.party-slide,
.party-slider-container,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.lightbox-trigger,
.lightbox-content,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
/*
Theme Name: PlayVilla
Author: Your Name
Description: A sophisticated dark-themed WordPress theme for party and event management.
Version: 1.1.0
*/

/* General Body & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: #0a0a0a;
    color: white;
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 30px;
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(0) invert(1) !important;
    transition: all 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.site-title a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.site-title a:hover {
    color: #cccccc !important;
    text-shadow: none;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    padding: 0.25rem 0;
}

.main-navigation a:hover {
    color: #cccccc;
    text-shadow: none;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Active/Current menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-parent > a,
.main-navigation .current_page_parent > a {
    color: #ffffff !important;
    font-weight: 700;
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-parent > a::after,
.main-navigation .current_page_parent > a::after {
    width: 100% !important;
    background-color: #ffffff !important;
}

/* Additional selectors for better coverage */
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a {
    color: #ffffff !important;
    font-weight: 700;
 
}

.main-navigation li.current-menu-item a::after,
.main-navigation li.current_page_item a::after,
.main-navigation li.current-menu-parent a::after,
.main-navigation li.current_page_parent a::after {
    width: 100% !important;
    background-color: #ffffff !important;
}

/* Mobile Menu Toggle - Ensure it's always visible on mobile */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .main-navigation a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .main-navigation a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Ensure mobile menu toggle is visible on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Enhanced Hero Section Mobile */
@media (max-width: 768px) {
    .hero-section.bw-hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .bw-hero .hero-content {
        padding: 0 1rem;
    }

    .hero-row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .hero-left {
        text-align: center;
        order: 1;
    }

    .hero-right {
        order: 2;
        width: 100%;
        max-width: 400px;
    }

    .bw-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .hero-email-section {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .email-heading {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .email-prompt {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        min-height: 50px;
        transition: all 0.3s ease;
    }

    .hero-email-section .email-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Hero Event Cards Mobile */
    .hero-event-card {
        height: 280px;
        border-radius: 12px;
    }

    .hero-event-card .event-content {
        padding: 1.5rem;
    }

    .hero-event-card .event-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-event-card .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .hero-event-card .event-date {
        font-size: 1rem;
        font-weight: 500;
    }

    .hero-event-card .event-status {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    /* Event Tabs Mobile */
    .hero-event-tabs {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .event-tab {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
    }

    .event-tab.active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }

    /* Coming Soon Messages Mobile */
    .coming-soon-message,
    .no-events-message {
        height: 280px;
        padding: 2rem 1.5rem;
    }

    .coming-soon-message h3,
    .no-events-message h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .coming-soon-message p,
    .no-events-message p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section.bw-hero {
        padding: 1.5rem 0.5rem;
    }

    .bw-hero .hero-content {
        padding: 0 0.5rem;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        letter-spacing: 0.5px;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }

    .hero-email-section {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }

    .email-heading {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .email-prompt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .hero-email-section .email-submit-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .hero-event-card {
        height: 260px;
    }

    .hero-event-card .event-content {
        padding: 1.2rem;
    }

    .hero-event-card .event-title {
        font-size: 1.3rem;
    }

    .event-tab {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .coming-soon-message,
    .no-events-message {
        height: 260px;
        padding: 1.5rem 1rem;
    }

    .coming-soon-message h3,
    .no-events-message h3 {
        font-size: 1.4rem;
    }

    .coming-soon-message p,
    .no-events-message p {
        font-size: 0.95rem;
    }
}

/* Previous Parties Section Mobile */
@media (max-width: 768px) {
    .previous-parties {
        padding: 3rem 1rem;
    }

    .previous-parties .container {
        padding: 0;
    }

    .previous-parties h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .previous-parties .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .party-slider {
        margin: 0 -0.5rem;
    }

    .party-slide {
        border-radius: 12px;
        overflow: hidden;
    }

    .party-slide img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .slide-overlay {
        padding: 1rem;
    }

    .party-date {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .party-slider-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        pointer-events: none;
    }

    .party-slider-prev,
    .party-slider-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        pointer-events: all;
        transition: all 0.3s ease;
    }

    .party-slider-dots {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .party-slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-section .container {
        padding: 0;
    }

    .about-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .about-section > .container > p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

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

    .feature {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .feature h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .feature p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Community Values Mobile */
@media (max-width: 768px) {
    .community-values {
        padding: 3rem 1rem;
    }

    .community-values .container {
        padding: 0;
    }

    .community-values h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .value-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .value-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Experience Highlights Mobile */
@media (max-width: 768px) {
    .experience-highlights {
        padding: 3rem 1rem;
    }

    .experience-highlights .container {
        padding: 0;
    }

    .experience-highlights h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .highlight h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .highlight ul {
        margin-left: 1rem;
    }

    .highlight li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-section .container {
        padding: 0;
    }

    .faq-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Newsletter Section Mobile */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1rem;
    }

    .newsletter-section .container {
        padding: 0;
    }

    .newsletter-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .newsletter-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 50px;
    }

    .newsletter-form .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 50px;
        transition: all 0.3s ease;
    }

    .newsletter-form .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    button, 
    .cta-button,
    .event-tab,
    .party-slider-prev,
    .party-slider-next,
    .party-slider-dot {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve form elements */
    input[type="email"],
    input[type="text"],
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better spacing for mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Improve readability */
    p, li {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Better button spacing */
    .cta-button,
    .email-submit-btn {
        margin: 0.5rem 0;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section.bw-hero {
        min-height: 100vh;
        padding: 1rem;
    }

    .hero-row {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }

    .hero-left {
        flex: 1;
        text-align: left;
    }

    .hero-right {
        flex: 1;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-event-card .event-background img,
    .party-slide img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Ensure proper contrast in dark mode */
    .hero-email-section,
    .newsletter-form input[type="email"] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Black & White Hero Section */
.hero-section.bw-hero {
    min-height: 80vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.bw-hero .hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

.hero-left {
    text-align: left;
}

.hero-right {
    text-align: center;
}

.bw-hero .hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bw-hero .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-email-section {
    margin-top: 0;
    text-align: left;
    max-width: 100%;
 
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.3rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Hero Placeholder */
.hero-placeholder {
    width: 100%;
    height: 500px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.email-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-prompt {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-email-section .email-subscription-form {
    justify-content: flex-start;
    max-width: 100%;
}

.hero-email-section .email-subscription-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.hero-email-section .email-subscription-form input[type="email"]:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.hero-email-section .email-submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-email-section .email-submit-btn:hover:not(:disabled) {
    background: transparent;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

.hero-email-section .email-form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-email-section .email-form-message.success {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.hero-email-section .email-form-message.error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Main Content & Other Sections */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Other global styles from your theme can be added here */
/* For example: event cards, about section, etc. */

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

.events-cta {
    text-align: center;
    margin-top: 2rem;
}

.events-cta .cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.events-cta .cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.events-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.events-cta .cta-button:hover::before {
    left: 100%;
}

.no-events {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    grid-column: 1 / -1;
}

.no-events-container {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 2rem 0;
}

.no-events-container .no-events {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.no-events-newsletter {
    max-width: 500px;
    margin: 0 auto;
}

.no-events-newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.no-events-newsletter .email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-events-newsletter .email-form input[type="email"] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1rem;
    flex-grow: 1;
    max-width: 300px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.no-events-newsletter .email-form input[type="email"]:focus {
    border-color: #ffffff;
    outline: none;
}

.no-events-newsletter .email-form button {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.no-events-newsletter .email-form button:hover {
    background-color: transparent;
    color: #ffffff;
}

.about-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.previous-parties {
    background: #0f0f0f;

}

.status-past {
    background: rgb(145, 32, 32);
}

/* Fallback for email form if not in hero */
.email-form-container {
     /* Styles for a generic email form container */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    /* Remove the conflicting display: none that breaks the mobile menu */
    /* .main-navigation {
        display: none;
    } */

    /* Remove duplicate mobile menu toggle styles that conflict */
    /* .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 3px;
        background: #ffffff;
        transition: all 0.3s ease;
    } */

    .hero-row {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-left {
        text-align: center;
    }

    .bw-hero .hero-title {
        font-size: 2.5rem;
    }

    .bw-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-email-section {
        margin-top: 2rem;
    }

    .email-heading {
        font-size: 1.2rem;
    }

    .email-prompt {
        font-size: 0.9rem;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Hero Event Card Mobile */
    .hero-event-card {
        height: 250px;
    }

    .hero-event-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

  

    .hero-event-section {
        margin-bottom: 1rem;
    }

    .all-events-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-event-card .event-title {
        font-size: 1.3rem;
        text-align: left;
    }

    .hero-event-card .event-content {
        padding: 1.5rem;
    }

    .hero-event-card .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero-event-card .event-date {
        font-size: 0.9rem;
    }

    /* Previous Parties Mobile */
    .previous-parties h2 {
        font-size: 2rem;
    }

    .party-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .party-image {
        aspect-ratio: 16/9;
    }

    /* Coming Soon Mobile */
    .coming-soon-content h3 {
        font-size: 1.5rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
  .single-event-article {
    padding: 0 0.5rem;
  }
  
  .single-event-header {
    margin: 0 -0.5rem 2rem -0.5rem;
    width: calc(100% + 1rem);
    height: 35vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2rem;
  }
  
  .event-date-header {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .event-details-card {
    padding: 1rem;
  }
}

/* Events Page & Cards */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    color: #b0b0b0;
    max-width: 500px;
    margin: 0.5rem auto 0;
}

.event-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

#events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card-modern {
    background-color: #000;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.5);
}

.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card-image-wrapper {
    height: 350px;
    position: relative;
    background-color: #111;
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card-modern:hover .event-card-image {
    transform: scale(1.05);
}

.event-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    z-index: 2;
}

.event-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-card-details {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.event-card-date {
    margin-right: 1rem;
}

.event-card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255,255,255,0.9);
    color: #000;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.event-card-status.past {
    background-color: rgba(0,0,0,0.7);
    color: #999;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.load-more-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Ensure original event grid styles don't conflict */
.events-grid {
    all: unset;
}

/*--------------------------------------------------------------
## Single Event Page
--------------------------------------------------------------*/
.single-event-page {
  background-color: #000;
  color: #fff;
}

.single-event-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.single-event-header {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  margin: 3rem 0rem 2rem 0rem;
}

.single-event-header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.single-event-header .header-content {
  position: relative;
  z-index: 2;
}

.single-event-header .entry-title {
  font-size: 4rem;
  margin: 0 0 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.single-event-header .event-status {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date-header {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.single-event-header .event-status.status-past {
  background-color: #333;
  color: #aaa;
}

.event-body {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.event-main-content {
  flex: 2;
  min-width: 300px;
}

.event-main-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.event-main-content .entry-content p {
  line-height: 1.8;
  color: #ccc;
  font-size: 1.1rem;
}

.event-sidebar {
  flex: 1;
  min-width: 300px;
}

.event-details-card {
  background-color: #111;
  border: 1px solid #222;
  padding: 2rem;
  border-radius: 8px;
}

.event-details-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

.event-details-card .event-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-details-card .meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.event-details-card .meta-icon {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  min-width: 80px;
}

.event-details-card .meta-value {
  font-weight: 500;
}

.event-details-card .event-actions {
  margin-top: 2rem;
}

.event-details-card .cta-button {
  display: block;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  text-transform: uppercase;
}

.event-details-card .cta-button:hover {
  background-color: #ccc;
  color: #000;
}

.entry-footer {
    padding: 2rem;
    border-top: 1px solid #222;
    margin-top: 2rem;
}

.event-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.event-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: 600;
}

.event-navigation a:hover {
    color: #aaa;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .single-event-article {
    padding: 0 1rem;
  }
  
  .single-event-header {
    margin: 0 -1rem 2rem -1rem;
    width: calc(100% + 2rem);
    height: 40vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2.5rem;
  }
  
  .event-date-header {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .event-body {
    padding: 2rem 0;
    flex-direction: column;
  }
  
  .event-details-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .single-event-article {
    padding: 0 0.5rem;
  }
  
  .single-event-header {
    margin: 0 -0.5rem 2rem -0.5rem;
    width: calc(100% + 1rem);
    height: 35vh;
  }
  
  .single-event-header .entry-title {
    font-size: 2rem;
  }
  
  .event-date-header {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .event-details-card {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
## Front Page Sections
--------------------------------------------------------------*/

/* About Section */
.about-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section > .container > p {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #ccc;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.feature p {
  color: #ccc;
  line-height: 1.6;
}

/* Events Preview Section */
.events-preview {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.events-preview .container {
  max-width: 1200px;
  margin: 0 auto;
}

.events-preview h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.events-cta {
  text-align: center;
}

.no-events {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  grid-column: 1 / -1;
}

/* Community Values Section */
.community-values {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.community-values .container {
  max-width: 1200px;
  margin: 0 auto;
}

.community-values h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.value-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Experience Highlights Section */
.experience-highlights {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.experience-highlights .container {
  max-width: 1200px;
  margin: 0 auto;
}

.experience-highlights h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight {
  padding: 2rem;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.highlight h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.highlight ul {
  list-style: none;
  padding: 0;
}

.highlight li {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.highlight li:before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: 2rem;
  background-color: #000;
  border: 1px solid #222;
  border-radius: 8px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  color: #fff;
  font-weight: 600;
  font-style: normal;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background-color: #000;
  color: #fff;
}

.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding: 2rem;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.newsletter-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.newsletter-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: 1px solid #333;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: #666;
}

.newsletter-form .cta-button {
  padding: 1rem 2rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form .cta-button:hover {
  background-color: #ccc;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 600;
}

.form-message.success {
  background-color: #1a472a;
  color: #4ade80;
  border: 1px solid #4ade80;
}

.form-message.error {
  background-color: #450a0a;
  color: #f87171;
  border: 1px solid #f87171;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section,
  .events-preview,
  .community-values,
  .experience-highlights,
  .testimonials,
  .faq-section,
  .newsletter-section {
    padding: 2rem 1rem;
  }

  .about-section h2,
  .events-preview h2,
  .community-values h2,
  .experience-highlights h2,
  .testimonials h2,
  .faq-section h2,
  .newsletter-section h2 {
    font-size: 2rem;
  }

  .features-grid,
  .values-grid,
  .highlights-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

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

.email-form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.email-form-message.success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.email-form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    display: block;
}

.email-form-container {
    position: relative;
}

.email-form-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.email-subscription-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.email-subscription-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
}

.email-subscription-form input[type="email"]:focus {
    outline: none;
    border-color: #ffffff;
}

.email-submit-btn {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-submit-btn:hover:not(:disabled) {
    background: transparent;
    color: #ffffff;
}

.email-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive styling for hero email section */
@media (max-width: 768px) {
    .hero-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .bw-hero .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1rem;
    }

    .hero-email-section {
        margin-top: 1rem;
        padding: 1.5rem;
        max-width: 100%;
    }

    .email-heading {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .email-prompt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-email-section .email-subscription-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-email-section .email-subscription-form input[type="email"] {
        min-width: auto;
        width: 100%;
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .hero-email-section .email-submit-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero-row {
        gap: 1.5rem;
    }

    .bw-hero .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        letter-spacing: 1px;
    }

    .bw-hero .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .hero-email-section {
        padding: 1.2rem;
        margin-top: 1rem;
    }

    .email-heading {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .email-prompt {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* Ensure hero content stays above background */
.hero-content {
    position: relative;
    z-index: 5;
}

/* Hero Event Card */
.hero-event-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 320px;
}

.hero-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: inherit;
}

.hero-event-card .event-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-event-card .event-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-event-card:hover .event-background img {
    transform: scale(1.05);
}

.hero-event-card .event-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.hero-event-card .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.hero-event-card .event-content {
    padding: 1rem;
    width: 100%;
}

.hero-event-card .event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-event-card .event-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-event-card .event-date {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-event-card .event-status {
    /* background: #00ff88; */
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Past Event Card Styles */
.hero-past-event {
    opacity: 0.8;
}

.hero-past-event:hover {
    opacity: 1;
}

.event-status.status-past {
    background: #ff6b6b;
    color: #ffffff;
}

.event-status.status-upcoming {
    background: #05c86d;
    color: #ffffff;
}

/* Coming Soon Section */
.hero-coming-soon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-coming-soon:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.coming-soon-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Previous Parties Section */
.previous-parties {
    padding: 4rem 0;
    background: #000000;
}

.previous-parties .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.previous-parties h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.previous-parties .section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.party-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.party-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.party-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.party-slide {
    flex: 0 0 calc(33.333% - 1rem);
    margin-right: 1rem;
    position: relative;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.party-slide:last-child {
    margin-right: 0;
}

.party-slide:hover {
    transform: scale(1.02);
}

.party-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.party-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.party-slide:hover .party-slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem 1rem 1rem;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.party-slide:hover .slide-overlay {
    opacity: 1;
}

.party-date {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-trigger {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-trigger:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.party-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
    padding: 0 1rem;
}

.party-slider-prev, 
.party-slider-next {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 300;
    line-height: 1;
}

.party-slider-prev:hover, 
.party-slider-next:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.party-slider-prev:active, 
.party-slider-next:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.party-slider-prev:disabled, 
.party-slider-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
    background: rgba(0, 0, 0, 0.3);
}

.party-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.party-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.party-slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.party-slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.party-slider-dot.active::before {
    width: 6px;
    height: 6px;
}

.party-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-date {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive styles for enhanced party slider */
@media (max-width: 1024px) {
    .party-slider-container {
        height: 350px;
    }
    
    .party-slide {
        flex: 0 0 calc(50% - 0.75rem);
        margin-right: 0.75rem;
    }
    
    .party-slide:last-child {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .party-slider-container {
        height: 300px;
    }
    
    .party-slide {
        flex: 0 0 calc(100% - 0.5rem);
        margin-right: 0.5rem;
    }
    
    .slide-overlay {
        padding: 1rem 0.75rem 0.75rem;
        opacity: 1; /* Always visible on mobile */
    }
    
    .party-date {
        font-size: 0.8rem;
    }
    
    .lightbox-trigger {
        width: 32px;
        height: 32px;
    }
    
    .lightbox-trigger svg {
        width: 20px;
        height: 20px;
    }
    
    .party-slider-controls {
        padding: 0 0.5rem;
    }
    
    .party-slider-prev, 
    .party-slider-next {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        backdrop-filter: blur(8px);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }
    
    .party-slider-prev:hover, 
    .party-slider-next:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    }
    
    /* Lightbox mobile adjustments */
    .lightbox-content {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-info {
        bottom: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .lightbox-date {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .party-slider-container {
        height: 250px;
    }
    
    .party-slide {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .slide-overlay {
        padding: 0.75rem 0.5rem 0.5rem;
    }
    
    .party-date {
        font-size: 0.75rem;
    }
    
    .lightbox-trigger {
        width: 28px;
        height: 28px;
    }
    
    .lightbox-trigger svg {
        width: 18px;
        height: 18px;
    }
    
    .party-slider-prev, 
    .party-slider-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .party-slider-dots {
        margin-top: 1rem;
    }
    
    .party-slider-dot {
        width: 10px;
        height: 10px;
    }
}

.no-party-images {
    text-align: center;
    padding: 3rem 0;
}

.no-party-images p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hero Event Section */
.hero-event-section {
    width: 100%;
    margin-bottom: 1.5rem;
}

.hero-event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hero Events Container */
.hero-events-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Hero Events CTA */
.hero-events-cta {
    text-align: center;
    margin-top: 1rem;
}

.all-events-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.all-events-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-event-card .event-title {
    font-size: 1.3rem;
}

.hero-event-card .event-content {
    padding: 1.5rem;
}

.hero-event-card .event-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero-event-card .event-date {
    font-size: 0.9rem;
}

/* Hero Event Tabs */
.hero-event-tabs {
    display: flex;
}

.event-tab {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    padding: 0.5rem 2rem 1rem 0;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.event-tab:hover {
    opacity: 1;
}

.event-tab.active {
    color: #ffffff;
    opacity: 1;
}

.hero-event-content {
    position: relative;
}

.event-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.event-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Coming Soon and No Events Messages */
.coming-soon-message,
.no-events-message {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon-message h3,
.no-events-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-message p,
.no-events-message p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 300px;
}

/* Remove all rounded corners from the website */
*,
*::before,
*::after,
button,
input,
textarea,
select,
.cta-button,
.event-card-modern,
.hero-event-card,
.party-slide,
.party-slider-container,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.lightbox-trigger,
.lightbox-content,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.event-details-card,
.feature,
.value-item,
.highlight,
.testimonial,
.faq-item,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.event-tab,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.event-placeholder,
.event-card-placeholder,
.single-event-header .event-status,
.filter-btn,
.load-more-btn,
.all-events-button,
.gallery-item,
.selected-image,
.remove-image,
.image-order button,
.add-image-btn,
.party-slider-dot::before,
.slider-dot,
.lightbox-trigger svg,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.mobile-menu-toggle .bar,
.mobile-menu-toggle.active .bar:nth-child(1),
.mobile-menu-toggle.active .bar:nth-child(2),
.mobile-menu-toggle.active .bar:nth-child(3),
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-content::before,
.hero-event-card .event-content::after,
.hero-event-card .event-meta::before,
.hero-event-card .event-meta::after,
.hero-event-card .event-date::before,
.hero-event-card .event-date::after,
.hero-event-card .event-status::before,
.hero-event-card .event-status::after,
.hero-event-card .event-title::before,
.hero-event-card .event-title::after,
.hero-event-card .event-placeholder::before,
.hero-event-card .event-placeholder::after,
.hero-event-card .event-background img::before,
.hero-event-card .event-background img::after,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-parent a,
.main-navigation li.current_page_parent a,
.hero-email-section,
.hero-slider,
.hero-slide img,
.slider-prev,
.slider-next,
.slider-dot,
.hero-placeholder,
.hero-event-card .event-status,
.coming-soon-message,
.no-events-message,
.party-slide,
.party-slider-prev,
.party-slider-next,
.party-slider-dot,
.party-slider-dot::before,
.lightbox-modal,
.lightbox-overlay,
.lightbox-content,
.lightbox-image,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-info,
.lightbox-date,
.event-tab,
.hero-coming-soon,
.events-cta .cta-button,
.no-events-newsletter .email-form input[type="email"],
.no-events-newsletter .email-form button,
.event-details-card .cta-button,
.newsletter-form input[type="email"],
.newsletter-form .cta-button,
.email-subscription-form input[type="email"],
.email-submit-btn,
.all-events-button,
.filter-btn,
.load-more-btn,
.about-section,
.features-grid,
.feature,
.community-values,
.values-grid,
.value-item,
.experience-highlights,
.highlights-grid,
.highlight,
.testimonials,
.testimonials-grid,
.testimonial,
.faq-section,
.faq-grid,
.faq-item,
.newsletter-section,
.form-message,
.email-form-message,
.email-form-container,
.hero-event-section,
.hero-events-container,
.hero-events-cta,
.hero-event-tabs,
.hero-event-content,
.event-tab-content,
.coming-soon-message,
.no-events-message,
.hero-coming-soon,
.hero-event-card .event-background,
.hero-event-card .event-overlay,
.hero-event-card .event-content,
.hero-event-card .event-meta,
.hero-event-card .event-date,
.hero-event-card .event-status,
.hero-event-card .event-title,
.hero-event-card .event-placeholder,
.hero-event-card .event-background img,
.hero-event-card .event-background::before,
.hero-event-card .event-background::after,
.hero-event-card .event-overlay::before,
.hero-event-card .event-overlay::after,
.hero-event-card .event-background img::after {
    border-radius: 0 !important;
}

/* Footer Styles */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4,
.footer-section h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.newsletter-signup {
    margin-top: 2rem;
}

.newsletter-signup p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-signup .email-subscription-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-signup .email-subscription-form input[type="email"] {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-signup .email-subscription-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-signup .email-submit-btn {
    padding: 0.8rem 1.2rem;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-signup .email-submit-btn:hover {
    background: transparent;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 0 0;
        margin-top: 3rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .newsletter-signup .email-subscription-form {
        flex-direction: column;
    }
    
    .newsletter-signup .email-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 0 0 0;
    }
    
    .footer-container {
        padding: 0 0.8rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

/* Legal Page Styles */
.legal-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 2rem 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-last-updated {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.legal-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-article {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-article h1,
.legal-article h2,
.legal-article h3,
.legal-article h4,
.legal-article h5,
.legal-article h6 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-article h1 {
    font-size: 1.8rem;
    margin-top: 0;
}

.legal-article h2 {
    font-size: 1.5rem;
}

.legal-article h3 {
    font-size: 1.3rem;
}

.legal-article h4 {
    font-size: 1.1rem;
}

.legal-article p {
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.legal-article strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-article a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-article a:hover {
    color: #cccccc;
}

.legal-article blockquote {
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #cccccc;
}

.legal-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-article th,
.legal-article td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-article th {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 600;
}

.legal-article td {
    color: #cccccc;
}

.legal-footer {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-contact h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-contact p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.legal-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-contact li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.legal-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-contact a:hover {
    color: #cccccc;
}

/* Legal Page Responsive Design */
@media (max-width: 768px) {
    .legal-page {
        padding: 1.5rem 0;
    }
    
    .legal-container {
        padding: 0 1rem;
    }
    
    .legal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-article {
        font-size: 0.95rem;
    }
    
    .legal-article h1 {
        font-size: 1.6rem;
    }
    
    .legal-article h2 {
        font-size: 1.4rem;
    }
    
    .legal-article h3 {
        font-size: 1.2rem;
    }
    
    .legal-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 1rem 0;
    }
    
    .legal-container {
        padding: 0 0.8rem;
    }
    
    .legal-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-article {
        font-size: 0.9rem;
    }
    
    .legal-article h1 {
        font-size: 1.4rem;
    }
    
    .legal-article h2 {
        font-size: 1.3rem;
    }
    
    .legal-article h3 {
        font-size: 1.1rem;
    }
    
    .legal-article ul,
    .legal-article ol {
        padding-left: 1.5rem;
    }
    
    .legal-footer {
        padding: 1rem;
    }
    
    .legal-contact h3 {
        font-size: 1.2rem;
    }
}

/* Events Page Sections */
.events-section {
    margin-bottom: 4rem;
}

.events-section:last-child {
    margin-bottom: 0;
}

.events-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: 1px;
    position: relative;
}

.events-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
}

.upcoming-events .section-title {
    color: #ffffff;
}

.past-events .section-title {
    color: #cccccc;
}

.past-events .section-title::after {
    background: linear-gradient(90deg, #666666, #888888);
}

.past-events .event-card-modern {
    opacity: 0.8;
    filter: grayscale(20%);
}

.past-events .event-card-modern:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive Design for Events Sections */
@media (max-width: 768px) {
    .events-section {
        margin-bottom: 3rem;
    }
    
    .events-section .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .events-section .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
}

@media (max-width: 480px) {
    .events-section {
        margin-bottom: 2.5rem;
    }
    
    .events-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .events-section .section-title::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }
}



/* Video Sections */
.hero-video-section,
.experience-video-section,
.community-video-section {
    padding: 4rem 0;
    background: #0a0a0a;
    position: relative;
}

.hero-video-section {
    padding: 0;
    background: #000;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
}

.hero-video-section .video-container {
    height: 60vh;
    min-height: 400px;
}

.experience-video-section .video-container,
.community-video-section .video-container {
    max-width: 800px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-video,
.experience-video,
.community-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-section .hero-video {
    object-fit: cover;
}

.experience-video-section .experience-video,
.community-video-section .community-video {
    object-fit: contain;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Controls Styling */
video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.7);
}

video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.7);
}

video::-webkit-media-controls-play-button {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0;
}

video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .hero-video-section,
    .experience-video-section,
    .community-video-section {
        padding: 2rem 0;
    }

    .hero-video-section {
        padding: 0;
    }

    .hero-video-section .video-container {
        height: 40vh;
        min-height: 300px;
    }

    .video-content h2 {
        font-size: 1.8rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    .video-section-header h2 {
        font-size: 1.8rem;
    }

    .video-section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-video-section .video-container {
        height: 35vh;
        min-height: 250px;
    }

    .video-content h2 {
        font-size: 1.5rem;
    }

    .video-content p {
        font-size: 0.9rem;
    }

    .video-section-header h2 {
        font-size: 1.5rem;
    }

    .video-section-header p {
        font-size: 0.9rem;
    }
}

/* Video Loading States */
.video-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Video Play Button Overlay */
.video-container:not(.playing) .video-overlay {
    cursor: pointer;
}

.video-container:not(.playing) .video-overlay::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 5;
    transition: all 0.3s ease;
}

.video-container:not(.playing):hover .video-overlay::before {
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .video-container:not(.playing) .video-overlay::before {
        font-size: 3rem;
    }
}


/* Video Error States */
.video-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #1a1a1a;
    color: #cccccc;
    text-align: center;
    border-radius: 0;
}

.video-error p {
    font-size: 1.1rem;
    margin: 0;
    padding: 2rem;
}

/* Video Focus States for Accessibility */
video:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Video Loading Animation */
@keyframes videoPulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.video-container.loading video {
    animation: videoPulse 1.5s ease-in-out infinite;
}


/* Video Brightness Fixes */
.video-container {
    background: #000;
}

.hero-video,
.experience-video,
.community-video {
    filter: brightness(1.1) contrast(1.05);
}

/* Reduce overlay opacity even more for better visibility */
.video-overlay {
}

/* Make video controls more visible */
video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.5);
}

video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Ensure videos are not darkened by any filters */
.video-container video {
    filter: none;
}

/* Remove any dark backgrounds that might affect video visibility */
.hero-video-section,
.experience-video-section,
.community-video-section {
    background: transparent;
}

.hero-video-section .video-container,
.experience-video-section .video-container,
.community-video-section .video-container {
    background: #000;
}


/* Video Brightness Fixes - Part 2 */
.video-container video {
    filter: none;
}

/* Remove any dark backgrounds that might affect video visibility */
.hero-video-section,
.experience-video-section,
.community-video-section {
    background: transparent;
}

.hero-video-section .video-container,
.experience-video-section .video-container,
.community-video-section .video-container {
    background: #000;
}

/* Ensure video content is visible */
.video-content h2,
.video-content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

/* Make play button more visible */
.video-container:not(.playing) .video-overlay::before {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
}


/* Fix Video Loading Spinner */
.video-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
    display: block;
}

.video-container:not(.loading)::before {
}

/* Ensure loading class is properly removed */
.video-container.loaded::before {
}

/* Hide spinner when video is playing */
.video-container.playing::before {
}

/* Remove any conflicting loading animations */
.video-container video {
}

.video-container.loading video {
}


/* Fix Video Loading Spinner - Part 2 */
.video-container:not(.loading)::before {
    display: none;
}

/* Ensure loading class is properly removed */
.video-container.loaded::before {
    display: none;
}

/* Hide spinner when video is playing */
.video-container.playing::before {
    display: none;
}

/* Remove any conflicting loading animations */
.video-container video {
    animation: none;
}

.video-container.loading video {
    animation: none;
}

/* Remove the videoPulse animation that might be causing issues */
@keyframes videoPulse {
    0% { opacity: 1; }
    50% { opacity: 1; }
    100% { opacity: 1; }
}


/* Fix Video Text Overlay Visibility */
.video-overlay {
    pointer-events: none;
}

.video-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 80%;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-content p {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Make hero video overlay less intrusive */
.hero-video-section .video-overlay {
}

.hero-video-section .video-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    max-width: 70%;
}

/* Position text better on hero video */
.hero-video-section .video-overlay {
    align-items: flex-end;
    padding-bottom: 3rem;
}

/* Make text more readable with better contrast */
.video-content h2,
.video-content p {
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
}


/* Fix Video Text Overlay Visibility - Part 2 */
.video-overlay {
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.video-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 80%;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-content p {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Make hero video overlay less intrusive */
.hero-video-section .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.hero-video-section .video-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    max-width: 70%;
}

/* Position text better on hero video */
.hero-video-section .video-overlay {
    align-items: flex-end;
    padding-bottom: 3rem;
}

/* Make text more readable with better contrast */
.video-content h2,
.video-content p {
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for video text */
@media (max-width: 768px) {
    .video-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .video-content h2 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
    
    .hero-video-section .video-overlay {
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .video-content {
        padding: 1rem;
        max-width: 95%;
    }
    
    .video-content h2 {
        font-size: 1.3rem;
    }
    
    .video-content p {
        font-size: 0.8rem;
    }
}


/* Clean Video Styles - Fix Video Issues */
.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
}

.hero-video-section .video-container {
    height: 60vh;
    min-height: 400px;
}

.experience-video-section .video-container,
.community-video-section .video-container {
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-video,
.experience-video,
.community-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    filter: brightness(1.1) contrast(1.05);
}

.hero-video-section .hero-video {
    object-fit: cover;
}

.experience-video-section .experience-video,
.community-video-section .community-video {
    object-fit: contain;
    background: #000;
}

/* Video Loading States */
.video-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

.video-container.loaded::before,
.video-container.playing::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    pointer-events: none;
}

.video-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 80%;
    margin: 0 auto;
    pointer-events: auto;
}

.video-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-content p {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Video Section Headers */
.video-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Controls */
video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.7);
}

video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.7);
}

video::-webkit-media-controls-play-button {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0;
}

video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Video Error State */
.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 0;
}

.video-error p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .hero-video-section,
    .experience-video-section,
    .community-video-section {
        padding: 2rem 0;
    }

    .hero-video-section {
        padding: 0;
    }

    .hero-video-section .video-container {
        height: 40vh;
        min-height: 300px;
    }

    .video-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .video-content h2 {
        font-size: 1.5rem;
    }

    .video-content p {
        font-size: 0.9rem;
    }

    .video-section-header h2 {
        font-size: 1.8rem;
    }

    .video-section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-video-section .video-container {
        height: 35vh;
        min-height: 250px;
    }

    .video-content {
        padding: 1rem;
        max-width: 95%;
    }

    .video-content h2 {
        font-size: 1.3rem;
    }

    .video-content p {
        font-size: 0.8rem;
    }

    .video-section-header h2 {
        font-size: 1.5rem;
    }

    .video-section-header p {
        font-size: 0.9rem;
    }
}


/* Hero Video Controls Styling */
.hero-video-section video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
}

.hero-video-section video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
}

.hero-video-section video::-webkit-media-controls-play-button {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
}

.hero-video-section video::-webkit-media-controls-play-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-video-section video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

.hero-video-section video::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

.hero-video-section video::-webkit-media-controls-mute-button {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
}

.hero-video-section video::-webkit-media-controls-mute-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Ensure video controls are visible on hero video */
.hero-video-section .video-container {
    position: relative;
}

.hero-video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make sure controls don't interfere with overlay */
.hero-video-section .video-overlay {
    pointer-events: none;
    z-index: 1;
}

.hero-video-section .video-content {
    pointer-events: auto;
    z-index: 2;
}

/* Responsive video controls */
@media (max-width: 768px) {
    .hero-video-section video::-webkit-media-controls {
        background-color: rgba(0, 0, 0, 0.9);
    }
    
    .hero-video-section video::-webkit-media-controls-panel {
        background-color: rgba(0, 0, 0, 0.9);
    }
}


/* Video Warning Messages */
.video-warning {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    z-index: 20;
    text-align: center;
}

.video-warning p {
    margin: 0;
    font-weight: 600;
}

.video-warning strong {
    color: #856404;
}

/* Enhanced Video Error Styling */
.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(220, 53, 69, 0.9);
    padding: 2rem;
    border-radius: 0;
    max-width: 80%;
    z-index: 20;
}

.video-error p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.video-error p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-error strong {
    color: #ffffff;
    font-weight: 700;
}

/* Video Format Support Indicators */
.video-format-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 0;
    font-size: 0.8rem;
    z-index: 15;
}

/* Ensure videos are properly visible */
.video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Fix for video not showing */
.video-container video[src=''] {
    display: none;
}

.video-container:not(.loading):not(.loaded) video {
    opacity: 0;
}

.video-container.loaded video {
    opacity: 1;
    transition: opacity 0.3s ease;
}
