/* GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #fdfdfd; /* Çok açık krem/beyaz */
    color: #444; /* Yumuşak koyu gri yazı rengi */
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* --- YENİLENMİŞ WATERMARK (ARKAPLAN LOGOSU) --- */
body::before {
    content: "";
    position: fixed; /* Sayfa kayarken sabit kalsın */
    top: 0;
    left: 0;
    width: 100vw; /* Ekran genişliğinin tamamı */
    height: 100vh; /* Ekran yüksekliğinin tamamı */
    /* Gri logonun yolunu buraya yaz */
    background-image: url('resimler/logo-bg.png'); 
    background-repeat: no-repeat;
    background-position: center center;
    /* contain: Logoyu bozmadan ekrana sığdırır. 
       cover: Logoyu ekrana yayar ama kenarlardan kesebilir. 
       İstediğine göre değiştirebilirsin. Şimdilik 'contain' en güvenlisi. */
    background-size: contain; 
    opacity: 0.07; /* Görünürlüğü biraz artırdım (Yüzde 7) */
    z-index: -1; /* Yazıların arkasında kalsın */
    pointer-events: none; /* Tıklamaları engellemesin */
}

/* NAVBAR (MENÜ) */
header {
    background-color: #1a1a1a; /* Koyu Antrasit/Siyah Zemin */
    border-bottom: 2px solid #ba8c4d; /* Altına ince altın çizgi */
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* --- LOGO VE YAZI DÜZENİ --- */

/* Linkin kendisi bir kutu gibi davransın ve içindekileri yan yana dizsin */
.logo-link {
    display: flex;
    align-items: center; /* Dikeyde ortala */
    gap: 15px; /* Logo ile yazı arasındaki boşluk */
    text-decoration: none; /* Alt çizgiyi kaldır */
}

/* Resim Logo Ayarı */
.nav-logo {
    height: 70px; /* Logoyu biraz küçülttük ki yazıya yer açılsın, istersen artır */
    width: auto;
    display: block;
    filter: drop-shadow(0 0 1px rgba(255,255,255,0.1));
}

/* Yazı Kutusu */
.logo-text {
    display: flex;
    flex-direction: column; /* Yazıları alt alta diz (Başlık üstte, alt başlık altta) */
    line-height: 1.2;
}

/* Üst Satır: ÖZEL KEY */
.brand-title {
    color: #e4e4e4; /* Beyazımsı renk */
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* KEY kelimesini Gold yapalım */
.brand-title .text-gold {
    color: #ba8c4d;
}

/* Alt Satır: DENTAL STUDIO */
.brand-subtitle {
    color: #a4a4a3; /* Gri renk */
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px; /* Harf aralarını açarak premium hava ver */
}

/* Mobilde Logoyu ve Yazıyı Düzenle */
@media (max-width: 768px) {
    .logo-link {
        flex-direction: column; /* Mobilde logo üstte, yazı altta olsun */
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .nav-logo {
        height: 60px;
    }

    .brand-title { font-size: 1.2rem; }
    .brand-subtitle { font-size: 0.7rem; }
}

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

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #e4e4e4; /* Açık gri/beyaz yazı */
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ba8c4d;
    transition: width 0.3s;
}

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

.nav-links a:hover, .nav-links a.active {
    color: #ba8c4d; /* Üzerine gelince Altın Rengi olsun */
}

/* BUTONLAR */
.btn-contact {
    background-color: #ba8c4d; /* Altın Rengi */
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600 !important;
    border: 1px solid #ba8c4d;
}

.btn-contact:hover {
    background-color: transparent;
    color: #ba8c4d !important;
}

.btn-contact::after { display: none; }

/* --- YENİ HERO ALANI (PREMIUM TASARIM) --- */
.hero {
    position: relative;
    height: 85vh; /* Ekranın %85'ini kaplasın */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Dışarı taşan resimleri gizle */
    color: white;
}

/* 1. Arka Plan Resmi ve Animasyonu */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('resimler/ana-sayfa-kapak.jpg'); /* Resim yolunu kontrol et */
    background-size: cover;
    background-position: center;
    z-index: -2;
    /* Ken Burns Efekti (Yavaşça Yaklaşma) */
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } /* %15 büyür */
}

/* 2. Karartma Katmanı (Yazılar okunsun diye) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soldan sağa hafif siyah gradient */
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

/* 3. İçerik Kutusu (Glassmorphism) */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px; /* Kutuyu biraz genişlettik ki logo sığsın */
    padding: 50px;
    
    /* Yan Yana Dizilim Ayarları */
    display: flex;
    align-items: center; /* Dikeyde ortala */
    justify-content: center;
    gap: 60px; /* Logo ile yazı arasındaki boşluk */
    text-align: left; /* Yazıları sola yasla */

    /* Buzlu Cam Efekti */
    background: rgba(0, 0, 0, 0.59);
    backdrop-filter: blur(8px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-logo-area {
    flex: 1; /* Alanın 1 birimini kaplasın */
    display: flex;
    justify-content: center;
}

.hero-logo-area img {
    width: 100%;
    max-width: 350px; /* Logonun maksimum büyüklüğü */
    height: auto;
    /* Logoya hafif gölge vererek patlamasını sağlayalım */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: floatLogo 6s ease-in-out infinite; /* Hafifçe süzülme efekti */
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-text-area {
    flex: 1.5; /* Alanın 1.5 birimini kaplasın (Yazıya daha çok yer) */
}

.hero p {
    margin-left: 0; /* Ortalamayı iptal et */
    margin-right: 0;
}

/* Butonları sola yasla */
.hero-buttons {
    justify-content: flex-start; 
}

/* MOBİL UYUMLULUK (Telefonda alt alta geçsinler) */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column; /* Alt alta diz */
        text-align: center; /* Yazıları ortala */
        gap: 30px;
        padding: 30px;
    }

    .hero-logo-area img {
        max-width: 200px; /* Mobilde logoyu küçült */
    }

    .hero-buttons {
        justify-content: center; /* Mobilde butonları ortala */
    }
}

/* Tipografi Ayarları */
.hero-subtitle {
    display: block;
    color: #ba8c4d; /* Gold */
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300; /* İnce ve zarif */
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

/* "Kusursuz Estetik" yazısını Gold yapalım */
.text-gold {
    color: #ba8c4d;
    font-weight: 700; /* Kalın olsun */
}

.hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buton Grubu */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Birinci Buton (Gold) */
.btn-primary {
    background-color: #ba8c4d;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ba8c4d;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ba8c4d;
}

/* İkinci Buton (Şeffaf/Beyaz) */
.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: white;
    color: #1a1a1a;
    border-color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-content { padding: 20px; background: rgba(0,0,0,0.5); border: none; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* SÜS: MOUSE İKONU ANİMASYONU */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background: #ba8c4d; /* Gold tekerlek */
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* SAYFA BAŞLIKLARI */
.page-header {
    background-color: #333; /* Koyu Gri Zemin */
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #ba8c4d; /* Altın Çizgi */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
}

.page-header p {
    color: #ba8c4d; /* Altın Alt Yazı */
    margin-top: 10px;
    font-size: 1.2rem;
}

/* İÇERİK BLOKLARI */
.content-section {
    padding: 100px 0;
    /* Arka plan şeffaf olsun ki watermark görünsün */
    background-color: transparent; 
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9); /* Hafif şeffaf beyaz kutu */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid #ba8c4d;
    backdrop-filter: blur(5px);
}

.tech-item:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 5px solid #ba8c4d;
}

.tech-content h2 {
    color: #ba8c4d;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.tech-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tech-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* FOOTER */
footer {
    margin-top: auto;
    background-color: #222;
    color: #a4a4a3;
    padding: 60px 0;
    text-align: center;
    border-top: 5px solid #ba8c4d;
    z-index: 10; /* Watermark'ın üstünde kalsın */
    position: relative;
}

footer h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar { flex-direction: column; height: auto; padding: 20px 0; }
    .nav-logo { height: 60px; margin-bottom: 15px; }
    .nav-links { margin-top: 10px; flex-direction: column; text-align: center; }
    .nav-links li { margin: 10px 0; }
    .tech-item, .tech-item:nth-child(even) { flex-direction: column; text-align: center; padding: 20px; }
    .hero h1 { font-size: 2rem; }
    body::before { background-size: contain; } 
}

/* SSS (FAQ) */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ba8c4d;
    margin-bottom: 50px;
}
/* --- SIKÇA SORULAN SORULAR (FAQ) - MODERN TASARIM --- */

.faq-section {
    padding: 100px 0;
    /* Arka plan şeffaf kalsın, body'deki watermark görünsün */
    background-color: transparent; 
}

.faq-grid {
    max-width: 850px; /* Okunabilirlik için genişliği biraz sınırladık */
    margin: 0 auto;
}

/* Kutu Yapısı */
details {
    background-color: #fff; /* Beyaz zemin */
    margin-bottom: 20px; /* Kutular arası boşluk */
    border-radius: 12px; /* Köşeler daha modern ve yumuşak */
    border: 1px solid #e0e0e0; /* Varsayılan: İnce gri çerçeve */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Çok hafif gölge */
    overflow: hidden; /* Taşmaları gizle */
    transition: all 0.3s ease; /* Renk geçişleri yumuşak olsun */
}

/* Kutu Açıldığında (Aktif Durum) */
details[open] {
    border-color: #ba8c4d; /* Çerçeve Altın rengi olsun */
    box-shadow: 0 10px 30px rgba(186, 140, 77, 0.15); /* Altın tonlu gölge */
    transform: translateY(-2px); /* Çok hafif yukarı kalksın */
}

/* Soru Kısmı (Başlık) */
summary {
    padding: 25px; /* İç boşluğu artırdık, ferahlasın */
    font-weight: 600;
    font-size: 1.15rem; /* Yazı boyutu ideal */
    color: #333; /* Koyu antrasit (Okunabilirlik için) */
    cursor: pointer;
    list-style: none; /* Varsayılan tarayıcı okunu gizle */
    position: relative;
    transition: color 0.3s ease;
}

/* Chrome/Safari'de varsayılan oku gizlemek için ek ayar */
summary::-webkit-details-marker {
    display: none;
}

/* Soruya gelince veya kutu açıkken yazı rengi */
summary:hover, details[open] summary {
    color: #ba8c4d; /* Altın rengi */
    background-color: #fafafa; /* Çok hafif gri arka plan */
}

/* Sağdaki İkon (+ / -) */
summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%); /* Dikey ortala */
    font-size: 1.5rem;
    font-weight: 400; /* Çok kalın olmasın */
    color: #ba8c4d; /* İkon her zaman altın rengi */
    transition: transform 0.3s ease;
}

/* Kutu açıldığında ikon değişsin */
details[open] summary::after {
    content: '−'; /* Eksi işareti */
    transform: translateY(-50%) rotate(180deg); /* Hafifçe dönsün */
}

/* Cevap Kısmı (Paragraf) */
details p {
    padding: 0 25px 30px 25px; /* Üst hariç dolgun boşluk */
    color: #666; /* Göz yormayan gri */
    line-height: 1.7; /* Satır aralarını açtık */
    font-size: 1.05rem;
    margin: 0;
    /* Soru ile cevap arasına ince bir çizgi ekleyelim */
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
    animation: fadeIn 0.5s ease; /* Yazı yumuşakça belirsin */
}

/* Cevap açılma animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HAKKIMIZDA */
.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 10px;
}

/* Hakkımızda Sayfası Resim Ayarı */
.about-img img {
    width: 100%;          /* Mobilde ekran genişliğine uyum sağlasın */
    max-width: 1150px;     /* BİLGİSAYARDA DURACAĞI YER: 450px'ten daha fazla büyümesin */
    height: auto;         /* Resmin en-boy oranı bozulmasın */
    border: 5px solid #e4e4e4; /* Senin istediğin kenarlık */
    border-radius: 10px;  /* Köşeleri hafif yuvarla */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Hafif gölge ekleyelim, şık durur */
    display: block;       /* Hizalama sorunlarını çözer */
    margin: 0 auto;       /* Eğer kutu içinde küçük kalırsa ortalasın */
}
.about-text-content h2 { color: #ba8c4d; }

.values-section {
    padding: 80px 0;
    background-color: transparent;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 5px;
    flex: 1;
    min-width: 250px;
    border: 1px solid #e4e4e4;
    border-bottom: 4px solid #ba8c4d;
}

.stats-bar {
    background-color: #333;
    color: white;
    padding: 60px 0;
    border-top: 2px solid #ba8c4d;
    border-bottom: 2px solid #ba8c4d;
    position: relative; z-index: 10;
}

.stats-grid {
    display: flex;              /* Sihirli kod: İçindekileri yan yana dizer */
    justify-content: space-around; /* Kutuların arasına eşit boşluk bırakır */
    align-items: center;        /* Dikeyde ortalar */
    flex-wrap: wrap;            /* Ekran küçülürse (tablet vs.) alt satıra geçmesine izin verir */
    padding: 20px 0;            /* İçeriden biraz boşluk */
}

.stat-item {
    flex: 1;                    /* Mevcut alanı eşit şekilde paylaşırlar */
    text-align: center;         /* Yazıları ortalar */
    padding: 15px;              /* Kutu içi ferahlık */
    min-width: 200px;           /* Çok küçülürse (mobilde) şekli bozulmasın */
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    color: #ba8c4d;
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column; /* Mobilde tekrar alt alta olsun */
        gap: 30px;              /* Alt alta iken aralarına boşluk koy */
    }
}

/* İLETİŞİM KUTUSU */
.contact-box-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-top: 5px solid #ba8c4d;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}