/* ========== CSS VARIABLES ========== */
:root {
    --bg-deep: #0a0908;
    --bg-dark: #111010;
    --bg-card: #1a1816;
    --bg-card-hover: #221f1b;
    --gold: #c8a44e;
    --gold-light: #e4c970;
    --gold-dim: #8a7235;
    --amber: #d4893f;
    --cream: #e8dcc8;
    --cream-dim: #a89b88;
    --text-primary: #e8dcc8;
    --text-secondary: #9a8e7e;
    --text-muted: #6b6156;
    --red-accent: #8b3a3a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) var(--bg-deep);
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--bg-deep);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ========== NOISE OVERLAY ========== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--transition);
}

.nav.scrolled {
    background: rgba(10, 9, 8, 0.92);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(200, 164, 78, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-logo-img {
    height: 32px;
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition);
}

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

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

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 200;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 164, 78, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(139, 58, 58, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212, 137, 63, 0.04) 0%, transparent 50%);
}

/* Decorative line patterns */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.08;
}

.hero-lines::before,
.hero-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-lines::before { left: 20%; }
.hero-lines::after { right: 20%; }

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-logo {
    width: clamp(180px, 30vw, 360px);
    height: auto;
    margin: 0 auto 1.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.2s forwards;
}

.hero-subtitle-top {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--transition) 0.5s forwards;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    animation: fadeUp 1s var(--transition) 1s forwards;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.8s forwards;
}

.hero-cta {
    margin-top: 3.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 1.2s forwards;
}

.btn {
    padding: 0.9rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid var(--gold-dim);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--bg-deep);
    border-color: var(--gold);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-filled {
    background: var(--gold);
    color: var(--bg-deep);
}

.btn-filled::before {
    background: var(--gold-light);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 1.8s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========== SECTIONS COMMON ========== */
section {
    padding: 8rem 3rem;
    position: relative;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ========== MUZIK / DISKOGRAFI ========== */
#muzik {
    background: var(--bg-dark);
}

.muzik-header {
    text-align: center;
    margin-bottom: 4rem;
}

.muzik-header .section-desc {
    margin: 0 auto;
}

.muzik-header .section-divider {
    margin: 1rem auto 2rem;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.track-card {
    background: var(--bg-card);
    border: 1px solid rgba(200, 164, 78, 0.08);
    padding: 1.8rem;
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.5s var(--transition);
}

.track-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(200, 164, 78, 0.2);
    transform: translateY(-4px);
}

.track-card:hover::before {
    height: 100%;
}

.track-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(200, 164, 78, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
}

.track-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.track-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.track-excerpt {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-left: 1px solid var(--gold-dim);
    padding-left: 1rem;
}

.track-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.track-link {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    transition: color 0.3s ease;
}

.track-link:hover {
    color: var(--gold);
}

/* ========== VIDEOLAR ========== */
#videolar {
    background: var(--bg-deep);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.video-card {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 1px solid rgba(200, 164, 78, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--transition);
}

.video-card:hover {
    border-color: rgba(200, 164, 78, 0.25);
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.video-card:hover .video-thumbnail {
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 9, 8, 0.9) 0%, transparent 60%);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition);
}

.video-play::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--gold);
    margin-left: 3px;
}

.video-card:hover .video-play {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .video-play::after {
    border-color: transparent transparent transparent var(--bg-deep);
}

.video-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
}

.video-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

/* ========== HAKKINDA ========== */
#hakkinda {
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    aspect-ratio: 3/4;
    background: var(--bg-card);
    border: 1px solid rgba(200, 164, 78, 0.1);
    position: relative;
    overflow: hidden;
}

.about-logo-img {
    width: 60%;
    max-width: 280px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-image {
    background:
        linear-gradient(135deg, var(--bg-card) 0%, rgba(200, 164, 78, 0.05) 100%);
}

.about-text .section-desc {
    margin-bottom: 1.5rem;
}

.about-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 164, 78, 0.1);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ========== BLOG ========== */
#blog {
    background: var(--bg-deep);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(200, 164, 78, 0.08);
    padding: 2rem;
    transition: all 0.5s var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(200, 164, 78, 0.2);
    transform: translateY(-3px);
}

.blog-date {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1rem;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

.blog-read-more {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-read-more {
    color: var(--gold);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(200, 164, 78, 0.08);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 350px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200, 164, 78, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 164, 78, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: var(--bg-card);
    border: 1px solid rgba(200, 164, 78, 0.1);
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter .section-divider {
    margin: 1rem auto 1.5rem;
}

.newsletter .section-desc {
    margin: 0 auto;
}

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    margin-top: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--bg-deep);
    border: 1px solid rgba(200, 164, 78, 0.15);
    border-right: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter input:focus {
    border-color: var(--gold-dim);
}

.newsletter input::placeholder {
    color: var(--text-muted);
}

.newsletter button {
    padding: 0.9rem 1.8rem;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--gold-light);
}

/* ========== ILETISIM ========== */
#iletisim {
    background: var(--bg-dark);
}

#iletisim .social-links {
    max-width: 700px;
    margin: 3rem auto 0;
    justify-content: center;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s var(--transition);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.video-modal-close:hover {
    color: var(--gold);
}

.video-modal-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--bg-card);
}

.video-modal-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========== VIDEO PLACEHOLDER BG ========== */
.video-placeholder-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-bg--gold {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(200, 164, 78, 0.08) 100%);
}

.video-placeholder-bg--red {
    background: linear-gradient(135deg, rgba(139, 58, 58, 0.1) 0%, var(--bg-card) 100%);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    section {
        padding: 5rem 1.5rem;
    }

    .nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 9, 8, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .about-image {
        aspect-ratio: 16/9;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .newsletter {
        padding: 2.5rem 1.5rem;
    }

    .newsletter-input-wrap {
        flex-direction: column;
    }

    .newsletter input {
        border-right: 1px solid rgba(200, 164, 78, 0.15);
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .tracks-grid {
        grid-template-columns: 1fr;
    }

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}
