/* ================================================================
   RESTO TEMA - main.css
   ================================================================ */

:root {
    --renk-birincil: #c8a96e;    /* Altın */
    --renk-ikincil: #1a1a1a;     /* Koyu siyah */
    --renk-acik: #f9f5f0;        /* Krem */
    --renk-metin: #333;
    --renk-metin-acik: #777;
    --yazi-baslik: 'Playfair Display', Georgia, serif;
    --yazi-metin: 'Lato', Arial, sans-serif;
    --gecis: all .3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--yazi-metin); color: var(--renk-metin); background: #fff; }
img { max-width: 100%; }
a { text-decoration: none; transition: var(--gecis); }

/* ================================================================
   HEADER / NAV
   ================================================================ */

.resto-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--gecis);
    padding: 0;
}

/* Beyaz menü */
.resto-header--beyaz {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.resto-header--beyaz .resto-nav-list a { color: #333; }
.resto-header--beyaz .resto-logo-text { color: #333; }
.resto-header--beyaz .resto-nav-toggle span { background: #333; }

/* Siyah menü */
.resto-header--siyah {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(8px);
}
.resto-header--siyah .resto-nav-list a { color: #fff; }
.resto-header--siyah .resto-logo-text { color: #fff; }
.resto-header--siyah .resto-nav-toggle span { background: #fff; }

/* Scroll'da beyaz menü koyulaşır */
.resto-header--beyaz.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.15); }
.resto-header--siyah.scrolled { background: rgba(0,0,0,.95); }

.resto-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 20px;
}
.resto-nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.resto-nav-right .resto-nav-list {
    display: flex;
    align-items: center;
}

.resto-logo img { height: 50px; }
.resto-logo-text {
    font-family: var(--yazi-baslik);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.resto-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.resto-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0; padding: 0;
}
.resto-nav-list a {
    padding: 6px 14px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: capitalize !important;
    border-bottom: none !important;
    text-decoration: none !important;
}
.resto-nav-list a:hover { color: var(--renk-birincil) !important; }
.resto-nav-list li a::after { display: none !important; }

.resto-rezervasyon-btn {
    background: var(--renk-birincil);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    transition: var(--gecis);
    text-decoration: none !important;
    border-bottom: none !important;
}
.resto-rezervasyon-btn:hover { background: #b8945a; color: #fff !important; text-decoration: none !important; }

.resto-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.resto-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    transition: var(--gecis);
}

/* ================================================================
   HERO SLIDER
   ================================================================ */

.resto-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }

/* Video Hero */
.resto-hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.resto-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}
.resto-hero-icerik {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.resto-hero-alt-baslik {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--renk-birincil);
    margin-bottom: 16px;
}
.resto-hero-baslik {
    font-family: var(--yazi-baslik);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
.resto-hero-aciklama {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.resto-hero-btn {
    display: inline-block;
    background: var(--renk-birincil);
    color: #fff;
    padding: 15px 36px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--gecis);
}
.resto-hero-btn:hover { background: #b8945a; color: #fff; transform: translateY(-2px); }

/* Klasik Slider */
.resto-slider { position: relative; height: 100vh; min-height: 600px; }
.resto-slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
}
.resto-slider-item.aktif { opacity: 1; }
.resto-slider-item img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.resto-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.resto-slider-dot {
    width: 10px; height: 10px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--gecis);
    border: none;
}
.resto-slider-dot.aktif { background: var(--renk-birincil); transform: scale(1.3); }

/* ================================================================
   BÖLÜMLER - Genel
   ================================================================ */

.resto-section { padding: 90px 0; }
.resto-section--gri { background: var(--renk-acik); }
.resto-section--koyu { background: var(--renk-ikincil); color: #fff; }

.resto-section-baslik { text-align: center; margin-bottom: 60px; }
.resto-section-baslik .alt-baslik {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--renk-birincil);
    margin-bottom: 12px;
}
.resto-section-baslik h2 {
    font-family: var(--yazi-baslik);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
}
.resto-section-baslik .cizgi {
    width: 50px; height: 2px;
    background: var(--renk-birincil);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ================================================================
   FOOTER
   ================================================================ */

.resto-footer { background: #111; color: #aaa; padding: 60px 0 0; }
.resto-footer-logo { max-height: 55px; margin-bottom: 16px; }
.resto-footer-site-adi { color: #fff; font-family: var(--yazi-baslik); font-size: 22px; margin-bottom: 12px; }
.resto-footer-aciklama { font-size: 13px; line-height: 1.7; }
.resto-footer-baslik { color: var(--renk-birincil); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.resto-footer-menu { list-style: none; padding: 0; margin: 0; }
.resto-footer-menu li { margin-bottom: 10px; }
.resto-footer-menu a { color: #aaa; font-size: 13px; }
.resto-footer-menu a:hover { color: var(--renk-birincil); }
.resto-footer-iletisim { list-style: none; padding: 0; margin: 0 0 20px; }
.resto-footer-iletisim li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; font-size: 13px; }
.resto-footer-iletisim .fa { color: var(--renk-birincil); margin-top: 2px; }
.resto-footer-iletisim a { color: #aaa; }
.resto-footer-iletisim a:hover { color: var(--renk-birincil); }
.resto-footer-sosyal { display: flex; gap: 8px; }
.resto-footer-sosyal a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: var(--gecis); }
.resto-footer-sosyal a:hover { background: var(--renk-birincil); }
.resto-footer-alt { background: rgba(0,0,0,.3); padding: 16px 0; margin-top: 40px; text-align: center; font-size: 12px; color: #666; }

/* ================================================================
   MOBİL
   ================================================================ */

@media (max-width: 768px) {
    .resto-nav-toggle { display: flex; z-index: 1001; }
    
    #resto-nav-toggle-menu {
        display: none;
        position: fixed;
        top: 90px; left: 0; right: 0;
        background: #111;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1000;
        margin-left: 0;
    }
    #resto-nav-toggle-menu.acik { display: flex; }
    
    .resto-nav-list { flex-direction: column; gap: 0; width: 100%; }
    .resto-nav-list a { color: #fff !important; display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
    
    .resto-rezervasyon-btn { 
        display: block !important; 
        margin-top: 16px; 
        width: 100%; 
        text-align: center;
    }
    .resto-section { padding: 60px 0; }
}
