/* --- Genel Ayarlar ve Fontlar --- */
:root {
    --primary-font: 'Mulish', sans-serif;
    --heading-font: 'Cormorant Garamond', serif;
    --accent-color: #bc9331; /* Temadaki Gold Rengi */
    --text-color: #6b6b6b;
    --heading-color: #1b1b1b;
    --bg-light: #f5f5f5;
    --bg-dark: #1f1f1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #ffffff;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Header ve Navigasyon --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 105px;
    display: flex;
    align-items: center;
    transition: height 0.3s;
}

.header-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 0 30px;
    gap: 40px; 
}

/* Logo */
.logo-container {
    text-align: center;
    padding-top: 10px;
}

.logo-text h1 {
    font-size: 56px;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent-color);
    display: block;
    margin-top: 5px;
    font-weight: 700;
}

/* Masaüstü Menü */
.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000;
    position: relative;
    text-transform: uppercase;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--accent-color);
}

/* Mobil Menü Butonu */
.mobile-toggle {
    display: block;
    cursor: pointer;
    width: 30px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle svg {
    fill: #000;
    transition: fill 0.3s;
}

.mobile-toggle:hover svg {
    fill: var(--accent-color);
}

/* --- Mobil Menü Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%; 
    height: 100%;
    background-color: #fff;
    z-index: 2000;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* GORDOUGH Logo Düzenlemesi - Header içine sığdırma */
.menu-header .logo-container img {
    max-height: 40px; /* Header 70px, logo 50px olsun ki taşmasın */
    width: auto; /* Resmin en-boy oranı bozulmasın */
    display: block; /* Hizalama sorunlarını giderir */
}

.mobile-logo {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.close-btn {
    cursor: pointer;
}

.close-btn svg {
    fill: #000;
    transition: transform 0.3s;
}

.close-btn:hover svg {
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-nav-links a {
    font-family: var(--heading-font);
    font-size: 32px;
    color: #000;
    font-weight: 600;
}

.mobile-nav-links a:hover {
    color: var(--accent-color);
}

.mobile-socials {
    margin-top: auto;
    text-align: center;
    font-size: 24px;
}

.mobile-socials a {
    color: #000;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('image/home-banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.hero-content h2 {
    font-size: 6vw;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

/* --- Ortak Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- Intro Section --- */
.intro-section {
    text-align: center;
    background-color: #fff;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.separator-small {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto 30px auto;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
}

/* --- Highlights / Menu Section --- */
.highlights-section {
    background-color: var(--bg-light);
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.grid-col {
    width: 100%;
    padding: 15px;
}

.highlight-card {
    background: #fff;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px 20px;
}

.card-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.separator-tiny {
    width: 30px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 10px auto 15px auto;
}

/* --- Parallax Banner --- */
/* --- Parallax Banner --- */
.parallax-section {
    background-image: url('image/home-bottom-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 180px 0;
    text-align: center;
    color: #fff;
}

.parallax-overlay {
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-section h2 {
    color: #fff;
    font-size: 36px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #fff;
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

/* --- Footer --- */
.site-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo {
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #777;
}

.footer-col .hours {
    font-family: var(--heading-font);
    font-size: 26px; /* Artık 15px yerine bu değer geçerli olacak */
    color: var(--accent-color);
    font-weight: 700;
    /* margin-bottom değerini de sıfırlamak isterseniz buraya ekleyebilirsiniz */
    margin-bottom: 0;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    font-size: 18px;
    color: #000;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding: 20px 0;
    font-size: 13px;
    color: #999;
}

/* --- Media Queries (Responsive) --- */

/* Tablet (768px ve üzeri) */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-toggle {
        display: none;
    }

    /* Tablette menü 2'li sıra olsun (50%) */
    .grid-col {
        width: 50%;
    }

    .footer-col {
        width: 30%;
        text-align: left;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .social-links {
        text-align: left;
        margin-left: -10px;
    }
    
    .hero-content h2 {
        font-size: 4vw;
    }
}

/* Masaüstü (1024px ve üzeri) */
@media (min-width: 1024px) {
    .container {
        padding: 100px 20px;
    }

    /* Masaüstünde menü 4'lü sıra olsun (25%) */
    .grid-col {
        width: 25%;
    }
}


/* --- Story Page Styles (Hikayemiz Sayfası için Ekler) --- */

/* Sayfa Başlık Alanı */
.page-title-area {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('image/about-ingredients.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 105px; /* Header yüksekliği kadar boşluk */
}

.page-title-content h1 {
    font-size: 48px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-family: var(--primary-font);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Story Bölümleri (Zig-Zag Yapısı) */
.story-section {
    padding: 10px 0;
}

.story-section.alt-bg {
    background-color: var(--bg-light); /* Alternatif açık gri arka plan */
}

.story-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.story-row.reverse {
    flex-direction: row-reverse; /* Görseli sola, metni sağa alır */
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.separator-tiny-left {
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 17px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.story-image img:hover {
    transform: scale(1.02);
}

/* Son Kapanış Bölümü */
.story-closing {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.closing-text {
    max-width: 800px;
    margin: 0 auto;
}

.closing-text p {
    font-size: 18px;
    font-style: italic;
    color: #333;
}

.closing-text h4 {
    margin-top: 30px;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.signature {
    font-family: var(--heading-font);
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .story-row {
        flex-direction: column !important; /* Mobilde her zaman alt alta */
    }

    .page-title-area {
        height: 250px;
    }

    .page-title-content h1 {
        font-size: 36px;
    }
}

/* --- Story Page Styles --- */

/* --- Contact Page Styles --- */

.contact-section {
    padding: 0;
    background-color: #fff;
}

/* 2 Sütunlu Yapı */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch; 
}

/* Sol Sütun: Bilgiler */
.contact-info-wrapper {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.contact-heading {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-socials {
    margin-bottom: 0;
}

.contact-socials a {
    font-size: 18px;
    color: #000;
    margin-right: 20px;
    transition: color 0.3s;
}

.contact-socials a:hover {
    color: var(--accent-color);
}

/* İletişim Detayları Bloğu */
.contact-details-block {
    margin-top: 10px;
}

.contact-details-block h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.detail-item {
    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.detail-item strong {
    color: #000;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.detail-item a {
    border-bottom: 1px solid transparent;
}

.detail-item a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Sağ Sütun: Harita */
.map-wrapper {
    flex: 1.5; 
    min-width: 300px;
    min-height: 500px;
    background-color: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }
    
    .map-wrapper {
        height: 400px; 
    }
    
    .contact-info-wrapper {
        padding-right: 0;
    }
}

/* --- Contact Page Styles --- */

/* --- MENU SAYFASI ÖZEL STİLLERİ --- */

.menu-page-body {
    background-color: #f9f9f9;
    padding-top: 160px; 
}

/* Masaüstü ayarı */
@media (min-width: 1024px) {
    .menu-page-body {
        padding-top: 175px;
    }
}

/* 1. Sabit Header */
.menu-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

/* 2. Yatay Kayan Kategoriler (Sticky) */
.category-nav-wrapper {
    position: fixed;
    top: 50px; 
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    padding: 15px 0 5px 0; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* --- Mobil Scroll Menü Efekti --- */
@media (max-width: 768px) {

    /* 1. Kapsayıcı Ayarları */
    .category-nav-wrapper.scrolled-mode {
        padding: 5px 0; /* Yüksekliği daralt */
        box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Biraz gölge ver */
        background-color: #fff;
    }

        /* Boşlukları (gap) kaldırıyoruz ki çizgiler düzgün dursun */
        .category-nav-wrapper.scrolled-mode .category-scroll-container {
            gap: 0;
        }

        /* 2. Resimleri Gizle */
        /* SADECE 'enable-hide-effect' sınıfı ekliyse gizler */
        .category-nav-wrapper.scrolled-mode.enable-hide-effect .cat-item .cat-img {
            display: none;
        }

        /* 3. Menü Elemanları ve Ayraç (Çizgi) */
        .category-nav-wrapper.scrolled-mode .cat-item {
            /* Ayraç Çubuğu */
            border-right: 1px solid #e0e0e0;
            /* Genişlik ayarları (Mevcut yapıyı korumak için) */
            min-width: 100px; /* Genişliği biraz artırıp sabitledik */
            padding: 12px 0; /* Dikey ortalama */
            border-radius: 0; /* Varsa ovalliği kaldır */
            /* Görünüm */
            opacity: 0.7;
            flex-direction: row; /* Yazıyı ortalamak için */
            justify-content: center;
        }

            /* Aktif olanın rengini koru ve netleştir */
            .category-nav-wrapper.scrolled-mode .cat-item.active {
                opacity: 1;
                background-color: #f9f9f9; /* Hafif bir arka plan */
                color: var(--accent-color);
            }

                /* Aktif olduğunda border rengi karışmasın diye (isteğe bağlı) */
                .category-nav-wrapper.scrolled-mode .cat-item.active span {
                    font-weight: 800;
                }

            /* Son elemandaki ayracı kaldır */
            .category-nav-wrapper.scrolled-mode .cat-item:last-child {
                border-right: none;
            }
}

.category-scroll-container {
    display: flex;
    overflow-x: auto;
    padding: 10px 20px 10px 20px;
    gap: 25px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    justify-content: flex-start; 
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #f0f0f0;
}

@media (min-width: 1024px) {
    .category-scroll-container {
        justify-content: center; 
        overflow-x: hidden; 
    }
}

/* Webkit Scrollbar */
.category-scroll-container::-webkit-scrollbar {
    height: 6px; 
    display: block; 
}

.category-scroll-container::-webkit-scrollbar-track {
    background: #f0f0f0; 
    border-radius: 3px;
    margin: 0 20px; 
}

.category-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--accent-color); 
    border-radius: 3px;
}

/* Kategori Elemanı */
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px; 
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.cat-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.cat-item .cat-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
    border: 3px solid transparent; 
    transition: border-color 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cat-item.active .cat-img {
    border-color: var(--accent-color);
}

.cat-item .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-item span {
    font-family: var(--primary-font);
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-align: center;
    letter-spacing: 0.5px;
}

/* 3. Ürün Listesi (Grid) */
.menu-main-content {
    padding-bottom: 0;
}

.category-heading {
    text-align: center;
    margin: 0 0 20px; 
    font-size: 28px;
    color: var(--accent-color);
    text-transform: uppercase;
}

/* --- GÜNCELLENMİŞ ÜRÜN GRİD VE KARTLARI --- */

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    padding-bottom: 50px;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.prod-img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    display: block;
}

.prod-info {
    padding: 15px;
    text-align: center;
}

.prod-title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.prod-desc-short {
    font-family: var(--primary-font);
    font-size: 13px;
    color: #777;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 4. POPUP (MODAL) */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.product-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background-color: #fff;
    width: 80%;
    height: 80%;
    position: relative;
    border-radius: 4px;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-img-wrapper {
    width: 100%;
    height: 50%;
    background-color: #eee;
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text-wrapper {
    padding: 25px;
    height: 50%;
    overflow-y: auto;
}

.modal-text-wrapper h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-price {
	    font-family: var(--heading-font); /* Cormorant Garamond */

    display: block;
    margin-top: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #000;
	letter-spacing: 2px; /* Harf aralığını biraz açtık */
}

@media (min-width: 1024px) {
    .modal-body {
        flex-direction: row;
    }
    .modal-img-wrapper {
        width: 50%;
        height: 100%;
    }
    .modal-text-wrapper {
        width: 50%;
        height: 100%;
        padding: 50px;
    }
}

/* --- Ürün Resmi Üzerindeki Fiyat Etiketi --- */

/* Resmi ve fiyatı tutan kapsayıcı */
.prod-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fiyat Etiketi Stili - Şık Görünüm */
.on-img-price {
    position: absolute;
    bottom: 0;
    right: 0;
    
    /* Arkaplan ve Renk */
    background-color: var(--accent-color); /* Gold Rengi */
    color: #fff; 
    
    /* YENİ YAZI TİPİ AYARLARI */
    font-family: var(--heading-font); /* 'Cormorant Garamond' kullan */
    font-weight: 700;    /* Kalın */
    font-size: 25px;     /* Okunabilirliği artırmak için biraz büyüttük */
    letter-spacing: 1px; /* Harf aralığını biraz açtık */
    line-height: 1;      /* Satır yüksekliğini sıkılaştırdık */
    
    /* Kutu Ayarları */
    padding: 5px 10px;   /* İç boşluğu artırdık */
    border-top-left-radius: 12px; /* Daha yumuşak bir kavis */
    box-shadow: -3px -3px 12px rgba(0,0,0,0.15); /* Gölgeyi belirginleştirdik */
    z-index: 2;
}