/* Temel Ayarlar */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Oswald', sans-serif; }
body { background-color: #121212; color: #e0e0e0; overflow-x: hidden; }

/* AKAN YAZI */
.ticker-wrapper {
    width: 100%;
    background: #f1c40f;
    color: #000;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-bottom: 2px solid #d35400;
}
.ticker { display: inline-block; padding-left: 100%; animation: ticker-animation 25s linear infinite; }
.ticker-item { display: inline-block; padding-right: 50px; }
@keyframes ticker-animation { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Navbar ve Logo Yanı Yazı */
.navbar { background: #1a1a1a; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }

.logo-link { display: flex; align-items: center; text-decoration: none; gap: 15px; }
.nav-logo { height: 65px; border-radius: 50%; border: 2px solid #f1c40f; }

.logo-text { display: flex; flex-direction: column; }
.brand-name { color: #fff; font-size: 1.4rem; font-weight: 700; line-height: 1.2; }
.since-text { color: #f1c40f; font-size: 0.85rem; font-weight: 300; font-style: italic; letter-spacing: 0.5px; }

.nav-links a { text-decoration: none; color: #fff; margin-left: 20px; font-weight: 500; font-size: 1rem; }
.nav-links a:hover { color: #f1c40f; }

/* Hero */
.hero { height: 450px; background: url('arkaplan.jpg') no-repeat center center/cover; }
.hero-overlay { background: rgba(0,0,0,0.7); width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero h1 { font-size: 3rem; line-height: 1.2; }
.hero h1 span { color: #f1c40f; }

/* Sipariş & Ödeme */
.order-section { padding: 50px 20px; text-align: center; }
.platform-grid { display: flex; justify-content: center; gap: 30px; margin: 30px 0; flex-wrap: wrap; }
.p-card { font-weight: 700; font-size: 1.8rem; text-decoration: none; transition: 0.3s; }
.p-card:hover { transform: translateY(-3px); }
.yemeksepeti { color: #ea004b; }
.trendyol { color: #fff; } .trendyol span { color: #ff6e00; }

.payment-icons { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
.pay-tag { padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; color: #fff; text-transform: uppercase; }
.pluxee { background: #000057; } .edenred { background: #ff0000; } .multinet { background: #22b14c; }

/* Orta Logo */
.center-logo-area { padding: 60px 20px; text-align: center; background: #1a1a1a; }
.large-menu-logo { width: 220px; border-radius: 50%; border: 4px solid #f1c40f; transition: 0.3s; opacity: 0.9; cursor: pointer; }
.large-menu-logo:hover { opacity: 1; transform: scale(1.05); }

/* Harita & Footer */
.map-section { padding: 60px 20px; max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 30px; color: #f1c40f; }
.map-container { border-radius: 15px; overflow: hidden; border: 2px solid #333; }

.btn { padding: 12px 25px; border-radius: 4px; text-decoration: none; margin: 5px; display: inline-block; color: white; font-weight: 600; text-transform: uppercase; }
.btn-call { background: #d35400; } .btn-wp { background: #27ae60; }

footer { background: #1a1a1a; padding: 40px; text-align: center; border-top: 5px solid #d35400; }
.footer-col h4 { color: #f1c40f; margin-bottom: 10px; }
.won strong { color: #d35400; }