/* =========================================================
   RESET / GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: #13151b;
    color: #fff;
    overflow-x: hidden;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

.whiteBack {
    background-color: #fff;
    color: #13151b;
}

a:hover {
    color: #999;
    text-decoration: none;
}

ul {
    margin-bottom: 0;
}

section {
    padding-top: 50px;
}

.row {
    text-align: left;
}

.row.align-items-center {
    position: relative;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
}

h2 {
    font-size: 40px;
}

h2 span {
    color: #49e7f1;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.left {
    text-align: left;
}

strong {
    font-weight: 800;
}

.highlight {
    color: #ffcc00;
}

p a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}

p a::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 2px;
    left: 5%;
    bottom: -1px;
    background-color: #ac3fb9;
    transition: all 0.3s ease-in-out;
}

p a:hover::after,
p a:focus::after {
    width: 100%;
    left: 0;
}

/* =========================================================
   ANIMATIONS
========================================================= */

.Fade_content {
    opacity: 0;
    transition: opacity 3s;
    animation: fadeEffect 4.5s ease-in-out;
}

.fade-in {
    opacity: 1 !important;
}

.slide-in {
    opacity: 0;
    transform: translateX(-25px);
    transition: all 1s ease-out;
    animation: slideInEffect 1s ease-out;
}

.on-screen {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInEffect {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* =========================================================
   HEADER / NAVBAR
========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    transition: transform 0.3s ease;
}

header.scrolled {
    transform: translateY(-100%);
}

header.visible {
    transform: translateY(0);
}

.logo img {
    width: 121px;
    height: 121px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-brand img {
    width: 150px;
    height: 127px;
}

.nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin-left: 10px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a,
.navbar-nav .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 0.51px;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    color: #f7882f;
    text-decoration: none;
}

/* Underline animation for standard nav links */
.navbar-nav .nav-link:not(.contact-link):not(.small):not(.dropdown-item) {
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link:not(.contact-link):not(.small):not(.dropdown-item)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #49e7f1, #fb43fb);
    transition: width 0.35s ease;
}

.navbar-nav .nav-link:not(.contact-link):not(.small):not(.dropdown-item):hover::before,
.navbar-nav .nav-link:not(.contact-link):not(.small):not(.dropdown-item):focus::before {
    width: 100%;
}

/* CTA */
nav ul li a.contact-link {
    align-items: center;
    color: #fff;
    border-radius: 10px;
    text-transform: uppercase;
}

.cta-btn {
    display: inline-block;
    background: #ac3fb9;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    text-transform: uppercase;
    transition: background 1s, border-radius 1s, border-color 1s, transform 1s;
}

.cta-btn:hover,
.cta-btn:focus {
    background: transparent;
    border-radius: 0;
    border-color: #f93efa;
    transform: translateY(-4px);
    color: #fff;
}

.navbar-toggler.toggled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 4l22 22m0-22L4 26'/%3E%3C/svg%3E");
}

/* Dropdown parent */
.navbar-nav .nav-item.dropdown {
    position: relative;
}

/* Keep dropdown text + caret on one line */
.navbar-nav .dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Caret */
.navbar-nav .dropdown-toggle::after {
    content: "";
    display: inline-block !important;
    flex: 0 0 auto;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #fff;
    border-bottom: 0;
    position: static;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
}

/* Rotate caret when open */
.navbar-nav .show > .dropdown-toggle::after,
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Dropdown panel */
.navbar .dropdown-menu {
    background: rgba(0,0,0,0.94);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    padding: 10px 0;
    min-width: 240px;
    margin-top: 8px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}

/* Dropdown items */
.navbar .dropdown-item {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    padding: 12px 18px;
    transition: background 0.25s ease, color 0.25s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(255,255,255,0.08);
    color: #49e7f1;
    text-decoration: none;
}

/* Remove highlighted box from open dropdown parent */
.navbar .show > .dropdown-toggle {
    background: transparent;
    box-shadow: none;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero.image-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(38, 38, 38, 0), rgba(53, 73, 73, 0));
    z-index: 1;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    position: relative;
    font-size: 80px;
    font-style: normal;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content h4 {
    text-align: center;
}

.big-logo {
    width: 70vh;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image {
    background-size: cover;
    background-position: center;
}

/* =========================================================
   SEPARATORS
========================================================= */

.separator {
    position: relative;
    width: 100%;
    z-index: 2;
    border-right: 100vw solid transparent;
    border-bottom: 13.9vw solid #13151b;
    margin-top: -13.8vw;
}

.separatorAbout {
    position: relative;
    width: 100%;
    z-index: 2;
    border-left: 100vw solid transparent;
    border-bottom: 13.9vw solid #fff;
    margin-top: -120px;
}

.separatorAboutRev {
    position: relative;
    top: -100px;
    width: 100%;
    z-index: 2;
    border-left: 100vw solid transparent;
    border-top: 10vw solid #fff;
    margin-top: 100px;
}

/* =========================================================
   ABOUT / TRUST / REVIEWS
========================================================= */

.about {
    text-align: center;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.about .row.text-center.mt-4 > div[class*="col-"] {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    border-radius: 18px;
    padding: 34px 28px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about .row.text-center.mt-4 > div[class*="col-"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(0,0,0,0.45);
}

.about .row.text-center.mt-4 > div[class*="col-"]::before {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin: 0 auto 18px auto;
    border-radius: 999px;
    background: linear-gradient(90deg, #49e7f1, #ac3fb9);
}

.about .row.text-center.mt-4 h3 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 1.7rem;
}

.about .row.text-center.mt-4 p {
    color: #cfd5df;
}

.about .row.mt-4:not(.text-center) > div[class*="col-"] {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    border-radius: 18px;
    padding: 34px 28px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about .row.mt-4:not(.text-center) > div[class*="col-"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(0,0,0,0.45);
}

.about .row.mt-4:not(.text-center) > div[class*="col-"]::before {
    content: "“";
    display: block;
    font-family: Georgia, serif;
    font-size: 3.2rem;
    line-height: 1;
    color: #ac3fb9;
    margin-bottom: 10px;
}

.about .row.mt-4:not(.text-center) strong {
    color: #ffffff;
}

.about .row.mt-4:not(.text-center) p {
    color: #cfd5df;
}

.shift {
    margin-top: 0;
}
/* Testimonials page only */
        .testimonials-section {
            position: relative;
            z-index: 10;
            padding: 20px 0 80px;
        }

        .testimonials-intro {
            max-width: 760px;
            margin: 0 auto 40px auto;
            text-align: center;
        }

        .testimonials-intro h2 {
            text-align: center;
            margin-bottom: 15px;
        }

        .testimonials-intro p {
            color: #cfd5df;
            line-height: 1.8;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 18px 40px rgba(0,0,0,0.35);
            border-radius: 20px;
            padding: 34px 30px 28px;
            height: 100%;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 26px 55px rgba(0,0,0,0.45);
        }

        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #49e7f1, #ac3fb9);
        }

        .testimonial-quote-mark {
            font-family: Georgia, serif;
            font-size: 4rem;
            line-height: 1;
            color: #ac3fb9;
            margin-bottom: 10px;
        }

        .testimonial-text {
            color: #cfd5df;
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .testimonial-meta {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 18px;
        }

        .testimonial-name {
            font-family: "Montserrat", sans-serif;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -1px;
            color: #fff;
            margin-bottom: 4px;
            font-size: 1.1rem;
        }

        .testimonial-event {
            color: #49e7f1;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.04em;
            margin-bottom: 6px;
        }

        .testimonial-location {
            color: #9ea7b5;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .testimonial-row > div {
            margin-bottom: 30px;
        }

/* =========================================================
   LOCATIONS
========================================================= */

.locations-section {
    background: #ffffff;
    color: #13151b;
    padding: 70px 0;
    text-align: center;
}

.locations-section a {
    color: #4d5563;
    text-decoration: none;
    font-weight: 600;
}

.locations-section h2 {
    text-align: center;
}

.locations-section p {
    max-width: 760px;
    margin: 0 auto 18px auto;
    color: #4d5563;
    line-height: 1.75;
}

/* =========================================================
   LIVE SECTIONS / CARDS
========================================================= */

.live {
    text-align: center;
    padding: 75px 0 70px 0;
    z-index: 10;
    position: relative;
    overflow: hidden;
    color: #13151b;
    background:
        radial-gradient(circle at 50% 0%, rgba(73,231,241,0.10), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(172,63,185,0.06), transparent 22%),
        linear-gradient(180deg, #f5f6fa 0%, #eceff4 100%);
}
.live p a {
	color: #000;
}

.liveReverse {
    background-color: #fff;
    color: #13151b;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
}

.live h2 {
    text-align: center;
    margin-bottom: 12px;
}

.live .section-intro {
    max-width: 720px;
    margin: 0 auto 38px auto;
    color: #4f5766;
    line-height: 1.75;
    font-size: 1.05rem;
}

.live .section-divider {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #49e7f1 0%, #ac3fb9 100%);
    margin: 16px auto 22px auto;
    border-radius: 999px;
}

.live .row.mt-5 {
    margin-top: 2.5rem !important;
}

.live .card,
.live .djlive-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(19,21,27,0.07);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    box-shadow: 0 18px 44px rgba(20,24,35,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live .card:hover,
.live .djlive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 58px rgba(20,24,35,0.18);
}

.live .card-body,
.live .djlive-card .card-body {
    padding: 30px 30px 32px;
    text-align: left;
}

.live .card-body::before,
.live .djlive-card .card-body::before {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #49e7f1 0%, #ac3fb9 100%);
    margin-bottom: 18px;
}

.live .card h3,
.live .djlive-card h3 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1;
    color: #13151b;
}

.live .card p,
.live .djlive-card p {
    margin-bottom: 18px;
    color: #555f6f;
    line-height: 1.75;
}

/* =========================================================
   VIDEO WRAPPER
========================================================= */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    background: #10131a;
    border-bottom: 1px solid #e9e9e9;
}

.videoWrapper iframe,
.videoWrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.live .videoWrapper::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #49e7f1 0%, #ac3fb9 100%);
    z-index: 2;
}

/* =========================================================
   BUTTONS IN LIGHT SECTIONS
========================================================= */

.live .cta-btn,
.live-extras .cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ac3fb9 0%, #de4cc8 100%);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 13px 22px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    box-shadow: 0 10px 24px rgba(172,63,185,0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.live .cta-btn:hover,
.live .cta-btn:focus,
.live-extras .cta-btn:hover,
.live-extras .cta-btn:focus {
    background: linear-gradient(135deg, #b548c3 0%, #f05bcf 100%);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(172,63,185,0.28);
}

/* =========================================================
   LIVE EXTRAS
========================================================= */

.live-extras {
    background:
        radial-gradient(circle at top center, rgba(73,231,241,0.06), transparent 32%),
        linear-gradient(180deg, #f3f4f7 0%, #eceef2 100%);
    color: #13151b;
    text-align: center;
    padding: 78px 0 70px;
    position: relative;
    z-index: 10;
}

.live-extras h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.live-extras h2 span {
    color: #49e7f1;
}

.live-extras .live-intro {
    max-width: 720px;
    margin: 0 auto 38px auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4f5766;
}

.extra-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(20,24,35,0.10);
    border: 1px solid rgba(19,21,27,0.06);
    height: 100%;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.extra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 58px rgba(20,24,35,0.16);
}

.extra-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #10131a;
    border-bottom: 1px solid #e9e9e9;
}

.extra-card-media::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #49e7f1 0%, #ac3fb9 100%);
}

.extra-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.extra-card-body {
    padding: 30px 30px 32px;
}

.extra-card-body::before {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #49e7f1 0%, #ac3fb9 100%);
    margin-bottom: 18px;
}

.extra-card-body h3 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #13151b;
    line-height: 1;
}

.extra-card-body h3 span {
    color: #49e7f1;
}

.extra-card-body p {
    color: #555f6f;
    line-height: 1.75;
    margin-bottom: 22px;
}

/* =========================================================
   GALLERY
========================================================= */

.gallery {
    text-align: center;
    padding: 50px 0;
}

.gallery-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-images img {
    width: 200px;
    margin: 10px;
}

/* =========================================================
   SERVICES
========================================================= */

.services {
    text-align: center;
    padding-bottom: 120px;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-item a {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.overlay {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.overlay img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    transform-origin: center center;
}

.overlay h2 {
    position: absolute;
    z-index: 2;
    color: white;
    text-align: center;
    transition: color 0.3s ease;
}

.service-item:hover .overlay::before {
    opacity: 0;
}

.service-item:hover img {
    transform: scale(1.1);
}

/* =========================================================
   BLOG
========================================================= */

.blog-posts .bloghome .btn:not(:disabled):not(.disabled):hover,
.blog-posts .bloghome .btn:not(:disabled):not(.disabled):focus {
    color: #fff !important;
}

.blog-posts .container {
    max-width: 1200px;
}

.bloghome {
    margin-bottom: 30px;
}

.bloghome a {
    text-decoration: none;
}

.bloghome img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.bloghome h4 {
    color: #999;
    margin-top: 15px;
}

.bloghome p {
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background-color: #fff;
    color: #13151b;
    padding: 40px 0;
}

.faq-section .card {
    border: none;
}

.faq-section .card-header {
    background-color: #fff;
    border-bottom: none;
}

.faq-section .card-header .btn {
    text-align: left;
    width: 100%;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.faq-section .card-header .btn:hover,
.faq-section .card-header .btn:focus {
    text-decoration: none;
}

.faq-section .card-body {
    border-top: 1px solid #eee;
}

.toggle-icon {
    float: right;
}

.faq-section .collapse.show .toggle-icon {
    display: none;
}

/* =========================================================
   PRE FOOTER / FOOTER
========================================================= */

.pre-footer {
    background-color: #192628;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.pre-footer .row {
    text-align: center;
}

.pre-footer h4 {
    margin-bottom: 15px;
    color: #f1f1f1;
}

.pre-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pre-footer ul li {
    padding: 5px 0;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #192628;
    color: #fff;
}

footer a {
    color: #fff;
    transition: color 0.3s ease-in-out;
    font-size: 0.9rem;
}

footer a:hover {
    color: #f93efa;
    text-decoration: none;
}

footer ul li i {
    margin-right: 8px;
    font-size: 1.2rem;
}

footer p {
    color: #fff;
    font-size: 0.9rem;
}

footer .list-unstyled {
    padding-left: 0;
    text-align: center;
}

footer .list-unstyled li {
    display: block;
    margin: 0 5px;
}

/* =========================================================
   ACTS GRID
========================================================= */

.acts-grid-container {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.acts-grid-container.show {
    display: block;
}

.acts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.acts-grid-item {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.acts-grid-item img {
    width: 100%;
    height: auto;
}

#acts-link:hover + .acts-grid-container {
    display: block;
}

/* =========================================================
   SEARCH / PARALLAX / VIDEO GRID
========================================================= */

.searchText h2 {
    text-align: center;
}

.parallax-section {
    position: relative;
    height: 50vh;
    background-image: url('media/images/dj3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.acoustic {
    background-image: url('media/images/guitar1.jpg');
}

.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    font-size: 48px;
    width: 90%;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.video-grid-section {
    padding: 40px 0;
}

.video-grid-section .text-center {
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.video-item {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.video-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 60px 0;
    background: #1a1c23;
    color: #fff;
}

.contact-section h2 {
    margin-bottom: 40px;
    font-size: 36px;
    text-align: center;
}

.contact-section p {
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
}

.contact-section form {
    display: flex;
    flex-direction: column;
}

.contact-section form label {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-section form input,
.contact-section form textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #2a2c33;
    color: #fff;
}

.contact-section form input:focus,
.contact-section form textarea:focus {
    border-color: #49e7f1;
    outline: none;
}

.contact-section form button {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    background: #49e7f1;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-section form button:hover {
    background: #3a9ecb;
}

.contact-section .social-media {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-section .social-media li {
    list-style: none;
    margin: 0 10px;
}

.contact-section .social-media a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.contact-section .social-media a:hover {
    color: #49e7f1;
}

/* =========================================================
   MEDIA QUERIES
========================================================= */

@media (min-width: 768px) {
    .service-item:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: .3rem;
    }

    /* Desktop: dropdown opens only when Bootstrap adds .show after click */
    .navbar .dropdown-menu {
        display: none;
    }

    .navbar .dropdown.show > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown.show > .dropdown-toggle::after,
    .navbar .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 1199px) {
    .big-logo {
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
	.testimonials-section {
                padding: 10px 0 60px;
            }

            .testimonial-card {
                padding: 28px 22px 24px;
            }
}

@media (max-width: 991px) {
    header.scrolled {
        transform: none;
    }

    .about {
        margin-top: -2rem;
        margin-bottom: 4rem;
        z-index: 10;
    }

    .live {
        padding: 55px 0;
        z-index: 10;
    }

    nav ul li:first-child {
        margin-left: 10px;
    }

    .navbar-collapse {
        justify-content: center;
        text-align: center;
    }

    .navbar-collapse.show {
        background: rgba(0, 0, 0, 0.90);
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
    }

    .navbar-nav .nav-link,
    .navbar-nav .dropdown-toggle {
        width: 100%;
        justify-content: center !important;
        text-align: center !important;
        padding: 10px 0;
    }

    .navbar-collapse.show .nav-item .cta-btn,
    .navbar-collapse.show .nav-item .contact-link {
        width: fit-content;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-toggler {
        margin-right: 30px;
    }

    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        margin-left: -15px;
        margin-right: -15px;
    }

    /* === MOBILE DROPDOWN IMPROVED === */
    .navbar .dropdown-menu {
        background: rgba(255,255,255,0.12); /* lighter + softer */
        border: none;
        box-shadow: none;
        margin-top: 8px;
        min-width: auto;
        text-align: center;
        padding: 10px 6px;
        border-radius: 10px;
    }

    .navbar .dropdown-item {
        display: block;
        padding: 12px 16px;
        font-size: 14px;
        margin: 6px 0; /* spacing between items */
        border-radius: 6px;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: rgba(255,255,255,0.15);
    }

    .navbar .show > .dropdown-toggle {
        background: transparent;
        box-shadow: none;
    }

    .navbar .dropdown-menu,
    .navbar .dropdown-item {
        text-align: center !important;
    }

    .separatorAbout {
        width: 100%;
        z-index: 2;
        border-left: 100vw solid transparent;
        border-bottom: 13.9vw solid #fff;
    }
}

@media (max-width: 768px) {
    .contact-section .col-md-8 {
        margin-bottom: 60px;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content h4 {
        font-size: 1rem;
    }
}