@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;600&display=swap');

/* ========================
   BASE RESET
======================== */
html, body {
    background: #080808 !important;
    color: #ffffff;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

#canvas, #box_wrapper {
    background: #080808 !important;
}

.ds, .ms, .page_header, .page_topline, .page_footer, .page_copyright {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

a { color: inherit; }

/* ========================
   NAV
======================== */
.dz-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.8rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8,8,8,0.9) 0%, transparent 100%);
    transition: background 0.4s, padding 0.4s;
}

.dz-nav.scrolled {
    background: rgba(8,8,8,0.97);
    padding: 1.1rem 3rem;
}

.dz-logo {
    font-weight: 100;
    font-size: 1.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.dz-nav__links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dz-nav__links a {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.2s;
}

.dz-nav__links a:hover { color: #cf2e29; }

.dz-nav__social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.dz-nav__social a {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.dz-nav__social a:hover { color: #cf2e29; }

.dz-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.dz-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s;
}

/* ========================
   DIVIDER
======================== */
.dz-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #cf2e29, transparent);
    border: none;
    margin: 0;
}

/* ========================
   HERO
======================== */
.dz-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 3rem 7rem;
    overflow: hidden;
}

.dz-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/res/images/hero.webp');
    background-size: cover;
    background-position: center 20%;
    filter: brightness(0.55);
}

.dz-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.25) 50%, rgba(8,8,8,0.05) 100%);
}

.dz-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.dz-hero__label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #cf2e29;
    margin-bottom: 1rem;
    display: block;
}

.dz-hero__name {
    font-weight: 100;
    font-size: clamp(3.5rem, 10vw, 9rem);
    letter-spacing: 16px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 1rem;
    color: #fff;
}

.dz-hero__tagline {
    font-weight: 200;
    font-size: clamp(0.75rem, 2vw, 1.1rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}

.dz-hero__scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.80);
    text-decoration: none;
}

.dz-hero__scroll::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.45);
}

/* ========================
   STATS
======================== */
.dz-stats {
    background: #050505;
    padding: 3.5rem 3rem;
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.dz-stat { text-align: center; }

.dz-stat__number {
    font-size: 3rem;
    font-weight: 100;
    color: #cf2e29;
    letter-spacing: 2px;
    line-height: 1;
}

.dz-stat__label {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    margin-top: 0.6rem;
}

.dz-stats__cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid #cf2e29;
    background: #cf2e29;
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
    align-self: center;
}

.dz-stats__cta:hover {
    background: transparent;
    color: #cf2e29;
    text-decoration: none;
}

/* ========================
   SECTIONS
======================== */
.dz-section {
    padding: 6rem 3rem;
}

.dz-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dz-section--alt { background: #0a0a0a; }

.dz-section-label {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #cf2e29;
    margin-bottom: 0.5rem;
}

.dz-section-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 100;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: #fff;
}

.dz-section-text {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.80);
    font-weight: 300;
    max-width: 720px;
}

/* ========================
   LIVE SHOW CARDS
======================== */
.dz-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid #1a1a1a;
}

.dz-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.3s;
}

.dz-card:last-child { border-right: none; }

.dz-card:hover { background: #0f0f0f; }

.dz-card__number {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #cf2e29;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.dz-card__title {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.dz-card__text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    margin-bottom: 1rem;
}

.dz-card__list {
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.62);
    line-height: 2;
}

.dz-card__list li::before {
    content: '— ';
    color: #cf2e29;
}

/* ========================
   MUSIK
======================== */
.dz-spotify-wrap {
    margin-bottom: 3rem;
}

.dz-spotify-wrap iframe {
    width: 100%;
    border-radius: 0;
    border: none;
}

.dz-music-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dz-music-video {
    position: relative;
    aspect-ratio: 16/9;
}

.dz-music-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dz-music-video__title {
    margin-top: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
}

/* video.js local player inside music grid */
.dz-music-videos .video-js {
    width: 100% !important;
    height: auto !important;
}

/* ========================
   BIO / DENEEZE
======================== */
.dz-bio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.dz-bio__img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.dz-bio__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(207,46,41,0.2);
    pointer-events: none;
}

.dz-bio__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.dz-bio__text p {
    font-size: 1rem;
    line-height: 1.95;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.dz-bio__cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2.5rem;
    border: 1px solid #cf2e29;
    color: #cf2e29;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-weight: 400;
}

.dz-bio__cta:hover {
    background: #cf2e29;
    color: #fff;
    text-decoration: none;
}

/* ========================
   NEWS
======================== */
.dz-news-placeholder {
    margin-top: 3rem;
    padding: 5rem 2rem;
    border: 1px solid #1a1a1a;
    text-align: center;
}

.dz-news-placeholder p {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ========================
   MEDIA
======================== */
.dz-media-video-main {
    position: relative;
    aspect-ratio: 16/9;
    margin-bottom: 3rem;
}

.dz-media-video-main iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dz-shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.dz-short-item {
    position: relative;
    aspect-ratio: 9/16;
}

.dz-short-item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dz-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.dz-photo-grid a {
    display: block;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.dz-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.8) saturate(0.9);
    transition: filter 0.4s, transform 0.4s;
}

.dz-photo-grid a:hover img {
    filter: brightness(1) saturate(1);
    transform: scale(1.04);
}

/* ========================
   CONTACT
======================== */
.dz-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-top: 3rem;
}

.dz-contact-info h3 {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.80);
    margin-bottom: 0.5rem;
}

.dz-contact-info p,
.dz-contact-info a {
    font-size: 1rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.9;
    text-decoration: none;
    font-weight: 300;
}

.dz-contact-info a:hover { color: #cf2e29; }

.dz-contact-info .dz-contact-divider {
    height: 1px;
    background: #1a1a1a;
    margin: 1.5rem 0;
}

.dz-contact-info .dz-contact-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    line-height: 1.7;
}

/* Form */
.dz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dz-form-group {
    margin-bottom: 1.8rem;
}

.dz-form-group label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.dz-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #222;
    padding: 0.7rem 0;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.25s;
}

.dz-input:focus { border-bottom-color: #cf2e29; }
.dz-input::placeholder { color: rgba(255,255,255,0.38); }

.dz-input.is-invalid { border-bottom-color: #cf2e29; }

.dz-btn-submit {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid #cf2e29;
    color: #cf2e29;
    font-family: inherit;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 0.5rem;
}

.dz-btn-submit:hover {
    background: #cf2e29;
    color: #fff;
}

.dz-hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.dz-form-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1rem;
}

/* ========================
   FOOTER
======================== */
.dz-footer {
    background: #030303;
    padding: 5rem 3rem 2rem;
}

.dz-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dz-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #141414;
}

.dz-footer__brand-name {
    font-size: 1.4rem;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.dz-footer__tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.8;
    font-weight: 300;
    max-width: 300px;
}

.dz-footer__social {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.dz-footer__social a {
    color: rgba(255,255,255,0.62);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.dz-footer__social a:hover { color: #cf2e29; }

.dz-footer__col h4 {
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.dz-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dz-footer__col ul li { margin-bottom: 0.8rem; }

.dz-footer__col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
}

.dz-footer__col ul li a:hover { color: #cf2e29; }

.dz-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 2px;
}

.dz-footer__bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.dz-footer__bottom a:hover { color: #cf2e29; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
    .dz-cards { grid-template-columns: repeat(2, 1fr); }
    .dz-music-videos { grid-template-columns: 1fr; }
    .dz-shorts-grid { grid-template-columns: repeat(2, 1fr); }
    .dz-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dz-nav { padding: 1.2rem 1.5rem; }
    .dz-nav.scrolled { padding: 0.9rem 1.5rem; }
    .dz-hero { padding: 0 1.5rem 5rem; }
    .dz-hero__bg { background-position: 58% 14%; }
    .dz-section { padding: 4rem 1.5rem; }
    .dz-stats { gap: 3rem; }

    .dz-nav__links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(8,8,8,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }

    .dz-nav__links.open { display: flex; }

    .dz-nav__links a {
        font-size: 1rem;
        letter-spacing: 6px;
    }

    .dz-hamburger { display: flex; }

    .dz-cards { grid-template-columns: 1fr; }
    .dz-card { border-right: none; }

    .dz-bio { grid-template-columns: 1fr; gap: 2rem; }
    .dz-bio__img-wrap { aspect-ratio: 4/3; }

    .dz-contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .dz-form-row { grid-template-columns: 1fr; }

    .dz-footer { padding: 4rem 1.5rem 2rem; }
    .dz-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .dz-footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .dz-shorts-grid { grid-template-columns: repeat(2, 1fr); }
    .dz-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
