:root {
    --bg: #faf8f5;
    --antrasit: #2d3436;
    --accent: #d4a373; /* Turuncu Çizgi Rengi */
    --text: #3d3d3d;
    --white: #ffffff;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { margin: 0; font-family: 'Lexend', sans-serif; background-color: var(--bg); color: var(--text); overflow-x: hidden; }

/* --- LOADER, BÜYÜTEÇ VE KAYAN ÇİZGİ --- */
#loader {
    position: fixed;
    inset: 0;
    background: var(--antrasit);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    display: flex;
    gap: 8px;
    color: var(--bg);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: 4px;
    margin: 0;
}

.logo-text span {
    opacity: 0;
    display: inline-block;
    transform: scale(0.8);
    animation: fadeInMagnify 1.2s ease-out forwards;
}

@keyframes fadeInMagnify {
    0% { opacity: 0; transform: scale(0.8); filter: blur(5px); }
    50% { opacity: 1; transform: scale(1.3); color: var(--accent); filter: blur(0); }
    100% { opacity: 1; transform: scale(1); color: var(--bg); }
}

/* Kayan Alt Çizgi Efekti */
.loader-line {
    width: 0;
    height: 2px;
    background: var(--accent);
    margin-top: 10px;
    align-self: flex-start; /* Başlangıçtan başlasın */
    animation: drawLine 1.5s ease-in-out forwards;
    animation-delay: 1.8s; /* Harf büyüteç animasyonu biterken başlar */
}

@keyframes drawLine {
    0% { width: 0; }
    100% { width: 100%; }
}

/* --- ANA İÇERİK YAPISI --- */
.hero-banner { height: 30vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/banner-lite.webp') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.brand-info h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 5vw, 2.5rem); margin: 0; }

.action-area { display: flex; justify-content: center; margin: -22px 0 20px; position: relative; z-index: 10; }
.wifi-btn { background: var(--antrasit); color: var(--bg); border: none; padding: 12px 28px; border-radius: 50px; font-weight: 500; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

.sticky-nav {
    position: sticky;
    top: 0;
    background: var(--bg);
    padding: 15px 10px;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    z-index: 90;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sticky-nav::-webkit-scrollbar { display: none; }
.cat-btn { background: var(--white); border: 1px solid #ddd; padding: 10px 20px; border-radius: 25px; white-space: nowrap; font-size: 0.9rem; cursor: pointer; }
.cat-btn.active { background: var(--antrasit); color: white; border-color: var(--antrasit); }

.container { padding: 10px 20px 80px; max-width: 650px; margin: 0 auto; }
.category-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 40px 0 20px; color: var(--antrasit); scroll-margin-top: 100px; }
.menu-card { background: var(--white); padding: 22px; border-radius: 16px; margin-bottom: 15px; border-left: 5px solid var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.card-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.card-top h3 { margin: 0; font-size: 1.1rem; font-weight: 600; }
.price { color: var(--accent); font-weight: 600; }
.desc { font-size: 0.9rem; color: #666; margin: 0; line-height: 1.5; }

/* Modal */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 1000; }
.modal-content { background: var(--bg); width: 90%; max-width: 380px; margin: 25vh auto; padding: 35px; border-radius: 24px; text-align: center; position: relative; }
.close-btn { position: absolute; right: 20px; top: 10px; font-size: 32px; cursor: pointer; }
.wifi-box { background: #f3f0ec; padding: 20px; border-radius: 15px; margin: 20px 0; text-align: left; }
.copy-btn { background: var(--antrasit); color: white; border: none; padding: 14px; width: 100%; border-radius: 12px; font-weight: 600; cursor: pointer; }