/* =========================================================
   DJZMAN.COM
   COMPLETE STYLE.CSS
   LARGE DJZMAN CENTER IMAGE
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #ffffff;

    background-color: #080014;

    background-image:
        radial-gradient(
            circle at 15% 15%,
            rgba(255, 0, 204, 0.30),
            transparent 30%
        ),

        radial-gradient(
            circle at 85% 20%,
            rgba(0, 234, 255, 0.28),
            transparent 30%
        ),

        radial-gradient(
            circle at 50% 80%,
            rgba(100, 0, 255, 0.25),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #13001f 0%,
            #18002e 35%,
            #090019 70%,
            #020006 100%
        );

    background-attachment: fixed;
}

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

button {
    font-family: inherit;
}


/* =========================================================
   RETRO BACKGROUND
   ========================================================= */

.retro-grid {
    position: fixed;
    inset: 0;

    z-index: 0;

    pointer-events: none;

    overflow: hidden;
}


/* NEON HORIZON */

.retro-grid::before {
    content: "";

    position: absolute;

    left: -10%;
    right: -10%;

    bottom: 17%;

    height: 3px;

    background: #ff00cc;

    box-shadow:
        0 0 10px #ff00cc,
        0 0 25px #ff00cc,
        0 0 50px #ff00cc,
        0 0 80px #ff00cc;
}


/* RETRO FLOOR */

.retro-grid::after {
    content: "";

    position: absolute;

    left: -50%;
    right: -50%;

    bottom: -25%;

    height: 70%;

    background-image:
        linear-gradient(
            rgba(0, 234, 255, 0.25) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 0, 204, 0.22) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    transform:
        perspective(450px)
        rotateX(65deg);

    transform-origin:
        top center;

    opacity: .7;
}


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

.header {
    position: relative;

    z-index: 10;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        24px 6%;

    background:
        rgba(4, 0, 12, .88);

    border-bottom:
        1px solid rgba(0, 234, 255, .30);

    box-shadow:
        0 5px 30px rgba(0, 0, 0, .6);
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.brand .small {
    color: #00eaff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;

    text-shadow:
        0 0 8px #00eaff;
}

.logo {
    display: inline-block;

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

    line-height: .9;

    font-weight: 900;

    font-style: italic;

    letter-spacing: -4px;

    color: #ffffff;

    text-shadow:
        3px 3px 0 #ff00cc,
        0 0 12px #ffffff,
        0 0 28px #ff00cc;
}

.logo span {
    color: #00eaff;

    text-shadow:
        0 0 10px #00eaff,
        0 0 25px #00eaff,
        0 0 40px #00eaff;
}

.tagline {
    color: #ff55dd;

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

    text-shadow:
        0 0 8px rgba(255, 0, 204, .6);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    display: flex;

    align-items: center;
}

nav a {
    display: inline-block;

    padding:
        11px 20px;

    border:
        1px solid #00eaff;

    border-radius:
        30px;

    color:
        #00eaff;

    background:
        rgba(0, 234, 255, .04);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        1px;

    text-transform:
        uppercase;

    box-shadow:
        0 0 8px rgba(0, 234, 255, .35);

    transition:
        all .25s ease;
}

nav a:hover {
    color:
        #ffffff;

    background:
        rgba(0, 234, 255, .14);

    box-shadow:
        0 0 12px #00eaff,
        0 0 30px rgba(0, 234, 255, .5);

    transform:
        translateY(-2px);
}


/* =========================================================
   MAIN
   ========================================================= */

main {
    position:
        relative;

    z-index:
        2;
}


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

.hero {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    gap:
        50px;

    width:
        100%;

    max-width:
        1400px;

    min-height:
        700px;

    margin:
        0 auto;

    padding:
        70px 7% 100px;
}


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

.hero-text {
    position:
        relative;

    z-index:
        5;
}

.pill {
    display:
        inline-block;

    margin-bottom:
        25px;

    padding:
        9px 16px;

    border:
        1px solid #ff00cc;

    border-radius:
        30px;

    color:
        #ff66df;

    background:
        rgba(255, 0, 204, .08);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        2px;

    box-shadow:
        0 0 12px rgba(255, 0, 204, .4);
}

.hero h1 {
    font-size:
        clamp(55px, 7vw, 105px);

    line-height:
        .84;

    font-weight:
        900;

    font-style:
        italic;

    letter-spacing:
        -5px;

    color:
        #ffffff;

    text-shadow:
        4px 4px 0 #ff00cc,
        0 0 15px rgba(255,255,255,.45);
}

.hero h1 span {
    color:
        #00eaff;

    text-shadow:
        4px 4px 0 #ff00cc,
        0 0 15px #00eaff,
        0 0 35px #00eaff;
}

.hero p {
    max-width:
        520px;

    margin-top:
        30px;

    color:
        #d2c9dd;

    font-size:
        17px;

    line-height:
        1.7;
}


/* =========================================================
   PLAY / STOP
   ========================================================= */

.hero-player {
    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-top:
        28px;
}

.hero-player .play-button,
.hero-player .stop-button {
    width:
        auto;

    min-width:
        125px;

    height:
        50px;

    padding:
        0 24px;

    border-radius:
        28px;

    color:
        #ffffff;

    background:
        rgba(5, 3, 15, .95);

    font-size:
        13px;

    font-weight:
        900;

    letter-spacing:
        1px;

    cursor:
        pointer;

    transition:
        all .25s ease;
}

.hero-player .play-button {
    border:
        2px solid #00eaff;

    box-shadow:
        0 0 10px rgba(0,234,255,.35);
}

.hero-player .play-button:hover {
    background:
        rgba(0,234,255,.15);

    transform:
        translateY(-2px);

    box-shadow:
        0 0 12px #00eaff,
        0 0 30px #00eaff;
}

.hero-player .stop-button {
    border:
        2px solid #ff00cc;

    box-shadow:
        0 0 10px rgba(255,0,204,.35);
}

.hero-player .stop-button:hover {
    background:
        rgba(255,0,204,.15);

    transform:
        translateY(-2px);

    box-shadow:
        0 0 12px #ff00cc,
        0 0 30px #ff00cc;
}


/* =========================================================
   PLAYER STATUS
   ========================================================= */

.hero-player-status {
    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    margin-top:
        12px;
}

.hero-player-status strong {
    color:
        #00eaff;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        2px;

    text-shadow:
        0 0 8px #00eaff;
}


/* =========================================================
   EQUALIZER
   ========================================================= */

.hero-player-status .bars {
    display:
        flex;

    align-items:
        center;

    gap:
        3px;

    width:
        55px;

    height:
        25px;
}

.hero-player-status .bars i {
    display:
        block;

    width:
        4px;

    height:
        6px;

    border-radius:
        4px;

    background:
        #ff00cc;

    box-shadow:
        0 0 6px #ff00cc;

    opacity:
        .5;
}

.hero-player-status .bars.active i {
    opacity:
        1;

    animation:
        heroEqualizer .6s infinite ease-in-out;
}

.hero-player-status .bars.active i:nth-child(1) {
    animation-delay: -.1s;
}

.hero-player-status .bars.active i:nth-child(2) {
    animation-delay: -.3s;
}

.hero-player-status .bars.active i:nth-child(3) {
    animation-delay: -.5s;
}

.hero-player-status .bars.active i:nth-child(4) {
    animation-delay: -.2s;
}

.hero-player-status .bars.active i:nth-child(5) {
    animation-delay: -.4s;
}

.hero-player-status .bars.active i:nth-child(6) {
    animation-delay: -.15s;
}

.hero-player-status .bars.active i:nth-child(7) {
    animation-delay: -.35s;
}

.hero-player-status .bars.active i:nth-child(8) {
    animation-delay: -.25s;
}

@keyframes heroEqualizer {

    0%,
    100% {
        height:
            6px;
    }

    50% {
        height:
            23px;
    }
}


/* =========================================================
   VINYL RECORD
   ========================================================= */

.record {
    position:
        relative;

    width:
        min(520px, 90vw);

    height:
        min(520px, 90vw);

    margin:
        0 auto;

    z-index:
        4;
}

.vinyl {
    position:
        absolute;

    left:
        0;

    top:
        0;

    width:
        100%;

    height:
        100%;

    border-radius:
        50%;

    background:
        repeating-radial-gradient(
            circle,
            #050505 0px,
            #151515 2px,
            #030303 4px,
            #111111 6px
        );

    border:
        3px solid #242424;

    box-shadow:
        0 0 30px rgba(0,0,0,.9),
        0 0 60px rgba(255,0,204,.25),
        0 0 100px rgba(0,234,255,.15);
}


/* RECORD HIGHLIGHT */

.vinyl::before {
    content:
        "";

    position:
        absolute;

    inset:
        4%;

    border-radius:
        50%;

    background:
        conic-gradient(
            from 20deg,
            transparent,
            rgba(255,255,255,.10),
            transparent 20%,
            transparent 65%,
            rgba(255,255,255,.07),
            transparent
        );

    pointer-events:
        none;
}


/* =========================================================
   DJZMAN PNG
   EXACTLY 300 x 300 PIXELS
   ORIGINAL WAS 150 x 150
   ========================================================= */

.record .center-label {

    position:
        absolute;

    left:
        50% !important;

    top:
        50% !important;

    width:
        300px !important;

    height:
        300px !important;

    min-width:
        300px !important;

    min-height:
        300px !important;

    max-width:
        300px !important;

    max-height:
        300px !important;

    margin:
        0 !important;

    padding:
        0 !important;

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

    overflow:
        hidden;

    border-radius:
        50% !important;

    background:
        #111111;

    border:
        5px solid #ffffff;

    z-index:
        20;

    box-shadow:
        0 0 10px #ffffff,
        0 0 20px #ff00cc,
        0 0 40px #00eaff;
}


/* THE ACTUAL PNG */

.record .center-label img {

    display:
        block !important;

    position:
        absolute !important;

    left:
        0 !important;

    top:
        0 !important;

    width:
        300px !important;

    height:
        300px !important;

    min-width:
        300px !important;

    min-height:
        300px !important;

    max-width:
        none !important;

    max-height:
        none !important;

    margin:
        0 !important;

    padding:
        0 !important;

    object-fit:
        cover !important;

    border:
        0 !important;

    border-radius:
        50% !important;
}


/* =========================================================
   CENTER RECORD PIN
   ========================================================= */

.record .center-label::after {

    content:
        "";

    position:
        absolute;

    left:
        50%;

    top:
        50%;

    width:
        8px;

    height:
        8px;

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

    border-radius:
        50%;

    background:
        #ffffff;

    border:
        2px solid #222222;

    z-index:
        30;

    box-shadow:
        0 0 8px #ffffff;
}


/* =========================================================
   TURNTABLE ARM
   ========================================================= */

.arm {
    position:
        absolute;

    width:
        43%;

    height:
        12px;

    right:
        -3%;

    top:
        14%;

    border-radius:
        10px;

    background:
        linear-gradient(
            90deg,
            #222222,
            #888888,
            #222222
        );

    transform:
        rotate(27deg);

    transform-origin:
        right center;

    z-index:
        25;

    box-shadow:
        0 3px 10px #000000;
}

.arm::before {
    content:
        "";

    position:
        absolute;

    width:
        32px;

    height:
        32px;

    right:
        -10px;

    top:
        -10px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            #888888,
            #111111
        );

    border:
        3px solid #222222;
}

.arm::after {
    content:
        "";

    position:
        absolute;

    width:
        17px;

    height:
        17px;

    left:
        5px;

    top:
        -3px;

    border-radius:
        50%;

    background:
        #ff00cc;

    box-shadow:
        0 0 12px #ff00cc;
}


/* =========================================================
   RECORD LIGHT
   ========================================================= */

.light {
    position:
        absolute;

    width:
        16px;

    height:
        16px;

    right:
        8%;

    bottom:
        16%;

    border-radius:
        50%;

    background:
        #ff00cc;

    box-shadow:
        0 0 10px #ff00cc,
        0 0 25px #ff00cc,
        0 0 45px #ff00cc;

    animation:
        pulseLight 1.4s infinite;
}

@keyframes pulseLight {

    0%,
    100% {
        opacity:
            .5;

        transform:
            scale(.8);
    }

    50% {
        opacity:
            1;

        transform:
            scale(1.2);
    }
}


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

footer {
    position:
        relative;

    z-index:
        5;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        25px 7%;

    border-top:
        1px solid rgba(0,234,255,.25);

    background:
        rgba(2,0,8,.92);

    color:
        #777777;

    font-size:
        11px;

    letter-spacing:
        1px;
}

footer span:last-child {
    color:
        #ff55dd;

    text-shadow:
        0 0 8px rgba(255,0,204,.5);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero {

        grid-template-columns:
            1fr;

        text-align:
            center;

        min-height:
            auto;

        padding:
            70px 25px 100px;
    }

    .hero-text {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;
    }

    .hero p {

        max-width:
            600px;
    }

    .record {

        width:
            min(500px, 85vw);

        height:
            min(500px, 85vw);
    }

    /*
     * Keep the DJZman image large.
     */

    .record .center-label {

        width:
            280px !important;

        height:
            280px !important;

        min-width:
            280px !important;

        min-height:
            280px !important;

        max-width:
            280px !important;

        max-height:
            280px !important;
    }

    .record .center-label img {

        width:
            280px !important;

        height:
            280px !important;

        min-width:
            280px !important;

        min-height:
            280px !important;

        max-width:
            none !important;

        max-height:
            none !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .header {

        flex-direction:
            column;

        gap:
            18px;

        text-align:
            center;
    }

    .brand {

        align-items:
            center;
    }

    .hero {

        padding:
            50px 20px 80px;
    }

    .hero h1 {

        font-size:
            58px;

        letter-spacing:
            -3px;
    }

    .hero p {

        font-size:
            15px;
    }

    .hero-player {

        justify-content:
            center;

        flex-wrap:
            wrap;
    }

    .hero-player .play-button,
    .hero-player .stop-button {

        min-width:
            110px;

        height:
            46px;

        padding:
            0 18px;

        font-size:
            11px;
    }

    .hero-player-status {

        justify-content:
            center;
    }

    .record {

        width:
            88vw;

        height:
            88vw;
    }


    /*
     * LARGE CENTER IMAGE ON PHONE
     */

    .record .center-label {

        width:
            220px !important;

        height:
            220px !important;

        min-width:
            220px !important;

        min-height:
            220px !important;

        max-width:
            220px !important;

        max-height:
            220px !important;
    }

    .record .center-label img {

        width:
            220px !important;

        height:
            220px !important;

        min-width:
            220px !important;

        min-height:
            220px !important;

        max-width:
            none !important;

        max-height:
            none !important;
    }

    footer {

        flex-direction:
            column;

        text-align:
            center;

        padding:
            25px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .logo {

        font-size:
            42px;
    }

    .hero h1 {

        font-size:
            50px;
    }

    .record .center-label {

        width:
            190px !important;

        height:
            190px !important;

        min-width:
            190px !important;

        min-height:
            190px !important;

        max-width:
            190px !important;

        max-height:
            190px !important;
    }

    .record .center-label img {

        width:
            190px !important;

        height:
            190px !important;

        min-width:
            190px !important;

        min-height:
            190px !important;

        max-width:
            none !important;

        max-height:
            none !important;
    }

    .hero-player {

        gap:
            8px;
    }

    .hero-player .play-button,
    .hero-player .stop-button {

        min-width:
            100px;

        padding:
            0 12px;
    }
}