:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #111111;
    --accent: #d2b48c; /* Sand/Nude */
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --white: #ffffff;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;

    --padding-section: 8rem 2rem;
    --max-width: 1400px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px; /* Pill shape */
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #e6ccb0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.placeholder-img {
    background-color: #333;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

nav.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Right aligned text */
    padding-right: 10%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://pub-5b2092c5bb4346758c49be6cc97da98b.r2.dev/kisha/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Vignette Overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(26, 26, 26, 0.8) 90%);
}

.hero-content {
    text-align: right;
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-title .italic {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* --- RELEASES (CAROUSEL) --- */
.releases {
    padding: var(--padding-section);
    text-align: center;
    background-color: var(--bg-dark);
}

.releases-header {
    margin-bottom: 4rem;
}

.releases-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Simple CSS Carousel Logic using Flex */
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    /* Hide scrollbar */
    scrollbar-width: none;
}
.carousel-container::-webkit-scrollbar {
    display: none;
}

.release-item {
    flex: 0 0 auto;
    position: relative;
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.8);
    text-align: center;
    width: 250px;
}

.release-item.active {
    opacity: 1;
    transform: scale(1.1); /* 20% larger feel */
    z-index: 2;
}

.release-cover {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* Circular Mask */
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.release-item.active .release-cover {
    border-color: var(--accent);
}

.release-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.release-item.active .release-title {
    opacity: 1;
    transform: translateY(0);
}

.view-all-btn-container {
    margin-top: 3rem;
}

/* --- PRESS / VALUES (GRID) --- */
.press {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-darker);
    /* Grid Lines Overlay */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 33.33% 50%; /* 3x2 Grid approx */
    display: flex;
}

.press-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.press-left {
    padding: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.press-title {
    font-size: 4rem;
    transform-origin: top left;
    /* Optional rotation for style */
    /* transform: rotate(90deg) translate(0, -100%); */
    color: var(--accent);
}

.press-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.press-cell {
    padding: 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05); /* Just in case */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.press-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.press-img-box {
    width: 100%;
    height: 200px;
    background-color: #2a2a2a;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #444;
}

/* --- ABOUT (JOURNEY) --- */
.about {
    padding: var(--padding-section);
    background-color: var(--bg-dark);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-header {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.about-header .highlight {
    color: var(--accent);
    font-style: italic;
}

.about-collage {
    position: relative;
    height: 600px;
    width: 100%;
}

.collage-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.collage-rect-1 {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px;
    height: 400px;
    background-image: url('https://media.dunemusic.co/kisha/about-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.collage-rect-2 {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 250px;
    height: 300px;
    background-image: url('https://media.dunemusic.co/kisha/about-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- MERCH --- */
.merch {
    padding: var(--padding-section);
    background-color: var(--bg-darker);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.merch-item {
    background-color: var(--bg-dark);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.merch-item:hover {
    transform: translateY(-5px);
}

.merch-img {
    height: 300px;
    background-color: #2a2a2a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.merch-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.merch-price {
    color: var(--accent);
    font-weight: 600;
}

/* --- CONTACT --- */
.contact {
    padding: var(--padding-section);
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    margin-top: 3rem;
    text-align: left;
    background-color: var(--bg-darker);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle box shadow for depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: var(--accent); /* Changed to accent color for pop */
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background-color: rgba(255, 255, 255, 0.03); /* Slightly transparent */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 10px rgba(210, 180, 140, 0.1); /* Soft glow */
}

.full-width {
    width: 100%;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    background-color: #111;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .press-container {
        grid-template-columns: 1fr;
    }

    .press-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
    }

    .press-title {
        transform: none;
        font-size: 3rem;
    }

    .press-right {
        grid-template-columns: 1fr;
    }

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

    .about-collage {
        height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .collage-circle {
        width: 250px;
        height: 250px;
        position: static;
        margin-bottom: -150px;
    }

    .collage-rect-1 {
        width: 200px;
        height: 250px;
        position: static;
        margin-bottom: -100px;
        transform: translateX(-30px);
    }

    .collage-rect-2 {
        width: 180px;
        height: 220px;
        position: static;
        transform: translateX(30px);
    }

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