/* ============================================
   7 KAPI | Tarihi Taş Bina Temalı Stil Sistemi
   Renkler: Taş Grisi, Altın Sarısı, Parşömen
   ============================================ */

/* === CSS Variables === */
:root {
    --fildisi: #F9F7F2;
    --fildisi-koyu: #EBE5D9;
    --lacivert: #1A2B3C;
    --lacivert-koyu: #101B26;
    --tas-grisi: #1A2B3C; /* Mapped to Navy for smooth transition */
    --tas-koyu: #101B26; /* Mapped to dark navy */
    --altin: #C5A059;
    --altin-acik: #dbc286;
    --altin-koyu: #a98748;
    --parsomen: #F9F7F2;
    --parsomen-koyu: #EBE5D9;
    --bej: #F9F7F2;
    --beyaz: #ffffff;
    --yarim-seffaf: rgba(26, 43, 60, 0.85);
    --golge-altin: rgba(197, 160, 89, 0.15);
    --golge-koyu: rgba(0, 0, 0, 0.10);
    --font-baslik: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-govde: 'Montserrat', 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --gecis: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--fildisi);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a059' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    font-family: var(--font-govde);
    color: var(--lacivert);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--altin);
    color: var(--beyaz);
}

/* === Nakış & Embroidery Dokunuşları === */
.nakis-kose::before, .nakis-kose::after {
    content: '';
    position: absolute;
    width: 40px; height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0v2H4v2H2v2H0v2h2v-2h2V4h2V2h2V0H6z M14 0v2h-2v2h-2v2h-2v2h-2v2H4v2H2v-2h2v-2h2V8h2V6h2V4h2V2h2z M6 14v-2H4v-2H2v-2H0v2h2v2h2v2h2v2h2z' fill='%23c5a059' fill-opacity='0.5'/%3E%3C/svg%3E");
    background-size: 20px;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10;
}
.nakis-sol-ust::before { top: 15px; left: 15px; }
.nakis-sag-ust::after { top: 15px; right: 15px; transform: scaleX(-1); }
.nakis-sol-alt::before { bottom: 15px; left: 15px; transform: scaleY(-1); }
.nakis-sag-alt::after { bottom: 15px; right: 15px; transform: scaleX(-1) scaleY(-1); }

.hero-nakis-cerceve {
    border: 1px dotted rgba(197, 160, 89, 0.4);
    padding: 40px 30px;
    position: relative;
    border-radius: 2px;
}
.hero-nakis-cerceve::before {
    content: '';
    position: absolute; top: 4px; left: 4px; right: 4px; bottom: 4px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    pointer-events: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-baslik);
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-family: var(--font-govde);
    font-weight: 400;
    color: #4a5a6a;
}

/* === Navbar === */
.navbar-kapi {
    background: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--gecis);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.navbar-kapi.scrolled {
    padding: 8px 0;
    background: rgba(249, 247, 242, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.kapi-logo {
    font-family: var(--font-baslik);
    font-size: 1.8rem !important;
    font-weight: 700;
    color: var(--lacivert) !important;
    letter-spacing: 4px;
    text-decoration: none;
}

.logo-accent {
    color: var(--altin);
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: none;
}

.navbar-kapi .nav-link {
    color: var(--lacivert) !important;
    font-family: var(--font-govde);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px !important;
    position: relative;
    transition: var(--gecis);
}

.navbar-kapi .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--altin);
    transition: width 0.3s ease;
}

.navbar-kapi .nav-link:hover {
    color: var(--altin) !important;
}

.navbar-kapi .nav-link:hover::after {
    width: 70%;
}

.nav-iletisim {
    border: 1px solid var(--altin) !important;
    border-radius: 30px;
    margin-left: 10px;
    color: var(--altin) !important;
}

.nav-iletisim:hover {
    background: var(--altin) !important;
    color: var(--beyaz) !important;
}

/* === Hamburger Menu (Mobile) touch target fix === */
.navbar-toggler {
    min-height: 44px;
    min-width: 44px;
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* === Hero Section === */
.hero-kapi {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(26, 43, 60, 0.92) 0%,
        rgba(16, 27, 38, 0.85) 50%,
        rgba(26, 43, 60, 0.92) 100%
    );
    overflow: hidden;
}

.hero-kapi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(197, 160, 89, 0.12) 0%, transparent 50%);
    z-index: 1;
}

.hero-icerik {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-dekor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.dekor-cizgi {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--altin), transparent);
}

.dekor-sembol {
    color: var(--altin);
    font-size: 1.5rem;
    opacity: 0.8;
}

.hero-baslik {
    font-family: var(--font-baslik);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--beyaz);
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-baslik .hero-accent {
    color: var(--altin);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-alt-baslik {
    font-family: var(--font-baslik);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--altin);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-aciklama {
    font-family: var(--font-govde);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-butonlar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn-altin {
    background: transparent;
    color: var(--altin);
    border: 1px solid var(--altin);
    padding: 10px 35px;
    min-height: 44px;
    font-family: var(--font-govde);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--gecis);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-altin::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0V0zm1 1h1v1H1V1zm1 1h1v1H2V2z' fill='%23ffffff' fill-opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0;
    transition: var(--gecis);
    z-index: 0;
}

.btn-altin:hover {
    background: var(--altin);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.25);
    color: var(--beyaz);
}
.btn-altin:hover::before { opacity: 1; }
.btn-altin span, .btn-altin i { position: relative; z-index: 1; }

.btn-tas {
    background: transparent;
    color: var(--lacivert);
    border: 1px solid rgba(26, 43, 60, 0.3);
    padding: 10px 35px;
    min-height: 44px;
    font-family: var(--font-govde);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--gecis);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-tas::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0V0zm1 1h1v1H1V1zm1 1h1v1H2V2z' fill='%23c5a059' fill-opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0;
    transition: var(--gecis);
    z-index: 0;
}

.btn-tas:hover {
    border-color: var(--lacivert);
    background: rgba(26, 43, 60, 0.05);
    transform: translateY(-3px);
}
.btn-tas:hover::before { opacity: 1; }
.btn-tas span, .btn-tas i { position: relative; z-index: 1; }


/* === Section Styles === */
.section-kapi {
    padding: 100px 0;
    position: relative;
}

.section-baslik-alani {
    text-align: center;
    margin-bottom: 60px;
}

.section-ust-yazi {
    font-family: var(--font-govde);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--altin);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-baslik {
    font-family: var(--font-baslik);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--tas-grisi);
    margin-bottom: 15px;
}

.section-cizgi {
    width: 60px;
    height: 2px;
    background: var(--altin);
    margin: 0 auto;
}

/* === Taş Duvar (Dark Sections) === */
.tas-duvar {
    background: linear-gradient(135deg, var(--lacivert-koyu), var(--lacivert));
    color: var(--beyaz);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tas-duvar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
}

/* === Altın Başlık === */
.altin-baslik {
    font-family: var(--font-baslik);
    color: var(--altin);
    letter-spacing: 3px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

.altin-baslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--altin);
}

.altin-baslik-sm {
    font-family: var(--font-baslik);
    color: var(--altin);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* === Cards === */
.kart {
    background: var(--beyaz);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--gecis);
    position: relative;
}

.kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--altin), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12), 0 5px 15px var(--golge-koyu);
    border-color: rgba(212, 175, 55, 0.3);
}

.kart:hover::before {
    opacity: 1;
}

.kart-icerik {
    padding: 30px;
}

.kart-resim {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kart:hover .kart-resim {
    transform: scale(1.05);
}

.kart-resim-alani {
    overflow: hidden;
    position: relative;
}

.kart-resim-alani::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.05));
}

/* === Menu List (Elegant Style) === */
.menu-kategori-blok {
    margin-bottom: 70px;
}
.menu-kategori-baslik {
    font-family: var(--font-baslik);
    font-size: 2.5rem;
    color: var(--lacivert);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.menu-kategori-ayirici {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    color: var(--altin);
    opacity: 0.8;
}
.menu-kategori-ayirici::before, .menu-kategori-ayirici::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--altin);
    margin: 0 20px;
}
.menu-liste-item {
    margin-bottom: 30px;
    position: relative;
}
.menu-liste-baslik-fiyat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 5px;
}
.menu-liste-baslik {
    font-family: var(--font-baslik);
    font-size: 1.35rem;
    color: var(--lacivert-koyu);
    font-weight: 700;
    margin: 0;
    padding-right: 15px;
    background: var(--fildisi);
    position: relative;
    z-index: 2;
}
.menu-liste-noktalar {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(197, 160, 89, 0.4);
    position: relative;
    top: -6px;
    z-index: 1;
}
.menu-liste-fiyat {
    font-family: var(--font-baslik);
    font-size: 1.3rem;
    color: var(--altin-koyu);
    font-weight: 700;
    padding-left: 15px;
    background: var(--fildisi);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}
.menu-liste-aciklama {
    font-family: var(--font-govde);
    font-size: 0.95rem;
    color: #6a7a8a;
    font-style: italic;
    max-width: 90%;
    line-height: 1.5;
}

/* === Menu Filter Tabs === */
.menu-filtre {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.menu-filtre-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--tas-grisi);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-govde);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--gecis);
}

.menu-filtre-btn:hover,
.menu-filtre-btn.aktif {
    background: var(--altin);
    border-color: var(--altin);
    color: var(--tas-koyu);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* === Rota (Mudurnu) Section === */
.rota-adim {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--beyaz);
    border-radius: var(--radius);
    border: 1px dotted rgba(197, 160, 89, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    transition: var(--gecis);
}

.rota-adim::before {
    content: '';
    position: absolute; left: 8px; top: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    pointer-events: none;
    border-radius: var(--radius-sm);
}

.rota-adim:hover {
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
    transform: translateY(-5px);
}

.rota-numara {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--altin), var(--altin-koyu));
    color: var(--tas-koyu);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-baslik);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rota-icerik h4 {
    font-family: var(--font-baslik);
    color: var(--tas-grisi);
    margin-bottom: 8px;
}

.rota-icerik p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* === Hakkımızda / Biz Kimiz === */
.hakkimizda-resim {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.hakkimizda-resim img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hakkimizda-resim:hover img {
    transform: scale(1.03);
}

.hakkimizda-resim::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--altin);
    border-radius: var(--radius);
    opacity: 0.3;
    pointer-events: none;
}

/* === Özellikler / Features Grid === */
.ozellik-kutu {
    text-align: center;
    padding: 40px 25px;
    background: var(--beyaz);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--gecis);
}

.ozellik-kutu:hover {
    border-color: var(--altin);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--golge-altin);
}

.ozellik-ikon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--altin), var(--altin-koyu));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--tas-koyu);
}

.ozellik-kutu h5 {
    font-family: var(--font-baslik);
    margin-bottom: 10px;
}

.ozellik-kutu p {
    font-size: 0.9rem;
    color: #777;
}

/* === Footer === */
.footer-kapi {
    background: linear-gradient(180deg, var(--tas-koyu), #111);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--altin), transparent);
}

.footer-logo {
    font-family: var(--font-baslik);
    font-size: 1.8rem;
    color: var(--beyaz);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--gecis);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--altin);
    padding-left: 5px;
}

.footer-iletisim p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-iletisim i {
    color: var(--altin);
    margin-right: 8px;
}

.footer-iletisim a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--gecis);
}

.footer-iletisim a:hover {
    color: var(--altin);
}

.footer-sosyal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    margin-right: 15px;
    transition: var(--gecis);
}

.footer-sosyal a:hover {
    color: var(--altin);
    transform: translateY(-3px);
}

.footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-alt p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* === Scroll to Top === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--altin);
    color: var(--tas-koyu);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--gecis);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

/* === Page Hero (Subpages) === */
.sayfa-hero {
    background: linear-gradient(135deg, var(--tas-koyu), var(--tas-grisi));
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.sayfa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.sayfa-hero h1 {
    font-family: var(--font-baslik);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--beyaz);
    letter-spacing: 5px;
    margin-bottom: 10px;
    position: relative;
}

.sayfa-hero p {
    color: var(--altin);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 3px;
    position: relative;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* === Loading Shimmer === */
.shimmer {
    background: linear-gradient(90deg, transparent 25%, rgba(212, 175, 55, 0.1) 50%, transparent 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-baslik {
        letter-spacing: 6px;
    }

    .hero-alt-baslik {
        letter-spacing: 3px;
    }

    .section-kapi {
        padding: 60px 0;
    }

    .rota-adim {
        flex-direction: column;
        gap: 15px;
    }

    .menu-kart, .ozellik-kutu {
        width: 100%;
        margin-bottom: 20px;
    }

    .menu-kart-resim {
        width: 100px;
        height: 100px;
    }

    .hero-butonlar {
        flex-direction: column;
        align-items: stretch;
    }

    /* Target links and buttons for 44px touch targets */
    .nav-link, .footer-links a, .footer-sosyal a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .navbar-kapi .container {
        position: relative;
    }

    .kapi-logo {
        position: absolute;
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        margin: 0;
        z-index: 1050;
    }

    .navbar-kapi .navbar-collapse {
        background: rgba(249, 247, 242, 0.98);
        padding: 15px;
        border-radius: var(--radius);
        margin-top: 60px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    /* Mobil Nakış Küçültmesi */
    .nakis-kose::before, .nakis-kose::after {
        width: 30px; 
        height: 30px; 
        background-size: 15px;
    }
    .nakis-sol-ust::before { top: 10px; left: 10px; }
    .nakis-sag-ust::after { top: 10px; right: 10px; }
    .nakis-sol-alt::before { bottom: 10px; left: 10px; }
    .nakis-sag-alt::after { bottom: 10px; right: 10px; }
}

/* === Print Styles (Adisyon) === */
@media print {
    body * {
        visibility: hidden;
    }
    .adisyon-yazdir, .adisyon-yazdir * {
        visibility: visible;
    }
    .adisyon-yazdir {
        position: absolute;
        left: 0;
        top: 0;
        width: 80mm;
        font-family: 'Courier New', monospace;
        font-size: 12px;
    }
}

/* === Adisyon === */
.masa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.masa-btn {
    aspect-ratio: 1;
    border: 2px solid rgba(212, 175, 55, 0.2);
    background: var(--beyaz);
    border-radius: var(--radius);
    font-family: var(--font-baslik);
    font-size: 1.3rem;
    color: var(--tas-grisi);
    cursor: pointer;
    transition: var(--gecis);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.masa-btn i {
    font-size: 1.5rem;
    color: var(--altin);
}

.masa-btn:hover {
    border-color: var(--altin);
    background: var(--golge-altin);
    transform: scale(1.05);
}

.masa-btn.dolu {
    border-color: var(--altin);
    background: linear-gradient(135deg, var(--altin), var(--altin-koyu));
    color: var(--tas-koyu);
}

.masa-btn.dolu i {
    color: var(--tas-koyu);
}
