/* --- LÜKS & MAT TASARIM (STYLE.CSS) --- */

/* Fontlar */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Urbanist:wght@200;300;400;500;600&display=swap');

:root {
    --bg-body: #020202;       /* Zifiri Mat Siyah */
    --bg-section-alt: #080808; /* Çok koyu antrasit */
    --bg-card: #101010;        /* Kart rengi (Mat koyu gri) */
    --gold: #D4AF37;           /* Altın rengi */
    --gold-muted: rgba(212, 175, 55, 0.5); /* Sönük altın */
    --text-white: #E0E0E0;     /* Kırık beyaz metin */
    --text-grey: #888888;      /* Gri yardımcı metin */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.05); /* Çok ince çerçeve */
}

/* Genel Sıfırlama */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

body {
    background-color: var(--bg-body) !important;
    color: var(--text-white) !important;
    font-family: 'Urbanist', sans-serif !important;
    overflow-x: hidden;
    line-height: 1.75;
}

/* HEADER (Üst Menü) */
header {
    background: rgba(2, 2, 2, 0.95) !important;
    backdrop-filter: blur(25px);
    border-bottom: var(--border-subtle);
    position: fixed !important;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    padding: 20px 5%;
    transition: all 0.4s ease;
}
header h1 a { 
    color: #fff !important; 
    font-family: 'Playfair Display', serif; 
    letter-spacing: 1px; 
    font-weight: 500;
}
header nav a { 
    color: #aaa !important; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600;
    transition: 0.3s; 
}
header nav a:hover { color: var(--gold) !important; }

/* HERO BÖLÜMÜ (Giriş Vitrini) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* NOT: Resim yolunun doğru olduğundan emin ol */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, var(--bg-body) 100%), 
                url('images/ana arka plan.webp') center/cover no-repeat fixed;
    /* Eğer header.php içinde body'ye margin verildiyse bu negatif margin gerekebilir */
    /* margin-top: -80px; */ 
    position: relative;
    padding: 0 !important;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
}

.hero p {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 500;
}

/* ALTIN BUTON */
.btn-gold {
    padding: 16px 45px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.4s ease;
    background: transparent;
    font-weight: 600;
}
.btn-gold:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* BÖLÜMLER (Mat ve Koyu) */
section { 
    padding: 100px 8%; 
    position: relative;
    background-color: var(--bg-body); 
}
section:nth-child(even) { background-color: var(--bg-section-alt); }

.title-area { text-align: center; margin-bottom: 70px; }
.title-area span {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.title-area span::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 50px; height: 1px; background-color: var(--gold);
}

/* ORTA YAZI ALANI */
.intro-text p {
    font-size: 1.15rem; color: var(--text-grey); line-height: 1.9; font-weight: 300;
}
.intro-text strong { color: var(--gold); font-weight: 500; }

/* KARTLAR (Mat ve Lüks) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.card:hover { 
    transform: translateY(-7px); 
    border-color: var(--gold-muted);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-img { width: 100%; height: 280px; overflow: hidden; }
.card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.6s; 
    filter: grayscale(30%) brightness(0.8);
}
.card:hover .card-img img { transform: scale(1.05); filter: grayscale(0%) brightness(1); }

.card-content { padding: 35px 25px; text-align: center; }
.card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; color: #fff; margin-bottom: 15px; font-weight: 500; letter-spacing: 0.5px;
}
.card p { color: var(--text-grey); font-size: 0.9rem; margin-bottom: 25px; font-weight: 300; }
.card a { 
    color: var(--gold); font-weight: 600; letter-spacing: 1.5px; font-size: 0.75rem; 
    text-transform: uppercase; position: relative;
}
.card a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold); transition: 0.3s;
}
.card a:hover::after { width: 100%; }

/* İSTATİSTİK ŞERİDİ (Mat Siyah) */
.stats-strip {
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    padding: 90px 0;
    display: flex; justify-content: space-around; flex-wrap: wrap;
    background: var(--bg-body);
    gap: 30px;
}
.stat-box { text-align: center; min-width: 150px; }
.stat-box h3 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.stat-box p { color: #777; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; font-weight: 600; }

/* FOOTER */
footer { background: #000 !important; padding: 50px !important; text-align: center; border-top: 1px solid #0f0f0f; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h2 { font-size: 3rem; }
    .hero p { font-size: 0.9rem; letter-spacing: 3px; }
    section { padding: 70px 5%; }
    .stats-strip { padding: 60px 0; flex-direction: column; gap: 50px; }
}