/*
Theme Name: DSAI Elite Edition
Description: Premium, Minimalist, Luxury Artist Theme for DSAI.
Version: 4.2
Author: wiralsen
*/

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-accent: #111111;
    --accent-bronze: #cda274;
    --accent-gold: #e5b98a;
    --text-primary: #ffffff;
    --text-muted: #a0a0a0;
    --text-dim: #666666;
    --container-width: 1280px;
    --header-height: 90px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =====================================================
   BASE STYLES
   ===================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-language-override: "ENG"; }
body { font-language-override: "ENG"; }
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-language-override: "ENG";
    text-transform: none;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* =====================================================
   COMPONENTS
   ===================================================== */
.section-header { margin-bottom: 60px; text-align: center; }
.section-tag {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-bronze);
    margin-bottom: 15px;
}
.section-eyebrow {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-bronze);
    margin-bottom: 10px;
    font-language-override: "ENG";
}
.section-title { font-size: 3.5rem; margin-bottom: 20px; font-language-override: "ENG"; }
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-bronze);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    font-language-override: "ENG";
}
.btn-primary { background: var(--accent-bronze); color: #000; }
.btn-primary:hover { background: var(--accent-gold); transform: translateY(-3px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }

/* =====================================================
   HEADER (FIXED)
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    height: 90px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.header-logo {
    flex: 0 0 auto !important;
    display: none !important;
}

.logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-primary);
    white-space: nowrap;
    font-language-override: "ENG";
}

.header-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 60px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.nav-item {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

.nav-link {
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    transition: color 0.3s ease, border-bottom 0.3s ease !important;
    display: inline-block !important;
    padding: 8px 0 !important;
    border-bottom: 3px solid transparent !important;
    white-space: nowrap !important;
    font-language-override: "ENG" !important;
}

.nav-link:hover {
    color: var(--accent-bronze) !important;
    border-bottom: 3px solid var(--accent-bronze) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
}

.mobile-nav ul {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 30px;
}

.mobile-nav ul li a {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--text-primary);
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    /* Removed margin-top to allow hero to be behind transparent header if needed, 
       but we will use padding to push content down */
}

.hero-slider-wrapper {
    height: 100%;
    position: relative;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 100px 20px 0;
}

.slide-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-bronze);
    margin-bottom: 20px;
    font-language-override: "ENG";
}

.slide-title {
    font-size: 8rem;
    margin-bottom: 20px;
    line-height: 1;
    font-language-override: "ENG";
}

.slide-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.slide-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.slide-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-bronze);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    font-language-override: "ENG";
}

.slide-cta.cta-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.slider-controls {
    position: absolute;
    bottom: 60px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-nav {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--accent-bronze);
    color: #000;
}

.slider-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
}

.indicator.active {
    background: var(--accent-bronze);
}

.slider-info {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 20;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: 2px;
    font-language-override: "ENG";
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-bronze);
}

.info-divider {
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

/* =====================================================
   BIO SECTION
   ===================================================== */
.bio-section {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bio-text .lead {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.bio-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.bio-img-wrapper {
    position: relative;
}

.bio-img-wrapper img {
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.img-accent-border {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--accent-bronze);
    z-index: -1;
    opacity: 0.3;
}

/* =====================================================
   MUSIC SECTION
   ===================================================== */
.releases-section {
    padding: 140px 0;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.release-card {
    transition: var(--transition);
}

.release-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-card:hover .release-artwork img {
    transform: scale(1.1);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-bronze);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.release-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.release-meta {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-language-override: "ENG";
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page-wrapper {
    padding-top: 120px;
    background: var(--bg-primary);
}

.contact-hero {
    padding: 60px 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 100px;
}

.contact-card {
    background: #111;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(205, 162, 116, 0.1);
}

.contact-card h3 {
    font-size: 2.2rem;
    color: var(--accent-bronze);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.dsai-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-language-override: "ENG";
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 18px;
    color: #fff;
    border-radius: 8px;
}

.btn-submit {
    width: 100%;
    background: var(--accent-bronze);
    color: #000;
    border: none;
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    font-language-override: "ENG";
}

.contact-visual-container .contact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-quote {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.image-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-dim);
}

.social-links a:hover {
    color: var(--accent-bronze);
    transform: translateY(-5px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.8rem;
    }

    .slide-title {
        font-size: 5rem;
    }

    .bio-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slider-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 110vh; /* Increased height for better immersion on mobile */
    }

    .slide-image img {
        object-position: center 20%;
    }

    .slide-content {
        padding: 60px 20px 0; /* Reduced padding to move content up */
    }

    .slide-title {
        font-size: 4.5rem; /* Slightly larger for impact */
        margin-bottom: 15px;
    }

    .header-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        margin-left: auto;
    }

    .releases-grid {
        grid-template-columns: 1fr;
    }

    .slide-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .header-wrapper {
        padding: 0 20px;
        height: 70px !important; /* Smaller header on mobile */
    }

    .logo-link {
        font-size: 1.4rem;
    }
}
