/* --- TİPOGRAFİ AYARLARI --- */
:root {
    /* Renk ve Font Değişkenleri (İleride değiştirmek kolay olsun) */
    --gold-color: #D4AF37;
    --art-font: 'Cormorant Garamond', serif;
    --body-font: 'Helvetica Neue', sans-serif;
    /* Okuma metinleri yine modern kalsın */
}

/* Tüm Başlıkları Özelleştir */
h1,
h2,
h3,
.section-title,
.hero-title,
.site-logo {
    font-family: var(--art-font) !important;
    color: var(--gold-color) !important;
    font-weight: 300;
    /* İnce ve zarif */
    letter-spacing: 1px;
    /* Harfler biraz nefes alsın */
}

/* İtalik vurgular için */
i,
em {
    font-family: var(--art-font);
    color: var(--gold-color);
}


/* GLOBAL STİLLER & MENÜ */
body,
html {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}



/* --- MAIN HEADER (Üst Çubuk) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;

    /* Geçiş Efektleri */
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, height 0.4s ease;
    background-color: transparent; /* Başlangıçta şeffaf */
}

/* SCROLL YAPILINCA BU SINIF EKLENECEK */
.main-header.scrolled {
    background-color: rgba(10, 10, 10, 0.8);
    /* %90 Siyah */
    backdrop-filter: blur(10px);
    /* Buzlu cam efekti */
    height: 70px;
    /* Scroll yapınca çubuk biraz incelsin (şık durur) */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* --- LOGO AYARLARI (Konumlandırma silindi, Flex'e uydu) --- */
.site-logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* --- MENÜ BUTONU (Konumlandırma silindi) --- */
.menu-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 35px;
}

/* Menü açıldığında (.menu-open sınıfı eklendiğinde) eski butonu gizle */
.menu-btn.menu-open {
    opacity: 0;
    pointer-events: none; /* Tıklanmasını da engelle */
}

.menu-bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .main-header {
        padding: 0 20px;
        height: 70px;
    }

    .site-logo {
        font-size: 1.2rem;
    }
}

.menu-open .bar-1 {
    transform: rotate(45deg) translate(5px, 6px);
}
.menu-open .bar-2 {
    opacity: 0;
}
.menu-open .bar-3 {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Menü Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.nav-links li {
    margin: 20px 0;
    overflow: hidden;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 300;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
    transform: scale(1.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-links a {
        font-size: 2rem;
    }

    .menu-btn {
        right: 20px;
    }
}

/* --- MENÜ İÇİ KAPATMA BUTONU --- */
.overlay-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    
    background: none;
    border: none;
    color: #fff;
    font-size: 4rem; /* Oldukça büyük ve fark edilir */
    line-height: 0.5; /* Dikey hizalama ayarı */
    font-weight: 100; /* İnce bir yapı */
    cursor: pointer;
    z-index: 2100; /* Her şeyin en üstünde */
    
    transition: transform 0.3s ease, color 0.3s ease;
}

.overlay-close-btn:hover {
    transform: rotate(90deg); /* Üzerine gelince dönsün */
    color: var(--gold-color); /* Altın rengine dönsün */
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .overlay-close-btn {
        right: 20px;
        font-size: 3.5rem;
    }
}


/* --- GLOBAL MODAL STİLLERİ --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1500;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a1a1a;
    width: 80%;
    max-width: 1000px;
    height: 70vh;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-image-col {
    flex: 1.5;
    background: #000;
    overflow: hidden;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0.6;
}

.close-btn:hover {
    opacity: 1;
}

#modalTitle {
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 300;
}

#modalArtist {
    color: #888;
    margin-bottom: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#modalDesc {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

#modalPrice {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-top: auto;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        height: 90vh;
    }
}



/* --- FOOTER (ALT BİLGİ) --- */
.site-footer {
    background-color: #111;
    border-top: 1px solid #222;
    padding: 80px 50px 40px;
    margin-top: auto; /* Sayfa içeriği kısaysa bile en alta it */
    font-family: var(--body-font);
}

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

/* Üst Kısım Düzeni */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--art-font);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Ayırıcı Çizgi */
.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin-bottom: 40px;
}

/* Alt Kısım (Yasal Uyarılar) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #555;
    font-size: 0.8rem;
}

.copyright-notice {
    max-width: 600px;
    text-align: right;
    line-height: 1.5;
    font-size: 0.75rem; /* Yasal uyarıyı biraz daha küçük yap */
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .site-footer { padding: 60px 20px 30px; }
    
    .footer-top { 
        flex-direction: column; 
        gap: 40px; 
    }
    
    .footer-links { 
        flex-direction: column; 
        gap: 15px; 
    }
    
    .footer-bottom { 
        flex-direction: column-reverse; /* Yasal uyarı alta gelsin */
        gap: 20px; 
        align-items: flex-start;
    }
    
    .copyright-notice { 
        text-align: left; 
    }
}