* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: 'Playfair Display', serif;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    color: #ffffff;
    padding-top: 70px;
}

/* NAVBAR */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

/* INNER CONTAINER (THIS IS THE FIX) */
.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT */
.nav-left a {
    margin-right: 25px;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    position: relative;
}

.nav-left a:hover {
    color: white;
}

.nav-left a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: white;
    transition: 0.3s;
}

.nav-left a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
}

/* LOGO STYLE */
.nav-logo {
    width: 45px;
    filter: brightness(0.9);
    height: auto;
    opacity: 0.9;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.nav-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1.2);
    transform: scale(1.08);
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;

    background: url('../imgs/dj-background.png') center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🔥 CRITICAL FIX HERE */
.hero-content {
    display: flex;
    flex-direction: row; /* THIS PREVENTS STACKING */
    align-items: center;
    justify-content: space-between;

    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
}

/* ABOVE OVERLAY */
.hero-left,
.hero-right {
    position: relative;
    z-index: 1;
}

/* LEFT */
.hero-left {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    
}

/* RIGHT */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 260px; /* 🔥 prevents collapsing */
}

/* LOGO */
.hero-eye {
    width: 260px;
    opacity: 0.9;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
    transition: 0.4s;
}

.hero-eye:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.3));
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
}

/* MAIN TITLE */
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 90px;
    margin: 0;
    margin-bottom: 20px;
    color: white;
}

/* 🔥 PRODUCTIONS — manually positioned */
.hero-productions {
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%); /* 🔥 centers it perfectly under BLACKOUT */

    font-family: 'Cinzel', serif;
    font-size: 45px;
    letter-spacing: 6px;
    color: #ddd;
}

/* DATE */
.hero-sub {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    margin: 20px 0;
}

/* GENRES */
.hero-genres {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-description {
    font-size: 14px;
    color: red
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    padding: 12px 30px;
    border: 1px solid rgb(255, 255, 255);
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;

    background: #050505;

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.btn-secondary:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
    color: white;
    transform: translateY(-2px);
}

/* ✨ SHINE EFFECT (SAFE) */
.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transform: skewX(-20deg);
}

.btn-secondary:hover::before {
    left: 130%;
    transition: 0.6s;
}

.btn-secondary {
    padding: 12px 30px;
    border: 1px solid rgb(255, 255, 255);
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
    color: white;
    transform: translateY(-2px);
}

/* ✨ SHINE EFFECT (SAFE) */
.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transform: skewX(-20deg);
}
.btn-secondary:hover::before {
    left: 130%;
    transition: 0.6s;
}

/* ================= GRID ================= */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 60px;
}

.block {
    background: rgba(255,0,0,0.05);
    padding: 30px;
    position: relative;
}

.large {
    grid-column: span 2;
    font-size: 24px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text {
    font-size: 14px;
}

/* EVENT */
.event {
    position: relative;
    overflow: hidden;
}

.event img {
    width: 100%;
    filter: brightness(0.4);
    transition: 0.4s;
}

.event:hover img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid red;
    text-decoration: none;
    color: white;
    margin-top: 20px;
}

/* ================= STORIES ================= */

.stories-section {
    padding: 120px 80px;
    background: black;
    color: white;
}

.stories-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.stories-header p {
    color: #888;
    font-size: 14px;
    margin-bottom: 80px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-block {
    background: #0a0a0a;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}

.story-block:hover {
    border: 1px solid rgba(255,255,255,0.2);
}

.story-block.large {
    grid-column: span 2;
    height: auto;
}

.story-block.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) grayscale(100%);
    transition: 0.4s ease;
}

.story-block.image:hover img {
    filter: grayscale(0%) brightness(0.9);
}

.story-block.text {
    font-size: 20px;
    line-height: 1.9;
    color: #ddd; /* brighter text */
    font-weight: 300; /* softer luxury feel */
}

.story-block.vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    font-size: 60px;
    font-family: 'Cinzel', serif;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* DEFAULT (gray style like you have now) */
.story-block.vertical span {
    color: rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

/* 🔥 HOVER → TURN RED */
.story-block.vertical:hover span {
    color: #ff2a2a;
    text-shadow:
        0 0 5px rgba(255, 0, 0, 0.4),
        0 0 15px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 0, 0.2);
}

.story-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff2a2a;
    transition: 0.4s;
}

.story-block:hover::after {
    width: 100%;
}

@media (max-width: 900px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-block.large {
        grid-column: span 1;
    }

    /* 🔥 MOBILE FIX */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

.logo-block img {
    filter: brightness(0.5) grayscale(100%);
    transition: 0.4s ease;
}

.logo-block:hover img {
    filter:
        brightness(1)
        sepia(1)
        saturate(500%)
        hue-rotate(-10deg)
        drop-shadow(0 0 5px rgba(255, 0, 0, 0.4))
        drop-shadow(0 0 15px rgba(255, 0, 0, 0.3))
        drop-shadow(0 0 30px rgba(255, 0, 0, 0.2));
}

/* ================= FOOTER ================= */
.footer-section {
    padding: 80px 20px; /* 🔥 reduced from 140 */
    
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(to top, #000, #050505);
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* CONTENT */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* reduced from 45 */
}

/* BUTTON */
.footer-btn {
    padding: 16px 50px; /* bigger button */
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;

    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}

/* 🔥 HOVER EFFECT */
.footer-btn:hover {
    box-shadow: 0 0 15px rgba(255,255,255,0.15),
                0 0 30px rgba(255,255,255,0.05);
    transform: translateY(-2px);
    border-color: white;
}

/* ✨ SHINE EFFECT */
.footer-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: skewX(-20deg);
}

.footer-btn:hover::before {
    left: 130%;
    transition: 0.6s;
}

/* COPYRIGHT TEXT */
.footer-copy {
    font-size: 12px;
    color: #666;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    line-height: 1.6;
}

/* OPTIONAL SMALL LINE ABOVE TEXT */
.footer-copy::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 15px;
}

/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 60px;
    background: url('../imgs/black-texture.png') center/cover no-repeat;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.about-container {
    max-width: 1200px;
    margin: auto;

    display: grid; /* 🔥 THIS IS THE FIX */
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}


.about-left h2,
.about-right h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.about-left p {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 10px;
    letter-spacing: 1px;
}


.sponsors {
    display: flex;
    gap: 30px;
    align-items: center;
}

.sponsors img {
    width: 80px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s ease;
}



.sponsors img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.about-left {
    text-align: left;
}

.about-right {
    text-align: right;
}


/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

    * {
        box-sizing: border-box;
    }

    /* NAVBAR */
    .nav-inner {
        padding: 12px 15px;
    }

    .nav-left a {
        font-size: 12px;
        margin-right: 15px;
    }

    .nav-logo {
        width: 35px;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        padding: 40px 20px;
        background: url('../imgs/dj-background.png') center/cover no-repeat;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left {
        max-width: 100%;
        align-items: center;
    }

    /* 🔥 TITLE FIX */
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 🔥 CRITICAL FIX (NO OVERFLOW) */
    .hero-productions {
        position: static; /* REMOVE absolute */
        display: block;

        font-size: 28px;
        margin-top: -8px;
        letter-spacing: 4px;
        color: #ddd;
    }

    .hero-sub {
        font-size: 24px;
    }

    .hero-genres {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-description {
        color:red

        text-shadow: 
            0 5px 15px rgba(0,0,0,1),
            0 10px 30px rgba(0,0,0,1),
            0 20px 60px rgba(0,0,0,0.95);
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-eye {
        width: 180px;
    }

    /* STORIES */
    .stories-section {
        padding: 60px 15px;
    }

    .stories-header h2 {
        font-size: 28px;
    }

    .stories-header p {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-block.large {
        height: 220px;
    }

    .story-block.image img {
        height: 100%;
        object-fit: cover;
    }

    .story-block.text {
        font-size: 16px;
        line-height: 1.6;
    }

    .story-block.vertical {
        font-size: 40px;
    }

    /* ABOUT */
    .about-section {
        padding: 60px 20px;
        background: url('../imgs/black-texture.png') center/cover no-repeat;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-center {
        order: 2; /* stays in middle */
    }

    .about-left {
        order: 1;
    }

    .about-right {
        order: 3;
    }

    .sponsors {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sponsors img {
        width: 60px;
    }

    /* FOOTER */
    .footer-section {
        padding: 60px 20px;
    }

    .footer-btn {
        padding: 14px 30px;
        font-size: 12px;
    }

    .footer-copy {
        font-size: 10px;
        letter-spacing: 2px;
        text-align: center;
    }
}
