@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#05010f;
    color:white;
    overflow-x:hidden;
}

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

.dj-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:30px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    background:linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
}

.dj-logo{
    color:white;
    text-decoration:none;
    font-size:32px;
    font-weight:900;
    letter-spacing:2px;
}

.dj-nav{
    display:flex;
    gap:45px;
}

.dj-nav a{
    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    transition:0.3s;
    position:relative;
}

.dj-nav a:hover{
    color:#b026ff;
}

.dj-nav a::after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:0;
    width:0%;
    height:2px;
    background:#b026ff;
    transition:0.3s;
}

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

.dj-menu{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

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

.dj-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    padding:0 70px;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(5,0,15,0.70),
        rgba(2,0,10,0.96)
    ),
    url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1974&auto=format&fit=crop')
    center center/cover no-repeat;
}

.dj-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.76)
    );
    z-index:1;
}

.dj-hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(176,38,255,0.18),
    transparent 55%);
    z-index:1;
}

.dj-hero-content{
    position:relative;
    z-index:3;
    max-width:760px;
}

.dj-small-title{
    display:inline-block;
    margin-bottom:25px;
    font-size:13px;
    letter-spacing:3px;
    color:#d0c8ff;
}

.dj-hero h1{
    font-size:130px;
    line-height:0.88;
    font-weight:900;
    margin-bottom:30px;
    text-transform:uppercase;
    text-shadow:0 0 40px rgba(255,255,255,0.15);
}

.dj-hero p{
    font-size:18px;
    color:#cfcfe7;
    margin-bottom:45px;
    letter-spacing:1px;
}

.dj-hero-buttons{
    display:flex;
    align-items:center;
    gap:25px;
}

.dj-btn-primary{
    padding:18px 42px;
    border-radius:8px;
    background:linear-gradient(135deg,#7d2cff,#c026ff);
    color:white;
    text-decoration:none;
    font-weight:800;
    transition:0.3s;
    box-shadow:0 0 25px rgba(176,38,255,0.55);
}

.dj-btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 0 40px rgba(176,38,255,0.95);
}

.dj-btn-circle{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:white;
    border:2px solid rgba(255,255,255,0.3);
    font-size:20px;
    transition:0.3s;
    backdrop-filter:blur(10px);
}

.dj-btn-circle:hover{
    background:#b026ff;
    border-color:#b026ff;
    transform:scale(1.08);
}

/* =========================
SOCIALS
========================= */

.dj-socials{
    position:absolute;
    left:40px;
    bottom:90px;
    display:flex;
    flex-direction:column;
    gap:20px;
    z-index:5;
}

.dj-socials a{
    color:white;
    text-decoration:none;
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:0.3s;
    backdrop-filter:blur(8px);
}

.dj-socials a:hover{
    background:#b026ff;
    transform:translateY(-3px);
}

/* =========================
EVENT BOX
========================= */

.dj-event-box{
    position:absolute;
    right:80px;
    bottom:90px;
    width:370px;
    padding:45px;
    background:rgba(8,5,20,0.78);
    border:1px solid rgba(176,38,255,0.28);
    backdrop-filter:blur(18px);
    z-index:5;
    border-radius:18px;
    box-shadow:0 0 40px rgba(176,38,255,0.18);
}

.dj-event-box span{
    font-size:12px;
    letter-spacing:2px;
    color:#b8b2d8;
}

.dj-event-box h3{
    font-size:42px;
    margin:18px 0 14px;
    line-height:1.02;
}

.dj-event-box p{
    color:#bdbdd6;
    margin-bottom:30px;
}

.dj-event-box a{
    display:inline-block;
    padding:14px 28px;
    border:1px solid #b026ff;
    border-radius:8px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.dj-event-box a:hover{
    background:#b026ff;
}

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

.dj-scroll{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    font-size:12px;
    letter-spacing:4px;
    color:#d7d0ff;
    z-index:5;
}

/* =========================
SECTIONS
========================= */

.dj-section{
    padding:120px 70px;
}

.dj-section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.dj-section-head h2{
    font-size:40px;
}

.dj-section-head a{
    color:#b026ff;
    text-decoration:none;
}

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

.dj-player{
    display:flex;
    align-items:center;
    gap:35px;
    padding:35px;
    background:#0b0718;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.06);
}

.dj-cover{
    width:120px;
    height:120px;
    border-radius:18px;
    background:
    linear-gradient(
    rgba(176,38,255,0.35),
    rgba(0,0,0,0.6)
    ),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-track{
    flex:1;
}

.dj-track h3{
    margin-bottom:20px;
    font-size:24px;
}

.dj-wave{
    width:100%;
    height:70px;
    border-radius:12px;
    background:
    repeating-linear-gradient(
    90deg,
    #b026ff 0px,
    #b026ff 3px,
    transparent 3px,
    transparent 8px
    );
    opacity:0.6;
}

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

.dj-footer{
    padding:50px 70px;
    border-top:1px solid rgba(255,255,255,0.06);
    text-align:center;
}

.dj-footer-logo{
    font-size:28px;
    font-weight:900;
    margin-bottom:15px;
}

.dj-footer p{
    color:#a5a5c7;
}

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

@media(max-width:1100px){

    .dj-hero h1{
        font-size:80px;
    }

    .dj-event-box{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:60px;
    }

    .dj-hero{
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        padding-top:160px;
        padding-bottom:120px;
    }
}

@media(max-width:900px){

    .dj-nav{
        display:none;
    }

    .dj-menu{
        display:block;
    }

    .dj-hero h1{
        font-size:60px;
    }

    .dj-section,
    .dj-header,
    .dj-footer,
    .dj-hero{
        padding-left:30px;
        padding-right:30px;
    }

    .dj-player{
        flex-direction:column;
        align-items:flex-start;
    }

    .dj-socials{
        display:none;
    }
}

@media(max-width:600px){

    .dj-hero h1{
        font-size:48px;
    }

    .dj-event-box{
        width:100%;
    }

    .dj-section-head{
        flex-direction:column;
        gap:20px;
        align-items:flex-start;
    }
}

/* =========================
EVENTS
========================= */

.dj-events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.dj-event-card{
    background:#0b0718;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.4s;
}

.dj-event-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 40px rgba(176,38,255,0.18);
}

.dj-event-image{
    height:320px;
    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-event-image-2{
    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-event-image-3{
    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1506157786151-b8491531f063?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-event-content{
    padding:30px;
}

.dj-event-content span{
    color:#b026ff;
    font-size:14px;
    font-weight:700;
}

.dj-event-content h3{
    margin:15px 0;
    font-size:32px;
}

.dj-event-content p{
    color:#c8c8dd;
    margin-bottom:25px;
}

.dj-event-content a{
    color:white;
    text-decoration:none;
    border-bottom:1px solid #b026ff;
}

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

.dj-about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.dj-about-text span{
    color:#b026ff;
    letter-spacing:3px;
    font-size:13px;
}

.dj-about-text h2{
    font-size:70px;
    line-height:1;
    margin:25px 0;
}

.dj-about-text p{
    color:#c8c8dd;
    margin-bottom:40px;
    max-width:600px;
    line-height:1.8;
}

.dj-about-image{
    height:700px;
    border-radius:30px;

    background:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1571266028243-d220c9c3b4a3?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

/* =========================
GALLERY
========================= */

.dj-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.dj-gallery-item{
    height:300px;
    border-radius:24px;
    transition:0.4s;

    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-gallery-item-2{
    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-gallery-item-3{
    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1499364615650-ec38552f4f34?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-gallery-item-4{
    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-gallery-item:hover{
    transform:translateY(-10px);
}

/* =========================
CONTACT
========================= */

.dj-contact-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:70px;
    border-radius:30px;
    background:#0b0718;
}

.dj-contact-info span{
    color:#b026ff;
    letter-spacing:3px;
    font-size:13px;
}

.dj-contact-info h2{
    font-size:60px;
    line-height:1;
    margin:25px 0;
}

.dj-contact-info p{
    color:#c8c8dd;
    line-height:1.8;
}

.dj-contact-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.dj-contact-form input,
.dj-contact-form textarea{
    background:#140d25;
    border:none;
    padding:22px;
    border-radius:14px;
    color:white;
    font-size:16px;
}

.dj-contact-form textarea{
    min-height:180px;
    resize:none;
}

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

@media(max-width:1100px){

    .dj-events-grid,
    .dj-gallery-grid,
    .dj-about-grid,
    .dj-contact-box{
        grid-template-columns:1fr;
    }

    .dj-about-image{
    height:700px;
    border-radius:30px;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.7)
    ),
    url('https://images.unsplash.com/photo-1571266028243-d220c9c3b4a3?q=80&w=1974&auto=format&fit=crop')
    center center/cover;
}

.dj-about-image::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at center,
    rgba(176,38,255,0.28),
    transparent 60%);
}
}