.section {
    padding-top: 120px;
    position: relative;
    width: 100vw;
    /* background-color: #0a0a1a; */

}

.section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(ellipse at 30% 20%, #8b0000 0%, transparent 50%), radial-gradient(ellipse at 75% 15%, #130872 0%, transparent 45%), radial-gradient(ellipse at 85% 25%, #1565c0 0%, transparent 40%), radial-gradient(ellipse at 15% 80%, #0d2f6e 0%, transparent 45%), radial-gradient(ellipse at 80% 85%, #8b0000 0%, transparent 50%), radial-gradient(ellipse at 50% 55%, #1a0a2e 0%, transparent 60%);
    transform: rotate(0deg) scale(1.5);
    inset: -25%;
}


.vinyl-clip {
    position: absolute;
    inset: 0;
    /* overflow: hidden; */
    pointer-events: none;
    top: 130px;
}

/* wrapper handles centering, never animated */
.vinyl-wrapper {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    aspect-ratio: 1 / 1;
    pointer-events: none;
}

.vinyl {
    width: 100%;
    height: 100%;
    opacity: 0.25;
    mix-blend-mode: overlay;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 5s linear infinite;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.03),
        inset 0 0 60px rgba(0, 0, 0, 0.8);
}

/* Groove rings via pseudo + box-shadow trick */
.vinyl::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);

}

/* Sheen sweep — makes light look like it catches the groove */
.vinyl::after {
    /* content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 8%,
            transparent 15%,
            rgba(255, 255, 255, 0.02) 30%,
            transparent 40%,
            rgba(255, 255, 255, 0.05) 55%,
            transparent 65%,
            rgba(255, 255, 255, 0.02) 80%,
            transparent 100%); */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image:
        radial-gradient(circle at 75% 35%, #00FFED 0%, transparent 45%),
        radial-gradient(circle at 15% 10%, #D33C43 0%, transparent 45%),
        radial-gradient(circle at 45% 55%, #CE0AFF 0%, transparent 45%);
    filter: blur(40px);
    mix-blend-mode: hard-light;
    opacity: 0.6;
    pointer-events: none;
}

.vinyl__label {
    position: relative;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl__ring {
    position: absolute;
    width: 44%;
    height: 44%;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl__hole {
    width: 46%;
    height: 46%;
    border-radius: 50%;
    background: white;
}

.vinyl__arm {
    position: absolute;
    bottom: 22%;
    left: 14%;
    width: 3px;
    height: 22%;
    background: linear-gradient(to top, #555, #999);
    transform-origin: bottom center;
    transform: rotate(35deg);
}

.vinyl__arm-head {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #222;
    border-radius: 2px;
}

.vinyl__arm-img {
    position: absolute;
    bottom: 25%;
    left: 10%;
    pointer-events: none;
}

/* Nav: absolute overlay initially, becomes fixed when scrolled */
#site-nav {
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3) !important;
    z-index: 50;
}

/* When user scrolls, make the nav fixed/sticky and apply scrolled styles */
#site-nav.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
}

#site-nav.scrolled #nav-inner {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Prevent nested selector issues for img sizing */
#site-nav #nav-inner img {
    transition: width 0.3s ease;
}

#site-nav.scrolled #nav-inner img {
    width: 75%;
}

/* Back-to-top fixed button */
.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 640px) {

    .back-to-top {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    #enquire-btn {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .section {
        padding-top: 90px;
    }

    .vinyl-wrapper {
        top: 0;
    }
}

@media (max-width: 1023px) {
    .vinyl-wrapper {
        top: 0;
    }
}

/* When anchored to contact container (prevent overlapping footer) */
.back-to-top.at-contact {
    position: absolute !important;
    right: 1rem;
    bottom: -77px
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 104px;
    /* place under navbar */
    left: 0;
    width: 100%;
    z-index: 9999;
    /* ensure it appears above the navbar (z-50) */
}

#site-nav.scrolled+.mobile-menu {
    top: 80px;
}

.mobile-menu .menu-inner {
    background: rgba(0, 0, 0, 0.9);
}

.mobile-menu a {
    color: white;
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dj-section {
    position: absolute;
    right: 0;
    bottom: 117px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
}

.gallery-left-sec {
    height: 392px;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 15px;

    button {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;

        &.active {
            background: #fff;
        }
    }
}

.gallery-left-sec::-webkit-scrollbar {
    width: 8px;
}

.gallery-left-sec::-webkit-scrollbar-track {
    background: rgba(245, 245, 245, 0.4);
    border-radius: 10px;
}

.gallery-left-sec::-webkit-scrollbar-thumb {
    background: #F5F5F5;
    border-radius: 999px;
}

.section-two {
    position: relative;
    width: 100vw;
    overflow: hidden;
    background-color: #07060f;
    background-image:
        radial-gradient(ellipse at 0% 0%, #101b33 0%, transparent 45%), radial-gradient(ellipse at 100% 0%, #280a0c 0%, transparent 45%), radial-gradient(ellipse at 50% 0%, #140707 0%, transparent 50%), radial-gradient(ellipse at 50% 100%, #150707 0%, transparent 60%);
}

/* dot grid */
.section-two::before,
.bg-dots-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 2px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* make sure your content sits above both pseudo-elements */
.section-two>* {
    position: relative;
    z-index: 2;
}

.packages-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #07060f;
    background-image:
        radial-gradient(ellipse at 0% 0%, #1a3a8f 0%, transparent 45%),
        radial-gradient(ellipse at 100% 0%, #7b1a2e 0%, transparent 45%),
        radial-gradient(ellipse at 50% 0%, #4a1a7a 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, #0a0408 0%, transparent 60%);
}

.packages-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.packages-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, #07060f 100%);
    pointer-events: none;
    z-index: 1;
}

.packages-content {
    position: relative;
    z-index: 2;
}

.card-basic,
.card-standard,
.card-premium {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(120, 90, 200, 0.25);
    backdrop-filter: blur(178.1999969482422px);
    background-color: rgba(38, 38, 38, 1);
}

.card-basic {
    background-image: url('../images/basic.svg');
}

.card-standard {
    background-image: url('../images/standard.svg');
}

.card-premium {
    background-image: url('../images/premium.svg');
}

.bg-dots-gradient {
    position: relative;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px),
        linear-gradient(115deg, #d4367d 0%, #e84a44 100%);
    /* background-size: 20px 20px, 100% 100%; */
}

.contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: #080808;
    background-image:
        radial-gradient(ellipse at 20% 40%, #8b0000 0%, transparent 40%),
        radial-gradient(ellipse at 90% 65%, #00a870 0%, transparent 35%),
        radial-gradient(ellipse at 85% 55%, #006655 0%, transparent 30%);
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/contact-section-bg.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.contact-orb {
    position: absolute;
    top: 50px;
    left: 0;
    width: min(85vw, 990px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(to bottom, rgba(101, 64, 98, 0.4) 0%, rgba(203, 129, 197, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.form-card {
    background: radial-gradient(97.57% 210.75% at 0.9% 2.98%, rgba(99, 99, 99, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px)
}

.info-icon {
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 8px;
}

.gallery-slider {
    img {
        height: 386px;
    }

    .slick-dots {
        margin: 0 auto;
        padding: 0;
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;

        li {
            border: 2px solid #fff;
        }
    }
}

:root {
    --header-offset: 80px;
}

section[id] {
    scroll-margin-top: var(--header-offset);
}

@media (max-width: 991px) {
    :root {
        --header-offset: 80px;
    }
}

@media (max-width: 600px) {
    .dj-section {
        position: static;
    }

    .author-quote-item {
        flex-direction: column;
    }

    .testimonial-slider .slick-prev {
        left: calc(50% - 75px);
    }

    .testimonial-slider .slick-next {
        right: calc(50% - 75px);
    }

    .testimonial-slider .slick-dots {
        display: none !important;
    }

    #testimonials {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

#gallerySelect option {
    color: #000 !important
}

#events {
    &>div {
        border-radius: 0 !important;
    }

}