/* --- GENEL AYARLAR --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafaf9; /* Linen White */
    color: #1c1917; /* Dark Smoke */
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="8" fill="%23064e3b" fill-opacity="0.6" stroke="%23b97e41" stroke-width="2"/></svg>') 12 12, auto;
}

.font-serif { font-family: 'Playfair Display', serif; }
.font-sans { font-family: 'Poppins', sans-serif; }

/* Renk Değişkenleri ve Yardımcılar */
.text-emerald { color: #064e3b; }
.text-copper { color: #b97e41; }
.bg-linen-white { background-color: #fafaf9; }
.bg-emerald { background-color: #064e3b; }
.leading-relaxed { line-height: 1.8; }
.py-huge { padding-top: 120px; padding-bottom: 120px; }
.mb-huge { margin-bottom: 80px; }
.letter-spacing-2 { letter-spacing: 2px; }

.text-display { font-size: 3.5rem; }
.text-display-muted { font-size: 1.15rem; color: rgba(28, 25, 23, 0.8); font-weight: 300; }
.opacity-90 { opacity: 0.9; }
.fw-light { font-weight: 300; }

/* Menü Linklerine tıklandığında yumuşak kayma */
html { scroll-behavior: smooth; }

/* Resimlerin seçilmesini engelle (Premium Hissiyat) */
img { user-select: none; -webkit-user-drag: none; }

/* --- AÇILIŞ ANİMASYONU (PRELOADER) --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; 
    height: 100vh;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden; 
    padding: 20px; 
}

.preloader.slide-up {
    transform: translateY(-100%);
}

.preloader-content {
    width: 100%;
    max-width: 600px; 
}

.preloader-logo {
    width: 160px; 
    max-width: 50vw; 
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s ease-out forwards 0.3s;
}

.preloader-slogan {
    font-size: clamp(1.2rem, 5vw, 1.8rem); 
    letter-spacing: clamp(1px, 2vw, 4px); 
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpSlogan 1s ease-out forwards 1s;
    margin-top: 15px;
}

@keyframes fadeInScale { to { opacity: 1; transform: scale(1); } }
@keyframes fadeInUpSlogan { to { opacity: 1; transform: translateY(0); } }

/* --- NAVBAR (MENÜ) --- */
.navbar-premium {
    background-color: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(185, 126, 65, 0.2);
    transition: 0.3s ease;
}

/* Navbar Logo Ayarı */
.nav-logo {
    max-height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}
.nav-logo:hover {
    transform: scale(1.05);
}

.navbar-premium .nav-link {
    font-weight: 600;
    color: #064e3b !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 15px !important;
}

.navbar-premium .nav-link:hover { color: #b97e41 !important; }

.btn-premium-order {
    background-color: #064e3b;
    color: #fafaf9 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 12px 25px;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 1px solid #064e3b;
}

.btn-premium-order:hover {
    background-color: #fafaf9;
    color: #064e3b !important;
}

/* --- HERO BÖLÜMÜ --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('/img/hero.webp') center/cover no-repeat;
    height: 100vh;
    min-height: 600px;
}

.header-line {
    border-bottom: 2px solid #b97e41;
    display: inline-block;
    padding-bottom: 15px;
}

.btn-premium-hero {
    background-color: transparent;
    color: #fafaf9;
    border: 2px solid #fafaf9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 15px 40px;
    border-radius: 2px;
    transition: 0.3s ease;
}

.btn-premium-hero:hover { background-color: #fafaf9; color: #064e3b; }

/* --- KAYAN YAZI (MARQUEE) --- */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    color : white;
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px; 
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ÜRÜN KARTLARI --- */
.product-card-premium {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.product-card-premium:hover {
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
    transform: translateY(-10px);
}

.product-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-premium:hover .product-img-wrapper img { transform: scale(1.08); }

/* --- DENEYİM (HİZMETLER) KARTLARI --- */
.experience-card {
    transition: 0.4s ease;
    background-color: #fff;
    padding: 50px 30px;
    border: 1px solid rgba(0,0,0,0.05);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
}

.icon-container-premium { font-size: 4rem; color: #b97e41; }

/* --- TESLİMAT GÖRSELİ STİLİ --- */
.delivery-img {
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.15); 
    transition: transform 0.5s ease;
}
.delivery-img:hover { transform: scale(1.02); }

/* --- PARALLAX ALINTI BÖLÜMÜ --- */
.parallax-quote {
    background: linear-gradient(rgba(6, 78, 59, 0.85), rgba(0, 0, 0, 0.8)), url('/img/parallax.webp') center/cover no-repeat;
    background-attachment: fixed; 
    min-height: 400px;
    padding: 100px 0;
}

/* --- YAT & ÖZEL DAVETLER BÖLÜMÜ --- */
.vip-events-section {
    background: linear-gradient(rgba(6, 78, 59, 0.9), rgba(6, 78, 59, 0.8)), url('/img/vip-section.webp') center/cover no-repeat;
    padding: 120px 0;
    min-height: 500px;
}

/* --- ŞUBE (İLETİŞİM) KARTLARI VE HARİTA --- */
.branch-card-premium {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 250, 249, 0.1);
    border-radius: 0px;
    transition: 0.4s ease;
}

.branch-card-premium:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(185, 126, 65, 0.3);
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
    filter: grayscale(40%) contrast(110%); 
    transition: filter 0.3s ease;
}

.map-wrapper iframe:hover { filter: grayscale(0%) contrast(100%); }

.btn-premium-branch {
    background-color: transparent;
    color: #b97e41;
    border: 2px solid #b97e41;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 15px;
    border-radius: 2px;
    transition: 0.3s ease;
}

.btn-premium-branch:hover { background-color: #b97e41; color: #064e3b; }

/* --- WHATSAPP BUTONU --- */
.whatsapp-btn-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fafaf9;
    color: #064e3b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    transition: 0.3s ease;
    border: 1px solid #064e3b;
}

.whatsapp-btn-premium:hover {
    background-color: #064e3b;
    color: #fafaf9;
    transform: scale(1.1);
}

/* Sitenin sağındaki kaydırma çubuğu */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fafaf9; }
::-webkit-scrollbar-thumb { background: #064e3b; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #b97e41; }

/* ====================================================
   MOBİL UYUMLULUK (RESPONSIVE & MEDIA QUERIES) 
   ==================================================== */
@media (max-width: 991px) {
    /* Tablet ve Telefonlar için boşlukları daraltıyoruz */
    .py-huge { padding-top: 60px; padding-bottom: 60px; }
    .mb-huge { margin-bottom: 40px; }
    
    /* Yazı boyutlarını küçültüyoruz */
    .text-display { font-size: 2.5rem; }
    .display-2 { font-size: 3rem; }
    
    /* VIP section ve Parallax mobilde çok yüksek olmasın */
    .vip-events-section, .parallax-quote { padding: 60px 0; min-height: 350px; }
    
    /* Menü mobilde açıldığında arkaplanı net olsun */
    .navbar-collapse {
        background-color: #fafaf9;
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
}

/* iOS cihazlarda Parallax (background-attachment: fixed) çok titrer ve bozulur.
   Bu kod dokunmatik ekranlarda parallax'ı iptal ederek pürüzsüz görünmesini sağlar. */
@media (hover: none) and (pointer: coarse) {
    .parallax-quote {
        background-attachment: scroll;
    }
}