/* =========================================================
   KEN NXT SA
   PREMIUM NIGHTLIFE DJ WEBSITE
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --black: #050006;
    --black-2: #09000d;
    --black-3: #110018;

    --purple: #a900ff;
    --purple-bright: #d400ff;
    --purple-soft: #8b2cff;

    --pink: #ff00c8;
    --pink-hot: #ff18d8;

    --white: #ffffff;
    --white-soft: #eee9f2;

    --muted: #aaa1b0;
    --line: rgba(212, 0, 255, 0.28);

    --glass: rgba(13, 3, 19, 0.72);

    --container: 1280px;

    --radius: 4px;

    --shadow-purple:
        0 0 30px rgba(183, 0, 255, 0.25),
        0 0 90px rgba(183, 0, 255, 0.12);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 75% 10%,
            rgba(137, 0, 255, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 40%,
            rgba(255, 0, 200, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #030004,
            #09000e 45%,
            #030004
        );

    color: var(--white);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    overflow-x: hidden;

}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    color: #fff;
    background: var(--purple);
}


/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.noise {

    position: fixed;
    inset: 0;

    z-index: 100;

    pointer-events: none;

    opacity: 0.045;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");

}

.ambient {

    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(120px);

    opacity: 0.18;

    z-index: -1;

}

.ambient-one {

    top: 5%;
    right: -250px;

    background: var(--purple);

}

.ambient-two {

    top: 45%;
    left: -280px;

    background: var(--pink);

}

.ambient-three {

    bottom: -300px;
    right: 15%;

    background: #6500ff;

}


/* =========================================================
   GLOBAL
========================================================= */

.section {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

    padding-block: 120px;

}

.eyebrow {

    color: var(--purple-bright);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.25em;

    text-transform: uppercase;

}

.section-heading {

    margin-bottom: 60px;

}

.section-heading.center {

    text-align: center;

}

.section-heading h2,
.map-heading h2 {

    margin-top: 12px;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: clamp(
        58px,
        8vw,
        110px
    );

    line-height: 0.86;

    letter-spacing: 0.015em;

    text-transform: uppercase;

}

.section-heading h2 span,
.map-heading h2 span {

    color: var(--purple-bright);

    text-shadow:
        0 0 20px rgba(212, 0, 255, 0.3);

}

.section-intro {

    max-width: 520px;

    margin: 25px auto 0;

    color: var(--muted);

    line-height: 1.7;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 84px;

    z-index: 90;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0
        max(20px, calc((100vw - 1280px) / 2));

    background:
        linear-gradient(
            180deg,
            rgba(5, 0, 8, 0.96),
            rgba(5, 0, 8, 0.7)
        );

    border-bottom:
        1px solid
        rgba(212, 0, 255, 0.12);

    backdrop-filter: blur(18px);

}

.logo {

    display: flex;

    align-items: baseline;

    gap: 4px;

    position: relative;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 27px;

    letter-spacing: 0.05em;

}

.logo span {
    color: #fff;
}

.logo strong {

    color: var(--purple-bright);

    font-weight: 400;

    text-shadow:
        0 0 14px rgba(212, 0, 255, 0.6);

}

.logo small {

    color: #fff;

    font-size: 10px;

    letter-spacing: 0.1em;

}

.nav {

    display: flex;

    align-items: center;

    gap: 34px;

}

.nav a {

    position: relative;

    color: #d2cbd6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: color 0.25s ease;

}

.nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--pink)
        );

    transition: width 0.25s ease;

}

.nav a:hover {
    color: #fff;
}

.nav a:hover::after {
    width: 100%;
}

.nav .nav-book {

    padding:
        12px
        19px;

    color: #fff;

    border:
        1px solid
        var(--purple);

    background:
        linear-gradient(
            135deg,
            rgba(169, 0, 255, 0.25),
            rgba(255, 0, 200, 0.12)
        );

    box-shadow:
        0 0 20px
        rgba(169, 0, 255, 0.2);

}

.nav .nav-book::after {
    display: none;
}


/* hamburger */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--line);

    background: rgba(169, 0, 255, 0.08);

}

.menu-toggle span {

    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: #fff;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 920px;

    padding-top: 170px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(450px, 1.1fr);

    align-items: center;

    gap: 40px;

}

.hero-content {

    position: relative;

    z-index: 5;

}

.live-pill,
.booking-kicker {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    padding:
        8px
        12px;

    color: #fff;

    border:
        1px solid
        rgba(212, 0, 255, 0.45);

    background:
        rgba(169, 0, 255, 0.08);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.14em;

}

.live-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 10px var(--pink);

    animation:
        livePulse 1.5s infinite;

}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }

}

.hero h1 {

    margin-top: 16px;

    display: flex;

    flex-direction: column;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: clamp(
        90px,
        12vw,
        180px
    );

    line-height: 0.72;

    letter-spacing: -0.02em;

}

.hero h1 span {

    color: #fff;

    text-shadow:
        0 5px 0 rgba(255, 255, 255, 0.04);

}

.hero h1 em {

    margin-left: 20px;

    color: var(--purple-bright);

    font-family:
        "Caveat",
        cursive;

    font-size: 0.55em;

    font-weight: 700;

    line-height: 0.8;

    transform: rotate(-5deg);

    text-shadow:
        0 0 20px
        rgba(212, 0, 255, 0.45);

}

.hero-tagline {

    margin-top: 40px;

    color: #d0c9d4;

    font-size: 18px;

    line-height: 1.45;

}

.hero-tagline strong {

    color: #fff;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 30px;

}

.btn {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding:
        0
        24px;

    border: 1px solid transparent;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

}

.btn:hover {

    transform: translateY(-3px);

}

.btn-primary {

    color: #fff;

    background:
        linear-gradient(
            100deg,
            #8b00e8,
            #df00d0
        );

    box-shadow:
        0 10px 35px
        rgba(194, 0, 255, 0.28);

}

.btn-primary:hover {

    box-shadow:
        0 15px 45px
        rgba(194, 0, 255, 0.45);

}

.btn-outline {

    border-color:
        rgba(212, 0, 255, 0.55);

    background:
        rgba(255, 255, 255, 0.025);

}

.btn-outline:hover {

    border-color:
        var(--purple-bright);

    background:
        rgba(169, 0, 255, 0.1);

}

.hero-meta {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;

    margin-top: 45px;

    color: #89818e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.12em;

}

.hero-meta i {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--purple-bright);

    box-shadow:
        0 0 7px var(--purple);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.hero-glow {

    position: absolute;

    width: 80%;
    height: 80%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(213, 0, 255, 0.58),
            rgba(116, 0, 255, 0.2) 38%,
            transparent 70%
        );

    filter: blur(45px);

    animation:
        heroGlow 5s ease-in-out infinite;

}

@keyframes heroGlow {

    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

}

.hero-ring {

    position: absolute;

    border:
        1px solid
        rgba(212, 0, 255, 0.16);

    border-radius: 50%;

    animation:
        rotateRing 18s linear infinite;

}

.ring-one {

    width: 620px;
    height: 620px;

}

.ring-two {

    width: 720px;
    height: 720px;

    border-color:
        rgba(255, 0, 200, 0.08);

    animation-direction: reverse;

}

@keyframes rotateRing {

    to {
        transform: rotate(360deg);
    }

}

.hero-image-frame {

    position: relative;

    width: min(100%, 580px);

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border:
        1px solid
        rgba(222, 0, 255, 0.85);

    background:
        #08030c;

    box-shadow:
        0 0 25px
        rgba(212, 0, 255, 0.3),

        0 0 100px
        rgba(121, 0, 255, 0.18);

    transform:
        rotate(1.2deg);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;

}

.hero-image-frame:hover {

    transform:
        rotate(0deg)
        scale(1.015);

    box-shadow:
        0 0 40px
        rgba(212, 0, 255, 0.55),

        0 0 120px
        rgba(121, 0, 255, 0.25);

}

.ken-photo {

    position: absolute;

    inset: 0;

    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    opacity: 1;

    filter:
        contrast(1.08)
        saturate(1.12);

}

.photo-gradient {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            transparent 35%,
            rgba(5, 0, 10, 0.45)
        ),

        linear-gradient(
            90deg,
            rgba(102, 0, 255, 0.12),
            transparent 45%,
            rgba(255, 0, 200, 0.1)
        );

}

.photo-scan {

    position: absolute;

    left: 0;
    right: 0;

    height: 2px;

    z-index: 4;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pink),
            transparent
        );

    box-shadow:
        0 0 15px var(--pink);

    opacity: 0.35;

    animation:
        scan 5s linear infinite;

}

@keyframes scan {

    0% {
        top: -5%;
    }

    100% {
        top: 105%;
    }

}

.image-corner {

    position: absolute;

    z-index: 5;

    width: 65px;
    height: 65px;

}

.corner-one {

    top: 18px;
    left: 18px;

    border-top:
        2px solid var(--purple-bright);

    border-left:
        2px solid var(--purple-bright);

}

.corner-two {

    right: 18px;
    bottom: 18px;

    border-right:
        2px solid var(--pink);

    border-bottom:
        2px solid var(--pink);

}

.photo-label {

    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 6;

    display: flex;

    flex-direction: column;

}

.photo-label span {

    color: var(--purple-bright);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.3em;

}

.photo-label strong {

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 30px;

    letter-spacing: 0.08em;

}

.cape-town-badge {

    position: absolute;

    right: -20px;
    bottom: 50px;

    z-index: 10;

    padding:
        14px
        19px;

    background:
        rgba(7, 2, 11, 0.95);

    border:
        1px solid
        var(--purple-bright);

    box-shadow:
        0 0 25px
        rgba(212, 0, 255, 0.25);

    transform: rotate(-3deg);

}

.cape-town-badge span {

    display: block;

    color: #8e8693;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.2em;

}

.cape-town-badge strong {

    display: block;

    margin-top: 4px;

    color: var(--purple-bright);

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 24px;

    letter-spacing: 0.08em;

}


/* Floating cards */

.floating-card {

    position: absolute;

    z-index: 12;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px
        13px;

    background:
        rgba(8, 2, 12, 0.92);

    border:
        1px solid
        rgba(212, 0, 255, 0.5);

    box-shadow:
        0 0 20px
        rgba(169, 0, 255, 0.18);

}

.floating-card small {

    display: block;

    color: #77717c;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.2em;

}

.floating-card strong {

    display: block;

    margin-top: 2px;

    color: #fff;

    font-size: 10px;

    letter-spacing: 0.08em;

}

.music-card {

    top: 22%;
    left: -25px;

}

.energy-card {

    bottom: 14%;
    left: -38px;

}

.mini-icon {

    color: var(--pink);

    font-size: 20px;

}

.equalizer {

    height: 22px;

    display: flex;

    align-items: end;

    gap: 2px;

}

.equalizer i {

    width: 3px;

    background:
        linear-gradient(
            to top,
            var(--purple),
            var(--pink)
        );

    animation:
        equalize 1s ease-in-out infinite alternate;

}

.equalizer i:nth-child(1) {
    height: 8px;
}

.equalizer i:nth-child(2) {
    height: 18px;
    animation-delay: .2s;
}

.equalizer i:nth-child(3) {
    height: 13px;
    animation-delay: .4s;
}

.equalizer i:nth-child(4) {
    height: 21px;
    animation-delay: .1s;
}

@keyframes equalize {

    from {
        transform: scaleY(0.45);
    }

    to {
        transform: scaleY(1);
    }

}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {

    width: 100%;

    overflow: hidden;

    border-block:
        1px solid
        rgba(212, 0, 255, 0.18);

    background:
        rgba(169, 0, 255, 0.045);

}

.marquee-track {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 30px;

    padding:
        17px 0;

    animation:
        marquee 25s linear infinite;

}

.marquee span {

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 25px;

    letter-spacing: 0.08em;

}

.marquee b {

    color: var(--pink);

}

@keyframes marquee {

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.75fr;

    gap: 90px;

    align-items: center;

}

.about-text {

    max-width: 700px;

}

.about-text p {

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

}

.about-text .large-copy {

    margin-bottom: 25px;

    color: #e5dfe8;

    font-size: 22px;

    line-height: 1.65;

}

.about-text strong {

    color: #fff;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    color: var(--purple-bright);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.13em;

}

.text-link span {

    font-size: 20px;

    transition:
        transform 0.25s ease;

}

.text-link:hover span {

    transform:
        translateX(7px);

}

.quote-card {

    position: relative;

    min-height: 330px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 0, 255, 0.45);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 0, 255, 0.2),
            transparent 45%
        ),
        rgba(13, 2, 19, 0.8);

    box-shadow:
        var(--shadow-purple);

}

.quote {

    color: var(--purple-bright);

    font-family:
        Georgia,
        serif;

    font-size: 90px;

    line-height: 0.5;

}

.quote-card p {

    max-width: 380px;

    margin-top: 20px;

    color: #fff;

    font-family:
        "Caveat",
        cursive;

    font-size: 39px;

    line-height: 1.05;

}

.quote-card small {

    margin-top: 25px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.2em;

}

.quote-lines {

    position: absolute;

    top: 30px;
    right: 30px;

    width: 90px;
    height: 90px;

    border-top:
        1px solid
        var(--purple);

    border-right:
        1px solid
        var(--purple);

    opacity: 0.5;

}


/* =========================================================
   GENRES
========================================================= */

.genre-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}

.genre-card {

    position: relative;

    min-height: 480px;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 0, 255, 0.18);

    background: #0b020f;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease;

}

.genre-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(212, 0, 255, 0.8);

}

.genre-card img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.72;

    transition:
        transform 0.7s ease,
        opacity 0.5s ease;

}

.genre-card:hover img {

    transform: scale(1.08);

    opacity: 0.9;

}

.genre-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 0, 8, 0.05),
            rgba(5, 0, 8, 0.15) 25%,
            rgba(5, 0, 8, 0.95) 100%
        );

}

.genre-number {

    position: absolute;

    top: 20px;
    left: 20px;

    color: #fff;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 25px;

}

.genre-content {

    position: absolute;

    left: 25px;
    right: 20px;
    bottom: 25px;

}

.genre-content > span {

    color: var(--purple-bright);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.25em;

}

.genre-content h3 {

    margin-top: 5px;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 42px;

    line-height: 0.9;

}

.genre-content p {

    margin-top: 12px;

    color: #c0b8c4;

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   MIXES
========================================================= */

.mixes {

    position: relative;

}

.mixes-panel {

    position: relative;

    min-height: 370px;

    display: flex;

    align-items: center;

    gap: 70px;

    padding:
        60px 80px;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 0, 255, 0.45);

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(212, 0, 255, 0.2),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #110019,
            #050006
        );

    box-shadow:
        var(--shadow-purple);

}

.vinyl {

    width: 220px;
    height: 220px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            #0c0c0d 0px,
            #151517 2px,
            #070708 4px
        );

    border:
        5px solid
        #19191c;

    box-shadow:
        0 0 0 1px #555,
        0 0 60px
        rgba(212, 0, 255, 0.25);

    display: flex;

    align-items: center;
    justify-content: center;

    animation:
        vinylSpin 9s linear infinite;

}

@keyframes vinylSpin {

    to {
        transform: rotate(360deg);
    }

}

.vinyl-center {

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: #fff;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 20px;

    box-shadow:
        0 0 20px
        rgba(212, 0, 255, 0.5);

}

.mix-info {

    max-width: 550px;

}

.mix-label {

    color: var(--purple-bright);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.2em;

}

.mix-info h3 {

    margin-top: 8px;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 70px;

    line-height: 0.9;

}

.mix-info p {

    margin-top: 15px;

    color: var(--muted);

    line-height: 1.7;

}

.platforms {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;

}

.platforms span {

    padding:
        8px 11px;

    border:
        1px solid
        rgba(212, 0, 255, 0.3);

    color: #c7bfca;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.12em;

}

.coming-soon {

    position: absolute;

    right: 40px;
    top: 35px;

    color: var(--purple-bright);

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 16px;

    letter-spacing: 0.15em;

}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 70px;

}

.service-card {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 25px;

    padding: 35px;

    border:
        1px solid
        rgba(212, 0, 255, 0.25);

    background:
        linear-gradient(
            135deg,
            rgba(169, 0, 255, 0.09),
            rgba(255, 0, 200, 0.025)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;

}

.service-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(212, 0, 255, 0.7);

}

.service-icon {

    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--purple-bright);

    background:
        rgba(169, 0, 255, 0.1);

    font-size: 28px;

    box-shadow:
        0 0 20px
        rgba(212, 0, 255, 0.12);

}

.card-number {

    color: var(--purple-bright);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.2em;

}

.service-card h3 {

    margin-top: 7px;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 36px;

}

.service-card p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;

}


/* Event cards */

.event-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}

.event-item {

    text-align: center;

}

.event-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 0, 255, 0.3);

}

.event-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 0, 10, 0.05),
            rgba(7, 0, 10, 0.65)
        );

}

.event-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}

.event-item:hover img {

    transform:
        scale(1.08);

}

.event-image span {

    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 2;

    transform:
        translate(-50%, -50%);

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--purple-bright);

    border-radius: 50%;

    background:
        rgba(7, 0, 10, 0.65);

    color: #fff;

    font-size: 23px;

    box-shadow:
        0 0 25px
        rgba(212, 0, 255, 0.25);

}

.event-item h3 {

    margin-top: 20px;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 31px;

}

.event-item p {

    margin-top: 6px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

}

.event-item strong {

    color: var(--purple-bright);

}


/* =========================================================
   MEDIA
========================================================= */

.media-preview {

    padding-top: 60px;

}

.media-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}

.media-card {

    position: relative;

    min-height: 270px;

    padding: 40px;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 0, 255, 0.25);

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(212, 0, 255, 0.2),
            transparent 40%
        ),
        #0b020f;

}

.media-icon {

    color: var(--purple-bright);

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 55px;

}

.media-card h3 {

    margin-top: 10px;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 38px;

}

.media-card p {

    max-width: 400px;

    margin-top: 8px;

    color: var(--muted);

    line-height: 1.6;

}

.media-card > span {

    position: absolute;

    top: 30px;
    right: 30px;

    color: var(--purple-bright);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.15em;

}


/* =========================================================
   BOOKING
========================================================= */

.booking {

    width: 100%;

    max-width: none;

    padding:
        130px max(20px, calc((100vw - 1280px) / 2));

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(212, 0, 255, 0.14),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #0d0015,
            #050006
        );

    border-block:
        1px solid
        rgba(212, 0, 255, 0.16);

}

.booking-container {

    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 100px;

    align-items: start;

}

.booking-kicker {

    margin-bottom: 20px;

}

.booking-information h2 {

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: clamp(
        60px,
        7vw,
        105px
    );

    line-height: 0.88;

}

.booking-information h2 span {

    color: var(--purple-bright);

}

.booking-description {

    max-width: 500px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;

}

.contact-information {

    margin-top: 35px;

    display: grid;

    gap: 1px;

    border-top:
        1px solid
        rgba(212, 0, 255, 0.18);

}

.contact-information > a,
.contact-information > div {

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        17px 0;

    border-bottom:
        1px solid
        rgba(212, 0, 255, 0.12);

}

.contact-information small {

    display: block;

    color: #77707d;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.18em;

}

.contact-information strong {

    display: block;

    margin-top: 4px;

    color: #fff;

    font-size: 12px;

}

.contact-icon {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(212, 0, 255, 0.5);

    color: var(--purple-bright);

    font-size: 10px;

    font-weight: 900;

}


/* Form */

.booking-form {

    padding: 35px;

    border:
        1px solid
        rgba(212, 0, 255, 0.45);

    background:
        rgba(9, 1, 13, 0.9);

    box-shadow:
        0 0 60px
        rgba(169, 0, 255, 0.12);

}

.form-header {

    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom:
        1px solid
        rgba(212, 0, 255, 0.15);

}

.form-header > span {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--purple-bright);

    color: var(--purple-bright);

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 20px;

}

.form-header small {

    color: var(--purple-bright);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.2em;

}

.form-header h3 {

    margin-top: 3px;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 32px;

}

.booking-form label {

    display: block;

    margin-bottom: 16px;

}

.booking-form label > span {

    display: block;

    margin-bottom: 7px;

    color: #bdb5c2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

}

.booking-form input,
.booking-form select,
.booking-form textarea {

    width: 100%;

    padding:
        14px;

    border:
        1px solid
        rgba(212, 0, 255, 0.2);

    outline: none;

    background:
        rgba(255, 255, 255, 0.035);

    color: #fff;

    border-radius: 0;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}

.booking-form input::placeholder,
.booking-form textarea::placeholder {

    color: #605966;

}

.booking-form select option {

    color: #fff;

    background: #120019;

}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {

    border-color:
        var(--purple-bright);

    box-shadow:
        0 0 0 2px
        rgba(212, 0, 255, 0.08);

}

.booking-form textarea {

    resize: vertical;

}

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

}

.btn.full {

    width: 100%;

    margin-top: 4px;

}

.form-note {

    margin-top: 13px;

    color: #655e69;

    text-align: center;

    font-size: 9px;

}


/* =========================================================
   MAP
========================================================= */

.map-section {

    width: 100%;

    padding:
        100px max(20px, calc((100vw - 1280px) / 2));

    background:
        #030004;

}

.map-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;

}

.map-heading h2 {

    font-size:
        clamp(
            55px,
            7vw,
            95px
        );

}

.map-link {

    padding:
        13px 17px;

    border:
        1px solid
        rgba(212, 0, 255, 0.5);

    color: var(--purple-bright);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.12em;

}

.map-wrapper {

    position: relative;

    height: 450px;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 0, 255, 0.35);

    filter:
        saturate(0.7)
        contrast(1.05);

}

.map-wrapper iframe {

    width: 100%;
    height: 100%;

    display: block;

    border: 0;

}

.map-overlay-card {

    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        13px 17px;

    background:
        rgba(6, 0, 9, 0.94);

    border:
        1px solid
        var(--purple-bright);

    box-shadow:
        0 0 25px
        rgba(212, 0, 255, 0.2);

}

.map-overlay-card > span {

    font-size: 20px;

}

.map-overlay-card small {

    display: block;

    color: #77707d;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 0.2em;

}

.map-overlay-card strong {

    display: block;

    margin-top: 3px;

    color: var(--purple-bright);

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 21px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        60px max(20px, calc((100vw - 1280px) / 2))
        30px;

    border-top:
        1px solid
        rgba(212, 0, 255, 0.18);

    background:
        #030004;

}

.footer-main {

    display: flex;

    justify-content: space-between;

    gap: 40px;

}

.footer-brand p {

    margin-top: 15px;

    color: var(--muted);

    font-family:
        "Caveat",
        cursive;

    font-size: 24px;

}

.footer-socials {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    align-items: center;

}

.footer-socials a {

    color: #aaa1ae;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.14em;

    transition:
        color 0.2s ease;

}

.footer-socials a:hover {

    color:
        var(--purple-bright);

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 60px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);

    color: #5f5864;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.1em;

}

.footer-slogan {

    margin-top: 55px;

    text-align: center;

    font-family:
        "Caveat",
        cursive;

    font-size: clamp(
        35px,
        6vw,
        70px
    );

    color: #eee;

}

.footer-slogan em {

    color: var(--purple-bright);

    font-style: normal;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 80;

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--purple-bright);

    background:
        rgba(8, 0, 12, 0.9);

    color: #fff;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        all 0.25s ease;

}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero {

        grid-template-columns:
            1fr;

        padding-top: 130px;

    }

    .hero-content {

        max-width: 800px;

    }

    .hero-visual {

        min-height: 650px;

    }

    .genre-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .event-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .booking-container {

        grid-template-columns:
            1fr;

        gap: 60px;

    }

}


@media (max-width: 850px) {

    .nav {

        position: fixed;

        top: 84px;
        left: 0;
        right: 0;

        padding: 30px 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background:
            rgba(5, 0, 8, 0.98);

        border-bottom:
            1px solid
            rgba(212, 0, 255, 0.2);

        transform:
            translateY(-130%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;

    }

    .nav.open {

        transform:
            translateY(0);

        opacity: 1;

        pointer-events: auto;

    }

    .nav a {

        padding:
            17px 0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.05);

    }

    .nav .nav-book {

        margin-top: 12px;

        text-align: center;

    }

    .menu-toggle {

        display: block;

    }

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }

    .service-grid {

        grid-template-columns:
            1fr;

    }

    .mixes-panel {

        padding: 50px;

        flex-direction: column;

        align-items: flex-start;

    }

    .mix-info h3 {

        font-size: 55px;

    }

    .cape-town-badge {

        right: 0;

    }

    .music-card {

        left: 0;

    }

    .energy-card {

        left: 0;

    }

}


@media (max-width: 600px) {

    .section {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

        padding-block: 80px;

    }

    .site-header {

        height: 72px;

    }

    .nav {

        top: 72px;

    }

    .hero {

        min-height: auto;

        padding-top: 120px;

        gap: 40px;

    }

    .hero h1 {

        font-size:
            clamp(
                78px,
                23vw,
                120px
            );

    }

    .hero h1 em {

        margin-left: 10px;

    }

    .hero-tagline {

        margin-top: 30px;

        font-size: 16px;

    }

    .hero-meta {

        gap: 8px;

        font-size: 7px;

    }

    .hero-visual {

        min-height: 530px;

    }

    .hero-ring {

        display: none;

    }

    .hero-image-frame {

        width: 90%;

        transform: none;

    }

    .cape-town-badge {

        right: -2px;

        bottom: 35px;

    }

    .music-card {

        top: 12%;

        left: -3px;

    }

    .energy-card {

        left: -3px;

        bottom: 8%;

    }

    .floating-card {

        transform: scale(0.85);

        transform-origin: left center;

    }

    .genre-grid {

        grid-template-columns:
            1fr;

    }

    .genre-card {

        min-height: 430px;

    }

    .event-grid {

        grid-template-columns:
            1fr;

    }

    .event-image {

        height: 250px;

    }

    .media-grid {

        grid-template-columns:
            1fr;

    }

    .mixes-panel {

        padding: 35px 25px;

        gap: 35px;

    }

    .vinyl {

        width: 170px;
        height: 170px;

    }

    .mix-info h3 {

        font-size: 48px;

    }

    .coming-soon {

        right: 20px;
        top: 20px;

    }

    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }

    .booking {

        padding:
            80px 14px;

    }

    .booking-form {

        padding: 24px 18px;

    }

    .map-section {

        padding:
            70px 14px;

    }

    .map-heading {

        align-items: flex-start;

        flex-direction: column;

    }

    .map-wrapper {

        height: 380px;

    }

    .footer-main {

        flex-direction: column;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

    }

}
