/* ==================== RENK PALETİ ==================== */
:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #151515;
    --color-text: #e8e8e8;
    --color-text-muted: #9a9a9a;
    --color-accent: #d4a574;
    --color-accent-dim: #8b7355;
}

/* ==================== GENEL AYARLAR ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* ==================== NAVBAR ==================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

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

/* ==================== ALIŞVERİŞ SEPETİ İKONU ==================== */
.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--color-accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* ==================== SEPET PANEL ==================== */
.cart-panel {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--color-bg-secondary);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-panel.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
}

.cart-close {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: var(--color-accent);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #2a2a2a;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-muted);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.cart-total-amount {
    color: var(--color-accent);
    font-family: 'Cormorant Garamond', serif;
}

.cart-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--color-accent);
    border: none;
    color: var(--color-bg);
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout:hover {
    background: var(--color-accent-dim);
    transform: translateY(-2px);
}

.cart-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--color-text-muted);
}

/* ==================== HERO BÖLÜMÜ ==================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-cta:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* ==================== BÖLÜM GENELLERİ ==================== */
section {
    padding: 8rem 3rem;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* ==================== HAKKIMIZDA BÖLÜMÜ ==================== */
#about {
    background: var(--color-bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-muted);
}

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

.about-text strong {
    color: var(--color-accent);
    font-weight: 500;
}

.about-image {
    height: 500px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
}

/* ==================== MÜZİK BÖLÜMÜ ==================== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.music-player {
    background: var(--color-bg-secondary);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.music-player.visible {
    opacity: 1;
    transform: translateY(0);
}

.music-player:hover {
    border-color: var(--color-accent-dim);
    transform: translateY(-5px);
}

.music-player h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.player-embed {
    width: 100%;
    height: 380px;
    background: #1a1a1a;
    border: none;
}

/* ==================== VİDEOLAR BÖLÜMÜ ==================== */
#videos {
    background: var(--color-bg-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #1a1a1a;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.video-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== MERCHANDISE BÖLÜMÜ ==================== */
/* YENI EKLENEN BÖLÜM - ÜRÜNLER */
#merchandise {
    background: var(--color-bg);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* ÜRÜN KARTI */
.merch-item {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.merch-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.merch-item:hover {
    border-color: var(--color-accent-dim);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.15);
}

/* ÜRÜN GÖRSELI */
.merch-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Gerçek ürün görseli eklemek için:
.merch-item:nth-child(1) .merch-image {
    background-image: url('tshirt.jpg');
    background-size: cover;
    background-position: center;
}
*/

.merch-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.merch-item:hover .merch-image::before {
    opacity: 1;
}

/* ÜRÜN BİLGİLERİ */
.merch-details {
    padding: 1.5rem;
}

.merch-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.merch-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.merch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

/* FİYAT */
.merch-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--color-accent);
}

/* SEPETE EKLE BUTONU */
.add-to-cart {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.add-to-cart:active {
    transform: translateY(0);
}

/* ==================== GALERİ BÖLÜMÜ ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ==================== ETKİNLİKLER BÖLÜMÜ ==================== */
#events {
    background: var(--color-bg-secondary);
}

.events-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.event-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.event-item:hover {
    padding-left: 1rem;
}

.event-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--color-accent);
    min-width: 120px;
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.event-ticket {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.event-ticket:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* ==================== İLETİŞİM BÖLÜMÜ ==================== */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-email {
    font-size: 2rem;
    color: var(--color-accent);
    text-decoration: none;
    display: inline-block;
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.contact-email:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-5px);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--color-bg);
    padding: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ==================== ANİMASYONLAR ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== MOBİL UYUMLULUK ==================== */
@media (max-width: 768px) {
    nav .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

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

    section {
        padding: 5rem 1.5rem;
    }

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

    .about-image {
        height: 300px;
    }

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

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

    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .event-date {
        font-size: 2rem;
    }

    .cart-panel {
        width: 100%;
        right: -100%;
    }
}
