.elementor-1169 .elementor-element.elementor-element-6dd9474{--display:flex;}.elementor-1169 .elementor-element.elementor-element-3b6e5e6{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS *//* GLOBAL */
.event-landing {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #06080b;
}
h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    text-shadow: 0 0 15px #00eaff;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    padding: 18px 40px;
    background: rgba(0,0,0,0.55);
    position: sticky;
    top: 0; z-index: 999;
    backdrop-filter: blur(10px);
}
.logo {
    font-size: 26px;
    font-weight: 700;
    color: #00f6ff;
    text-shadow: 0 0 12px #00f6ff;
}
.header nav a {
    margin-left: 25px;
    font-weight: 600;
    color: #fff;
}
.header nav a:hover {
    color: #00f6ff;
}

/* HERO */
.hero-sec {
    height: 92vh;
    background: url('https://images.unsplash.com/photo-1447752875215-b2761acb3c5d?auto=format&w=1900') center/cover;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.hero-sec::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
}
.hero-content {
    z-index: 2;
    text-align: center;
}
.hero-content h1 {
    font-size: 55px;
    text-shadow: 0 0 25px #00eaff;
}
.sub {
    font-size: 22px;
    margin: 15px 0 25px;
}

/* BUTTONS */
.big-btn, .big-btn-outline {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}
.big-btn {
    background: #00f6ff;
    color: #000;
    box-shadow: 0 0 20px #00f6ff;
}
.big-btn-outline {
    border: 2px solid #00f6ff;
    color: #fff;
}
.big-btn-outline:hover {
    background: #00f6ff;
    color: #000;
}

/* ABOUT */
.about-sec {
    display: flex;
    padding: 100px 7%;
    gap: 60px;
}
.about-left { flex: 1; }
.about-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 25px #00eaff66;
}
.about-sec ul li {
    margin: 10px 0;
    font-size: 18px;
}

/* ARTISTS */
.artists-sec {
    display: flex;
    padding: 100px 7%;
    gap: 60px;
    background: #0d0f14;
}
.artists-left img {
    width: 100%;
    border-radius: 13px;
}
.artist-card {
    background: #101418;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #00eaff;
    box-shadow: 0 0 12px #00eaff55;
}

/* MENU */
.menu-sec {
    padding: 100px 7%;
    background: url('https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?auto=format&w=1900') center/cover;
    position: relative;
}
.menu-sec::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.65);
}
.menu-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 30px;
}
.menu-card {
    background: #101418;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #00eaff55;
    box-shadow: 0 0 20px #00eaff33;
}
.menu-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    border: 2px solid #00eaff;
    color: #00eaff;
    border-radius: 8px;
    transition: 0.3s;
}
.menu-btn:hover {
    background: #00eaff;
    color: #000;
}

/* TICKETS */
.tickets-sec {
    padding: 100px 7%;
    background: linear-gradient(135deg, #071118, #001822);
}
.ticket-wrap {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.ticket-box {
    background: #101418;
    padding: 35px;
    text-align: center;
    border-radius: 12px;
    max-width: 320px;
    border: 1px solid #00eaff55;
}
.ticket-box.vip {
    background: #00eaff11;
    border: 2px solid #00eaff;
}

/* CONTACT */
.contact-sec {
    padding: 100px 7%;
}
.contact-form {
    max-width: 600px;
    margin: auto;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #0d0f14;
    border: 1px solid #00eaff55;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #fff;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    background: #000;
    margin-top: 40px;
}

/****************************
 MOBILE HEADER FIX
*****************************/
@media (max-width: 768px) {

    /* Make header vertical */
    .header, .lux-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }

    .header nav a,
    .lux-header nav a {
        margin: 0 12px;
        display: inline-block;
    }

    .logo, .lux-logo {
        margin-bottom: 5px;
    }
}

/****************************
 HERO TEXT FIX
*****************************/
@media (max-width: 768px) {
    .hero-content h1,
    .lux-title {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .hero-content {
        padding: 0 20px;
    }
}

/****************************
 BUTTON FIX (OVERLAPPING)
*****************************/
@media (max-width: 768px) {
    .btn, .btn-outline,
    .big-btn, .big-btn-outline,
    .menu-btn, .lux-menu-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 18px !important;
        display: block !important;
        margin: 10px auto !important;
    }

    /* Ticket buttons specifically */
    .ticket-box a,
    .lux-ticket-card a {
        width: 100% !important;
        margin-top: 15px !important;
    }
}

/****************************
 FIX LEFT/RIGHT SECTIONS GAP
*****************************/
@media (max-width: 768px) {

    /* About Section */
    .about-sec,
    .lux-theme,
    .artists-sec,
    .lux-artists,
    .theme-row {
        display: block !important;
        padding: 60px 20px !important;
    }

    .about-right img,
    .artists-left img,
    .theme-right img {
        width: 100% !important;
        margin-top: 20px !important;
    }

    .about-left,
    .artists-right,
    .theme-left {
        width: 100% !important;
        padding: 0 !important;
    }
}

/****************************
 FIX TICKETS OVERFLOW & ALIGNMENT
*****************************/
@media (max-width: 768px) {

    .ticket-wrap,
    .lux-ticket-row {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }

    .ticket-box,
    .lux-ticket-card {
        width: 100% !important;
        margin: auto !important;
    }
}

/****************************
 GENERAL MOBILE CLEANUP
*****************************/
@media (max-width: 768px) {

    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .menu-grid,
    .lux-menu-grid {
        grid-template-columns: 1fr !important;
    }

    .artist-cards {
        grid-template-columns: 1fr !important;
    }

    /* Remove side gaps */
    .event-landing,
    .luxury-event {
        overflow-x: hidden !important;
    }
}/* End custom CSS */