/* --- 1. FONTLAR --- Site genelinde kullanılan dış fontlar ve tipografi ayarları */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,700;1,700&family=Oswald:wght@700&display=swap');

/* --- 2. RENK VE TEMA DEĞİŞKENLERİ --- */
:root {
    --bg-color: #0c0b0a;       /* Derin elit siyah */
    --panel-color: #161412;    /* Kartlar için hafif aydınlık siyah */
    --text-color: #f0eee9;     /* Göz yormayan kemik beyazı */
    --accent-color: #da9f5b;   /* İmza altın/karamel rengi */
    --secondary-color: #1c1815;/* Alternatif koyu arka plan */
    --font-logo: 'Oswald', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- 3. TEMEL SIFIRLAMA (RESET) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Site genelinde modern font */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   HEADER VE NAVİGASYON (CAM EFEKTLİ)
   ========================================================================== */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(12, 11, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(218, 159, 91, 0.15); 
    position: sticky; 
    top: 0;
    z-index: 1000;
}

/* LÜKS LOGO MÜDAHALESİ */
.logo a {
    font-family: 'Playfair Display', serif !important;
    color: var(--accent-color) !important;
    font-size: 2.8rem !important;
    font-style: italic !important;
    text-transform: none !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    transition: var(--transition);
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05) !important;
    color: #f5c38e !important;
    text-shadow: 0 0 15px rgba(218, 159, 91, 0.4);
}

/* Taşınan inline logo + footer stilleri */
header .logo a,
header .logo,
.footer-logo,
.logo a {
    font-family: 'Oswald', sans-serif !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
    animation: none !important;
    transition: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
}

header .logo a:hover,
.footer-logo:hover,
.logo a:hover {
    color: #ffffff !important;
    transform: none !important;
    letter-spacing: 2px !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.footer-logo {
    font-size: 2.5rem !important;
    margin-top: 2rem;
    display: block !important;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 1px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a.active {
    color: #ffd764 !important;
}

/* ==========================================================================
   AÇILIŞ (HERO) EKRANI - SADE VE LÜKS 2 SÜTUN
   ========================================================================== */
.premium-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 80px); /* Ekranın tamamını kaplamasını ama navbarı hesaba katmasını sağlar */
    padding: 0 5% 0 5%;
    width: 100%;
    margin: 0 auto;
    gap: 6rem;
}
.hero-text-side {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    max-width: 620px;
    padding: 6rem 0;
}

/* HERO VIDEO ARKA PLAN: ana sayfadaki tam ekran arka plan videosunun kaplayacağı alan */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 11, 10, 0.35) 0%, rgba(12, 11, 10, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Yanıp sönen nokta */
/* ... (Canlı Konum Noktası ve diğer yazılar aynı kalıyor, onlara dokunma) ... */

/* Hero Video */

/* Canlı Konum Noktası */
.live-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color); 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(218, 159, 91, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(218, 159, 91, 0); }
    100% { box-shadow: 0 0 0 0 rgba(218, 159, 91, 0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: normal;
}

.hero-title i {
    color: var(--accent-color);
    font-style: italic;
}

.hero-desc {
    font-size: 1.25rem;
    color: #a09d98;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Aksiyon Butonu */
.action-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color); 
    color: var(--bg-color); 
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(218, 159, 91, 0.4);
    background-color: #f5c38e;
}

/* HERO VIDEO: arka plan içinde kaplayan video elementinin stili */
.premium-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: saturate(1.05) contrast(0.95);
    z-index: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.8s ease;
}

.premium-video:hover {
    transform: translate(-50%, -50%) scale(1.01);
}

/* ==========================================================================
   FELSEFE / MANİFESTO BÖLÜMÜ
   ========================================================================== */
.philosophy-section.full-width {
    width: 100%;
    padding: 8rem 5%;
    background-color: var(--secondary-color); 
    text-align: center;
    margin: 4rem 0;
    border-top: 1px solid rgba(218, 159, 91, 0.2);
    border-bottom: 1px solid rgba(218, 159, 91, 0.2);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.philosophy-content p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #d1cdc5;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   İMZA LEZZETLER BÖLÜMÜ (3'LÜ KART)
   ========================================================================== */
.signature-section {
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: bold;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--text-color);
    font-weight: normal;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-panel {
    background-color: var(--panel-color);
    padding: 2.5rem; 
    border-radius: 20px;
    text-align: center; 
    transition: var(--transition);
    border: 1px solid rgba(218, 159, 91, 0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.product-panel:hover { 
    transform: translateY(-10px); 
    border-color: rgba(218, 159, 91, 0.4); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-image-wrapper { 
    width: 100%; 
    aspect-ratio: 1/1; 
    border-radius: 15px; 
    overflow: hidden; 
    margin-bottom: 1.5rem; 
}

.product-image-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

.product-panel:hover img { 
    transform: scale(1.08); 
}

.product-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.product-info p {
    font-size: 1rem;
    color: #a09d98;
}

/* ==========================================================================
   GALERİ BÖLÜMÜ
   ========================================================================== */
.gallery-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 5% 8rem 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(218, 159, 91, 0.1);
    transition: var(--transition);
}

.gallery-img:hover {
    filter: brightness(1.2);
}

.gallery-img.large {
    grid-column: span 2;
    height: 600px;
}

/* ==========================================================================
   HARİTA BÖLÜMÜ (İleride bir yere eklersen diye tasarımı hazır)
   ========================================================================== */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(218, 159, 91, 0.2);
    margin: 4rem 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    padding: 6rem 4% 3rem 4%;
    text-align: center;
    background-color: #050505;
    color: var(--text-color);
    border-top: 1px solid rgba(218, 159, 91, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-content p {
    font-size: 1.1rem;
    color: #a09d98;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.4;
    padding-top: 3rem;
}
/* ==========================================================================
   HAKKIMIZDA: PREMIUM DİKEY TASARIM (DOKUNMA)
   ========================================================================== */
.about-premium-section {
    min-height: calc(100vh - 80px);
    padding: 8rem 5% 10rem 5%;
    background-color: var(--bg-color);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}

/* Sol Taraf: Metin Kontrolü */
.about-text-content {
    flex: none;
    max-width: 600px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: normal;
}

.about-title i {
    color: var(--accent-color);
    font-style: italic;
}

.about-desc {
    font-size: 1.1rem;
    color: #a09d98;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Slogan Alıntısı */
.about-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-color);
    border-left: 2px solid var(--accent-color);
    padding-left: 2rem;
    margin: 3rem 0;
    line-height: 1.5;
}

/* Sağ Taraf: Fotoğraf Kontrolü (Dikey Jilet) */
.about-image-content {
    flex: none;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    width: 420px;
    height: 700px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(218, 159, 91, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.about-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-premium-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* MOBİL VE TABLET UYUMU */
@media (max-width: 1200px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    
    .about-title { font-size: 3.2rem; }
    .about-quote { border-left: none; padding-left: 0; }
}

@media (max-width: 768px) {
    .about-premium-section { padding: 6rem 5%; }
    .about-title { font-size: 2.5rem; }
    .about-image-wrapper { width: 100%; max-width: 380px; height: 600px; }
}

/* ==========================================================================
   ADRES VE İLETİŞİM SAYFASI (SOL HARİTA, SAĞ BİLGİLER)
   ========================================================================== */
.location-page-wrapper {
    padding: 3rem 5% 10rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* İkili Bölme Düzeni */
.contact-split-layout {
    display: grid;
    /* Harita %60, Yazılar %40 - Petra stili ferahlık */
    grid-template-columns: 1.5fr 1fr; 
    gap: 5rem;
    align-items: stretch; /* Harita ve Yazı kutusunu boydan eşitler */
}

/* Sol Taraf: Harita Kutusu */
.map-left-side {
    width: 100%;
    /* Yazıların yüksekliğiyle tam eşleşmesi için ideal boy */
    min-height: 520px; 
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    
    /* Siyah tema filtresi */
    filter: grayscale(80%) invert(90%) contrast(85%) hue-rotate(180deg);
    transition: filter 0.4s ease;
}

.map-left-side:hover {
    filter: grayscale(20%) invert(0%) contrast(100%);
}

.map-left-side iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Sağ Taraf: Minimalist Yazı Stili */
.info-right-side-minimal {
    display: flex;
    flex-direction: column;
    gap: 4.5rem; /* İki grup kaldığı için arayı açtık, haritaya göre dengeli durur */
    text-align: left;
    padding-left: 1rem;
}

.info-group h4 {
    font-family: var(--font-logo) !important;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-group p {
    font-size: 1.15rem; /* Yazıları bir tık büyüttüm, daha okunaklı oldu */
    color: #f0eee9;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.insta-minimal-link {
    color: var(--accent-color); /* Instagram linkini senin aksan rengine çektim, şık durur */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.insta-minimal-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Konumumuz Linki (Turuncu Vurgu) */
.map-text-link {
    display: inline-block;
    color: #FF6600 !important; /* Canlı turuncu */
    font-family: var(--font-logo);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.map-text-link:hover {
    letter-spacing: 4px;
    border-bottom: 1px solid #FF6600;
}

.time-text {
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-top: 0.4rem;
    display: block;
}

.insta-minimal-link {
    color: #f0eee9;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.insta-minimal-link:hover {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

/* --- MOBİL UYUM --- */
@media (max-width: 1024px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .map-left-side {
        min-height: 400px;
    }
    .info-right-side-minimal {
        gap: 2.5rem; /* Mobilde yazılar çok kopuk durmasın */
    }
}
/* ==========================================================================
   MOBİL VE TABLET UYUMU (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1200px) {
    .premium-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        gap: 4rem;
    }
    
    .hero-text-side { margin: 0 auto; }
    
    .live-status { justify-content: center; }
    .hero-title { font-size: 3.8rem; }
    
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem 5%;
        position: static;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-title { font-size: 2.8rem; }

    .philosophy-content h2 { font-size: 2.2rem; }

    .signature-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    
    .gallery-img, .gallery-img.large {
        grid-column: span 1;
        height: 350px;
    }
}

@media (max-width: 620px) {
    .premium-hero {
        gap: 2.5rem;
        padding-top: 120px;
    }

    .hero-text-side {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
    }

    .action-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 0;
    }

    .signature-section,
    .gallery-section,
    .philosophy-section.full-width {
        padding-left: 4%;
        padding-right: 4%;
    }

    .product-panel {
        padding: 1.8rem;
    }

    .footer {
        padding: 4rem 4% 2rem 4%;
    }

    .copyright {
        padding-top: 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    .live-status {
        justify-content: center;
    }
}
