/* General Style Definitions */
:root {
    --primary-orange: #FFA726; /* Daha canlı bir turuncu */
    --primary-blue: #29B6F6;   /* Daha canlı bir mavi */
    --dark-bg: #1a1a1a;        /* Koyu arka plan (header için) */
    --light-bg: #fdfaf6;       /* Sayfa geneli için çok açık bej */
    --card-bg: #ffffff;        /* Kartlar için beyaz */
    --text-dark: #2c3e50;      /* Koyu metin (başlıklar vb.) */
    --text-light: #555;        /* Açık metin (açıklamalar vb.) */
    --accent-green: #2ecc71;   /* WhatsApp için yeşil */
    --accent-red: #e74c3c;     /* Telefon için kırmızımsı */
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --border-radius: 12px; /* Daha yuvarlak köşeler */
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

header {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 6px solid var(--primary-orange);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header .logo {
    max-width: 140px;
    margin-bottom: 0px;
}

header h1 {
    margin: 0 0 5px 0;
    font-size: 2.4em;
    color: #fff;
    font-weight: 700;
}
header h1 span { /* "Marek" kelimesini farklı renkte yapmak için */
    color: var(--primary-orange);
}

header p {
    margin: 0 0 20px 0;
    font-size: 1.1em;
    color: #bdc3c7; /* Daha açık gri */
    font-weight: 300;
}

/* Language Selector Styles */
.language-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.lang-btn {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: #fff;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover, .lang-btn.active {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Contact Box Styles - Modern Buttons */
.contact-info-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.contact-info-header .contact-button {
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.contact-info-header .contact-button i {
    margin-right: 8px;
    font-size: 1.1em;
}
.contact-info-header .contact-button span { /* Mobil için metni gizlemek için */
    display: inline;
}

.contact-info-header .phone { background-color: var(--accent-red); }
.contact-info-header .phone:hover { background-color: #c0392b; transform: translateY(-2px); box-shadow: 0 5px 12px rgba(0,0,0,0.2);}

.contact-info-header .whatsapp { background-color: var(--accent-green); }
.contact-info-header .whatsapp:hover { background-color: #27ae60; transform: translateY(-2px); box-shadow: 0 5px 12px rgba(0,0,0,0.2);}

.contact-info-header .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.contact-info-header .instagram:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 5px 12px rgba(0,0,0,0.2);}


main {
    padding: 30px 15px;
    max-width: 900px; /* Daha geniş içerik alanı */
    margin: 30px auto;
}

.menu-category {
    margin-bottom: 40px;
    background-color: transparent; /* Arka planı kaldırdık, kartlar kendi arka planına sahip olacak */
}

.menu-category h2 {
    color: var(--text-dark);
    font-size: 2em; /* Kategori başlıkları daha büyük */
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-blue);
    display: inline-block; /* Çizginin sadece metin kadar olmasını sağlar */
}
.menu-category h2 i {
    margin-right: 10px;
    color: var(--primary-orange); /* Kategori ikon rengi */
}

/* Modern Menü Kartları */
.menu-item-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid transparent; /* Hover için kenarlık */
}

.menu-item-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left-color: var(--primary-orange);
}

.menu-item-card div { /* İsim ve açıklama bölümü */
    flex-grow: 1;
    margin-right: 15px;
}

.menu-item-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.35em; /* Ürün adı daha belirgin */
    color: var(--text-dark);
    font-weight: 600;
}

.menu-item-card .description {
    font-size: 0.9em;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 400;
}

.menu-item-card .price {
    font-size: 1.4em; /* Fiyat daha büyük */
    font-weight: 700;
    color: var(--primary-orange);
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}
.menu-item-card .price .unit-price {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-light);
    display: block; /* Fiyatın altına gelsin */
}


.menu-special-note {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: var(--shadow);
}
.menu-special-note p strong {
    font-weight: 700;
}

footer {
    background-color: var(--dark-bg);
    color: #bdc3c7;
    text-align: center;
    padding: 30px 15px;
    margin-top: 40px;
    font-weight: 400;
}

footer p {
    margin: 8px 0 0;
    font-size: 0.95em;
}
footer p a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}
footer p a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
    .contact-info-header {
        gap: 8px;
    }
    .contact-info-header .contact-button {
        font-size: 0.85em;
        padding: 8px 12px;
    }
    /* On mobile devices, keep icons but hide text if desired */
    .language-selector {
        gap: 5px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8em;
    }

    .menu-category h2 {
        font-size: 1.7em;
    }
    .menu-item-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .menu-item-card div {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .menu-item-card .price {
        text-align: left;
        font-size: 1.3em;
    }
    .menu-item-card:hover {
        transform: translateY(-3px) scale(1.01); /* Mobil için hover efekti daha az */
    }
}

@media (max-width: 480px) {
    body {
        line-height: 1.6;
    }
    header {
        padding: 20px 15px;
    }
    header .logo {
        max-width: 70px;
    }
    header h1 {
        font-size: 1.7em;
    }
    header p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .contact-info-header .contact-button {
        font-size: 0.8em;
        padding: 8px 10px; /* Butonlar küçültüldü */
    }
    .contact-info-header .contact-button span { /* Çok küçük ekranlarda yazıları gizle */
        display: none;
    }
    .contact-info-header .contact-button i {
        margin-right: 0; /* Yazı gizlenince ikonu ortala */
    }


    main {
        padding: 20px 10px;
    }
    .menu-category h2 {
        font-size: 1.5em;
    }
    .menu-item-card h3 {
        font-size: 1.2em;
    }
    .menu-item-card .description {
        font-size: 0.85em;
    }
    .menu-item-card .price {
        font-size: 1.2em;
    }
}