﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
  }*/
body {
    background-color: rgb(83,16,11); /* kiremit rengi */
    color: #f5f5f5;
    margin: 0;
    font-family: "Times New Roman", Times, serif;
}
.arkaplan {
    background-image: url('/images/arkaplan.png');
    background-repeat: repeat; /* ↩️ Tekrar etsin */
    background-size: 200px 200px; /* Orijinal boyutta döşeme */
    background-position: top left; /* Soldan başlasın */
    background-color: rgb(83,16,11); /* PNG saydamsa bu renk görünür */
}

header, .navbar {
    background-color: #000 !important;
    color: white !important;
}

    .navbar .nav-link {
        color: white !important;    }

        .navbar .nav-link:hover {
            color: #f08030 !important;
        }

.container {
    background-color: white !important; /* iç kısımlarda aynı ton */
    color: black;
    padding: 20px;
    border-radius: 10px;
}


/*Aşağıya kayıydırıpta kesilmesin diye bunu yazdım*/

.container {
    min-height: auto !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding-bottom: 30px; /* 100 çok fazlaydı, 25–30 ideal */
}


/*İletişim kısımları*/
.contact-info a.link-button {
    display: inline-block;
    padding: 6px 12px;
    margin-top: 5px;
    background-color: #212529;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .contact-info a.link-button:hover {
        background-color: #72261b;
    }

.contact-info a img {
    vertical-align: middle;
    margin-left: 5px;
}

/*Ürünler menü seçenekler */
/* Ürünler üzerine gelince açılan hover menüsü */
.urunler-hover + .custom-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 999;
    min-width: 200px;
}

.nav-item.dropdown:hover .custom-dropdown {
    display: block;
}

.custom-dropdown .dropdown-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

    .custom-dropdown .dropdown-item:hover {
        background-color: #f5f5f5;
    }

/* Ürünler aktif button vurgusu */
.kategori-btn.active {
    background-color: #53100B;
    color: white;
    font-weight: bold;
}

/* Animasyonlu kategori butonları */
.kategori-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInKategori 0.5s ease-out forwards;
}

    /* Sıralı animasyon efekti */
    .kategori-btn:nth-child(1) {
        animation-delay: 0.1s;
    }

    .kategori-btn:nth-child(2) {
        animation-delay: 0.2s;
    }

    .kategori-btn:nth-child(3) {
        animation-delay: 0.3s;
    }

    .kategori-btn:nth-child(4) {
        animation-delay: 0.4s;
    }

    .kategori-btn:nth-child(5) {
        animation-delay: 0.5s;
    }

/* Ana animasyon */
@keyframes fadeInKategori {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.avantajlar-bolumu {
    display: flex;
    justify-content: center;
    gap: 30px; /* kutular arası mesafe */
    padding: 60px 20px;
    background: #fff;
    flex-wrap: wrap;
}

.avantaj-kutu {
    background: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    max-width: 240px;
    width: 100%;
    text-align: center;
}

.tik-animasyon {
    width: 28px;
    height: 28px;
    border: 3px solid #28a745;
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
    animation: tikCiz 0.8s ease forwards;
}

    .tik-animasyon::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 5px;
        border-left: 3px solid #28a745;
        border-bottom: 3px solid #28a745;
        top: 8px;
        left: 7px;
        transform: scale(0) rotate(-45deg);
        animation: tikIcerik 0.4s ease 0.6s forwards;
    }

.avantaj-icerik h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    font-weight: bold;
    color: #53100b;
}

.avantaj-icerik p {
    font-size: 14px;
    color: #333;
}

/* Animasyonlar */
@keyframes tikCiz {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes tikIcerik {
    to {
        transform: scale(1) rotate(-45deg);
    }
}
@media (max-width: 768px) {
    .hikaye-dalga-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .avantaj-kutu {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.hikaye-dalga-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 50px;
    background: #f6f1eb;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.hikaye-dalga-kare {
    text-align: center;
    animation: yukariAsagi 3.5s ease-in-out infinite alternate;
}

    .hikaye-dalga-kare:nth-child(2) {
        animation-delay: 0.3s;
    }

    .hikaye-dalga-kare:nth-child(3) {
        animation-delay: 0.6s;
    }

    .hikaye-dalga-kare:nth-child(4) {
        animation-delay: 0.9s;
    }

    .hikaye-dalga-kare img {
        width: 100px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    }

    .hikaye-dalga-kare p {
        font-size: 15px;
        font-weight: 600;
        color: #5c2e1f;
        margin: 0;
    }

@keyframes yukariAsagi {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

@media screen and (max-width: 768px) {
    .hikaye-dalga-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hikaye-dalga-kare img {
        width: 80px;
    }

    .hikaye-dalga-kare p {
        font-size: 13px;
    }
}

.hikaye-dalga-kare.final-kare {
    animation-delay: 1.2s;
}

    .hikaye-dalga-kare.final-kare p {
        color: #8a2e0f;
    }

/* ==== NAVBAR DAHA KALIN VE MENÜLERİ YAY ==== */
.navbar {
    padding-top: 1.6rem; /* üst boşluğu artır */
    padding-bottom: 1.6rem; /* alt boşluğu artır */
    min-height: 95px; /* siyah bandın yüksekliği */
    background-color: #000 !important;
}

    /* Menü yazıları: büyük, kalın ve yaygın */
    .navbar .nav-link {
        font-size: 1.28rem; /* yazı boyutu */
        font-weight: 700; /* kalın */
        letter-spacing: 0.8px; /* harfler arası mesafe */
        padding: 1rem 1.6rem; /* menü aralığı geniş */
        color: white !important;
        font-family: "Times New Roman", Times, serif;
        text-transform: uppercase; /* kurumsal görünüm */
        transition: all 0.2s ease-in-out;
    }

        /* Hover ve aktif efekt */
        .navbar .nav-link:hover {
            color: #f08030 !important; /* kiremit tonu */
            transform: scale(1.05); /* hafif büyüme efekti */
        }

/* Menü elemanlarını biraz daha ayır */
.navbar-nav {
    gap: 30px; /* menü öğeleri arasındaki mesafe */
}

/* Mobilde biraz küçültelim */
@media (max-width: 768px) {
    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
        min-height: 75px;
    }

        .navbar .nav-link {
            font-size: 1.05rem;
            letter-spacing: 0.4px;
            padding: 0.7rem 1rem;
        }

    .navbar-nav {
        gap: 14px;
    }
}
/* ==== HİKAYE (küçük animasyon) — daha geniş ve büyük ==== */
/* Eski sınırlamaları (width:22%, max-width:60px gibi) ezip geçiyoruz */
.hikaye-dalga-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around; /* sağ/sol daha iyi dağılır */
    align-items: flex-start;
    gap: 48px; /* kutular arası boşluk arttı */
    padding: 48px 60px; /* sağ/sol ve yukarı/aşağı nefes */
    background: #f6f1eb; /* mevcut zemin korunur */
}

.hikaye-dalga-kare {
    width: 24%; /* her kutu biraz daha geniş */
    max-width: 320px; /* masaüstü üst sınırı */
    text-align: center;
}

    .hikaye-dalga-kare img {
        width: 100%;
        max-width: 160px; /* görseller büyüdü (60px’den 160px) */
        height: auto;
        border-radius: 10px;
        margin-bottom: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

    .hikaye-dalga-kare p {
        font-size: 18px; /* yazılar büyüdü */
        font-weight: 600;
        color: #5c2e1f;
        margin-top: 8px;
    }


/* Tablet */
@media (max-width: 992px) {
    .hikaye-dalga-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        padding: 36px 20px;
    }

    .hikaye-dalga-kare {
        width: 42%;
        max-width: 260px;
    }

        .hikaye-dalga-kare img {
            max-width: 120px;
        }

        .hikaye-dalga-kare p {
            font-size: 16px;
        }
}

/* Mobil */
@media (max-width: 576px) {
    .hikaye-dalga-kare {
        width: 100%;
        max-width: none;
    }

        .hikaye-dalga-kare img {
            max-width: 110px;
        }

        .hikaye-dalga-kare p {
            font-size: 15px;
        }
}

/* ==== KALİTE KUTULARI — daha yay ve okunaklı ==== */
.avantajlar-bolumu {
    display: flex;
    flex-wrap: nowrap; /* masaüstünde tek satırda kalsın */
    justify-content: space-around; /* sağ/solu doldur */
    gap: 32px; /* kutular arası mesafe */
    padding: 50px 40px; /* alanı büyüt */
    background: #fff;
}

.avantaj-kutu {
    flex: 1 1 28%;
    max-width: 28%; /* 3 kutu rahat sığsın */
    min-width: 260px; /* çok dar ekranda da ezilmesin */
    padding: 22px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.avantaj-icerik h3 {
    font-size: 18px; /* başlık büyütüldü */
    margin-bottom: 6px;
    color: #53100b;
    font-weight: bold;
}

.avantaj-icerik p {
    font-size: 15px; /* açıklama büyütüldü */
    color: #333;
}

/* Tablet */
@media (max-width: 992px) {
    .avantajlar-bolumu {
        flex-wrap: wrap; /* 2’li dizilebilsin */
        justify-content: center;
        gap: 24px;
        padding: 36px 20px;
    }

    .avantaj-kutu {
        flex: 1 1 44%;
        max-width: 44%;
    }
}

/* Mobil */
@media (max-width: 576px) {
    .avantaj-kutu {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
/* ==== KALİTE BÖLÜMÜ — BÜYÜTÜLMÜŞ & YAY ==== */
.avantajlar-bolumu {
    display: flex;
    flex-wrap: wrap; /* gerekirse satır kır */
    justify-content: space-between; /* sağ-sol boşlukları doldur */
    align-items: stretch;
    gap: 36px !important; /* kutular arası mesafe */
    padding: 70px 40px !important; /* bölüm yüksekliği/arttırma */
    background: #fff;
    max-width: 1200px; /* içerik genişliği */
    margin: 0 auto; /* ortala */
}

.avantaj-kutu {
    flex: 1 1 30%; /* 3’lü dizilim için ideal */
    min-width: 320px; /* küçük ekranda ezilmesin */
    max-width: 380px; /* çok büyümesin */
    padding: 28px 22px !important; /* iç boşluk büyüt */
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
}

/* Tik animasyonunu büyüt */
.tik-animasyon {
    width: 36px !important;
    height: 36px !important;
    border-width: 3px !important;
    margin-bottom: 16px !important;
}

    .tik-animasyon::after {
        width: 14px !important;
        height: 7px !important;
        top: 10px !important;
        left: 9px !important;
        border-width: 3px !important;
    }

/* Metinleri büyüt */
.avantaj-icerik h3 {
    font-size: 22px !important; /* başlık büyüdü */
    margin-bottom: 8px !important;
    color: #53100b;
    font-weight: 700;
}

.avantaj-icerik p {
    font-size: 18px !important; /* açıklama büyüdü */
    color: #333;
}

/* Tablet */
@media (max-width: 992px) {
    .avantajlar-bolumu {
        gap: 28px !important;
        padding: 56px 24px !important;
    }

    .avantaj-kutu {
        flex: 1 1 45%;
        min-width: 280px;
        max-width: 460px;
    }

    .avantaj-icerik h3 {
        font-size: 20px !important;
    }

    .avantaj-icerik p {
        font-size: 16.5px !important;
    }
}

/* Mobil */
@media (max-width: 576px) {
    .avantajlar-bolumu {
        gap: 20px !important;
        padding: 40px 16px !important;
    }

    .avantaj-kutu {
        flex: 1 1 100%;
        min-width: unset;
        max-width: none;
    }

    .avantaj-icerik h3 {
        font-size: 19px !important;
    }

    .avantaj-icerik p {
        font-size: 15.5px !important;
    }
}
/* ==== HİKAYE DALGASI — YAYVAN GENİŞLETİLMİŞ ==== */
.hikaye-dalga-wrapper {
    display: flex;
    justify-content: space-evenly; /* eşit yayılım */
    align-items: center;
    gap: 20px;
    background: #f6f1eb; /* mevcut zemin */
    padding: 40px 0; /* yüksekliği sabit tut */
    flex-wrap: nowrap; /* tek satırda kalsın */
}

.hikaye-dalga-kare {
    flex: 1 1 auto;
    text-align: center;
    animation: yukariAsagi 3.5s ease-in-out infinite alternate;
    max-width: 240px; /* 🔥 genişlik artırıldı */
}

    .hikaye-dalga-kare img {
        width: 160px; /* 🔥 resimler büyütüldü */
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .hikaye-dalga-kare p {
        font-size: 18px; /* 🔥 yazılar biraz büyütüldü */
        font-weight: 600;
        color: #5c2e1f;
        margin: 0;
    }

/* animasyon aynı */
@keyframes yukariAsagi {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* Tablet görünüm */
@media (max-width: 992px) {
    .hikaye-dalga-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .hikaye-dalga-kare img {
        width: 130px;
    }

    .hikaye-dalga-kare p {
        font-size: 16px;
    }
}

/* Mobil görünüm */
@media (max-width: 576px) {
    .hikaye-dalga-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .hikaye-dalga-kare img {
        width: 110px;
    }

    .hikaye-dalga-kare p {
        font-size: 14px;
    }
}
/* ============================
   ANASAYFA GENEL WRAPPER
   ============================ */
.anasayfa {
    padding-bottom: 40px;
}

    /* ============================
   HERO BAŞLIK
   ============================ */
    .anasayfa .mk-hero-title {
        text-align: center;
        margin: 50px auto 30px;
        padding: 10px 16px 20px;
    }

        .anasayfa .mk-hero-title .mk-sub {
            display: inline-block;
            font-size: 18px;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            font-weight: 600;
            background: linear-gradient(90deg, #b08d2f, #7a6222);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .anasayfa .mk-hero-title h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: clamp(2.6rem, 5vw + 1rem, 4.4rem);
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #7b1b13;
            margin: 0;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
        }

        .anasayfa .mk-hero-title .mk-line {
            display: block;
            width: 200px;
            height: 4px;
            margin: 18px auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #fbc27c, #e0622e);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .28);
        }

/* Küçük ekranlarda başlığı biraz küçült */
@media (max-width: 576px) {
    .anasayfa .mk-hero-title {
        margin-top: 30px;
    }

        .anasayfa .mk-hero-title .mk-sub {
            font-size: 13px;
            letter-spacing: 0.20em;
        }

        .anasayfa .mk-hero-title h1 {
            font-size: 2.4rem;
            letter-spacing: 0.18em;
        }

        .anasayfa .mk-hero-title .mk-line {
            width: 150px;
            height: 3px;
        }
}

/* ============================
   VİDEO HERO
   ============================ */
.anasayfa .hero-video {
    position: relative;
    overflow: hidden;
    height: clamp(260px, 45vw, 520px);
    border-radius: 12px;
    margin-bottom: 40px;
}

    .anasayfa .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.anasayfa .hero-video-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: clamp(22px, 3vw + 8px, 34px);
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
    text-align: center;
    padding: 0 20px;
}


/* ============================
   HİKAYE KARELERİ
   ============================ */
.anasayfa .hikaye-dalga-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 30px 10px 20px;
}

.anasayfa .hikaye-dalga-kare {
    text-align: center;
    max-width: 200px;
}

    .anasayfa .hikaye-dalga-kare img {
        width: 100%;
        max-width: 120px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }

    .anasayfa .hikaye-dalga-kare p {
        font-size: 15px;
        font-weight: 600;
        color: #5c2e1f;
        margin: 0;
    }

/* Tablet: 2x2 dizilim gibi dursun */
@media (max-width: 768px) {
    .anasayfa .hikaye-dalga-wrapper {
        gap: 18px;
    }

    .anasayfa .hikaye-dalga-kare {
        max-width: 45%;
    }

        .anasayfa .hikaye-dalga-kare img {
            max-width: 90px;
        }

        .anasayfa .hikaye-dalga-kare p {
            font-size: 14px;
        }
}

/* Küçük telefon: alt alta */
@media (max-width: 480px) {
    .anasayfa .hikaye-dalga-kare {
        max-width: 100%;
    }

        .anasayfa .hikaye-dalga-kare img {
            max-width: 80px;
        }
}

/* ============================
   AVANTAJLAR (KALİTE KUTULARI)
   ============================ */
.anasayfa .avantajlar-bolumu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px 10px;
    background: #ffffff;
    border-radius: 12px;
    margin: 20px auto 40px;
}

.anasayfa .avantaj-kutu {
    flex: 1 1 30%;
    min-width: 260px;
    max-width: 340px;
    padding: 22px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.anasayfa .tik-animasyon {
    width: 32px;
    height: 32px;
    border: 3px solid #28a745;
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
    animation: tikCiz 0.8s ease forwards;
}

    .anasayfa .tik-animasyon::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 6px;
        border-left: 3px solid #28a745;
        border-bottom: 3px solid #28a745;
        top: 9px;
        left: 8px;
        transform: scale(0) rotate(-45deg);
        animation: tikIcerik 0.4s ease 0.6s forwards;
    }

.anasayfa .avantaj-icerik h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    font-weight: bold;
    color: #53100b;
}

.anasayfa .avantaj-icerik p {
    font-size: 15px;
    color: #333;
}

@keyframes tikCiz {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes tikIcerik {
    to {
        transform: scale(1) rotate(-45deg);
    }
}

/* Tablet: 2’li dizilim */
@media (max-width: 992px) {
    .anasayfa .avantaj-kutu {
        flex: 1 1 45%;
        min-width: 240px;
    }
}

/* Mobil: tek sütun */
@media (max-width: 576px) {
    .anasayfa .avantaj-kutu {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* ============================
   BELGELER / SERTİFİKALAR
   ============================ */
.anasayfa .belgeler-bolumu {
    background: #f9f9f9;
    padding: 40px 10px 50px;
    border-radius: 12px;
    margin: 0 auto 20px;
    text-align: center;
}

    .anasayfa .belgeler-bolumu h3 {
        color: #000;
        font-family: 'Segoe UI', 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 24px;
    }

.anasayfa .belgeler-icerik {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

    .anasayfa .belgeler-icerik img {
        height: 60px;
        width: auto;
    }

/* Küçük ekran: logolar biraz küçülsün */
@media (max-width: 480px) {
    .anasayfa .belgeler-icerik img {
        height: 48px;
    }
}

/* ============================
   SLAYT RESİMLERİ (sahneAlani)
   ============================ */
.anasayfa #sahneAlani {
    display: flex;
    flex-wrap: wrap; /* Gerekirse alt satıra geçsin */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px auto 30px;
    max-width: 100%;
}

    .anasayfa #sahneAlani .sahne {
        flex: 1 1 22%; /* 4 tane yan yana ~%22 */
        min-width: 140px; /* Çok küçülmesin */
        max-width: 220px; /* Çok büyümesin */
        text-align: center;
        opacity: 0.4;
        transform: scale(0.9);
        transition: all 1s ease;
    }

        .anasayfa #sahneAlani .sahne.aktif {
            opacity: 1;
            transform: scale(1.05);
        }

        .anasayfa #sahneAlani .sahne img {
            max-width: 100%; /* Kutunun dışına taşma */
            height: auto;
            max-height: 160px;
            transition: 1s ease;
        }

/* Tablet: 2’li dizilim daha rahat */
@media (max-width: 768px) {
    .anasayfa #sahneAlani {
        gap: 16px;
        margin: 24px auto 20px;
    }

        .anasayfa #sahneAlani .sahne {
            flex: 1 1 45%; /* 2 sütun */
            min-width: 140px;
        }

            .anasayfa #sahneAlani .sahne img {
                max-height: 120px;
            }
}

/* Küçük telefon: tek sütun */
@media (max-width: 480px) {
    .anasayfa #sahneAlani .sahne {
        flex: 1 1 100%; /* Tam satır */
        max-width: 100%;
    }

        .anasayfa #sahneAlani .sahne img {
            max-height: 100px;
        }
}
/* ============================
   REFERANSLAR SAYFASI
   ============================ */

.ref-page {
    color: #2b2623;
}

/* ÜST BAŞLIK */
.ref-title {
    font-size: 2.1rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #7a2a1b;
    text-align: center;
    font-family: "Times New Roman", serif;
    margin-bottom: 0.4rem;
}

.ref-subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #7b7772;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.3rem auto;
}

/* Üstteki açıklama yazısı için fade-in */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .8s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HARF GRUP BLOĞU */
.ref-group {
    margin-bottom: 2.2rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

/* HARF BAŞLIĞI */
.ref-letter {
    font-size: 1.6rem;
    color: #53100b;
    font-family: "Times New Roman", serif;
    margin-bottom: 0.9rem;
}

/* MADDELER / KOLONLU YAPI */
.ref-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem 1.4rem;
}

/* Tablet */
@media (max-width: 992px) {
    .ref-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 576px) {
    .ref-items {
        grid-template-columns: 1fr;
    }
}

/* TEK REFERANS KARTI */
.ref-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.65rem 1rem; /* 🔥 Biraz büyütüldü */
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    font-size: 1rem; /* 🔥 Yazılar büyütüldü */
    font-weight: 500;
    transition: all .18s ease;
    /* Giriş animasyonu */
    opacity: 0;
    transform: translateY(10px);
    animation: refFadeIn .45s ease-out forwards;
}

    /* Hover efekti */
    .ref-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
        border-color: rgba(122,42,27,0.35);
    }

/* Aynı grup içindeki kartlara hafif gecikme – dalga efekti */
.ref-items .ref-item:nth-child(1) {
    animation-delay: 0.02s;
}

.ref-items .ref-item:nth-child(2) {
    animation-delay: 0.07s;
}

.ref-items .ref-item:nth-child(3) {
    animation-delay: 0.12s;
}

.ref-items .ref-item:nth-child(4) {
    animation-delay: 0.17s;
}

.ref-items .ref-item:nth-child(5) {
    animation-delay: 0.22s;
}

.ref-items .ref-item:nth-child(6) {
    animation-delay: 0.27s;
}

/* Kartlar için giriş animasyonu */
@keyframes refFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   İLETİŞİM SAYFASI
   ============================ */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.bolge-yetkili-panel {
    background: linear-gradient(135deg, rgba(248,242,235,0.96), rgba(255,255,255,0.98));
    border-radius: 16px;
    padding: 1rem 1.1rem 1.2rem;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.bolge-yetkili-panel-baslik {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #7a2a1b;
    margin: 0 0 .4rem;
    text-align: center;
}

.bolge-yetkili-panel-aciklama {
    font-size: .88rem;
    color: #6b645f;
    margin-bottom: .7rem;
}

.bolge-yetkili-kart {
    background: #ffffff;
    border-radius: 14px;
    padding: .8rem .9rem .85rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    font-size: .88rem;
    height: 100%;
}

.bolge-yetkili-kart-isim {
    font-size: 1rem;
    font-weight: 600;
    color: #31110c;
    margin-bottom: .1rem;
}

.bolge-yetkili-kart-bolge {
    font-size: .86rem;
    color: #7b5b4d;
    margin-bottom: .3rem;
}

.bolge-yetkili-bolge-list {
    margin: 0 0 .5rem;
    padding-left: 1.1rem;
    font-size: .85rem;
    color: #4d3f38;
}

    .bolge-yetkili-bolge-list li {
        margin-bottom: .15rem;
    }

.bolge-yetkili-kart-bilgi {
    font-size: .86rem;
    color: #444;
    margin-bottom: .15rem;
}

    .bolge-yetkili-kart-bilgi span:first-child {
        display: inline-block;
        min-width: 72px;
        font-weight: 600;
        color: #5b2a1d;
    }

.bolge-yetkili-kart-not {
    margin-top: .3rem;
    font-size: .8rem;
    color: #777;
    line-height: 1.35;
}

.bolge-yetkili-chip {
    margin-top: .45rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .76rem;
    padding: .18rem .6rem;
    border-radius: 999px;
    background: rgba(122,42,27,0.08);
    color: #7a2a1b;
}

.bolge-yetkili-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #ffd7b0, #ff8c5a);
}
.contact-info {
    background: linear-gradient(135deg, rgba(248,242,235,0.96), rgba(255,255,255,0.98));
    border-radius: 16px;
    padding: 1rem 1.2rem 1.4rem;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

    /* Başlık */
    .contact-info h3 {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: .14em;
        color: #7a2a1b;
        margin: 0 0 .6rem;
    }

    /* Paragraflar */
    .contact-info p {
        font-size: .9rem;
        color: #4b433e;
        margin-bottom: .55rem;
    }

        /* "Adres / Telefon" kalın yazılar */
        .contact-info p strong {
            color: #5b2a1d;
        }

    /* Zaten tanımlı olan link-button'larla uyumlu dursun */
    .contact-info a.link-button {
        margin-top: 4px;
    }
    .contact-info p a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 4px;
        padding: 4px 12px;
        border-radius: 999px;
        background: rgba(122,42,27,0.08);
        font-size: 0.92rem;
        font-weight: 600;
        color: #312825;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

        /* Hover efekti */
        .contact-info p a:hover {
            background: rgba(122,42,27,0.18);
            color: #7a2a1b;
            text-decoration: underline;
        }

    /* Telefon ikonu */
    .contact-info p:nth-of-type(2) a::before {
        content: "📞";
        font-size: 1rem;
    }

    /* E-posta ikonu */
    .contact-info p:nth-of-type(3) a::before {
        content: "✉️";
        font-size: 1rem;
    }

    /* Instagram ikonu */
.ig-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* chip tasarım */
.instagram-link {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(122,42,27,0.08);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: #312825;
    transition: 0.2s ease;
}

    .instagram-link:hover {
        background: rgba(122,42,27,0.18);
        color: #7a2a1b;
    }
/* ===== FOOTER GENEL ===== */
.mk-footer {
    background: #000;
    color: #f5f5f5;
    font-family: "Times New Roman", serif;
    padding: 8px 0;
}

.mk-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* SOL: © + Vahide */
.mk-footer-left {
    flex: 1;
}

.mk-footer-left-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ORTA: Logo + slogan */
.mk-footer-center {
    flex: 1;
    text-align: center;
}

.mk-footer-logo {
    height: 80px;
    margin-bottom: 4px;
}

.mk-footer-center-slogan {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* SAĞ: İletişim */
.mk-footer-right {
    flex: 0 0 360px;
    max-width: 360px;
    text-align: left;
}

.mk-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mk-footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 4px;
    }

    .mk-footer-contact i {
        color: #f08030;
        margin-top: 3px;
        width: 20px;
    }

/* Linkler */
.mk-footer-right a {
    color: #ffffff !important;
    text-decoration: none;
}

    .mk-footer-right a:hover {
        color: #f08030 !important;
        text-decoration: underline;
    }

/* İmza – Vahide */
.footer-signature a {
    color: #d4a24c !important;
    font-weight: 600;
}

    .footer-signature a:hover {
        color: #f1c773 !important;
    }

/* ===== FOOTER MOBİL DÜZEN ===== */
@media (max-width: 768px) {

    /* 3 blok üst üste gelsin */
    .mk-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .mk-footer-center,
    .mk-footer-right,
    .mk-footer-left {
        flex: none;
        max-width: 100%;
        margin: 0;
    }

    /* Sıra: 1) Logo 2) İletişim 3) © + Vahide */
    .mk-footer-center {
        order: 1;
    }

    .mk-footer-right {
        order: 2;
    }

    .mk-footer-left {
        order: 3;
    }

    /* İmza satırları dip dibe */
    .mk-footer-left-inner {
        align-items: center;
        gap: 0;
    }

        .mk-footer-left-inner > div {
            margin: 0;
        }

    /* İletişim satırları ortalı ve sık */
    .mk-footer-contact li {
        justify-content: center;
        text-align: center;
        margin-bottom: 3px;
    }

    /* Logo ve slogan arası da kısa */
    .mk-footer-logo {
        height: 70px;
        margin-bottom: 2px;
    }

    .mk-footer-center-slogan {
        margin-bottom: 2px;
    }
    /* 🔥 MOBİLDE 3 BLOK ARASINA 1 SATIR BOŞLUK */
    .mk-footer-center {
        margin-bottom: 12px !important; /* Logo → İletişim arası boşluk */
    }

    .mk-footer-right {
        margin-bottom: 12px !important; /* İletişim → İmza arası boşluk */
    }

}
