* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f1e8;
    padding: 20px;
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f5f1e8;
    border: 4px solid #8b4513;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.instagram {
    font-size: 14px;
    color: #8b4513;
    margin-bottom: 20px;
    text-align: left;
}

.instagram::before {
    content: "📷 ";
}

.logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.menu-subtitle {
    font-size: 18px;
    color: #8b4513;
    letter-spacing: 4px;
    font-weight: normal;
}

.menu-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* Gerekirse satır altına geçebilir */
}

.column {
    flex: 1;
    min-width: 300px; /* Çok dar ekranlarda bile 2 sütun kalabilir */
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #8b4513;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: "🍰"; /* Varsayılan ikon */
    font-size: 20px;
}

/* Kategorilere özel ikonlar */
.pasta-title::after {
    content: "🍰"; /* PASTA ÇEŞİTLERİ */
}

.cold-espresso-title::after {
    content: "🧊☕"; /* SOĞUK ESPRESSO BAZLI */
}

.special-bar-title::after {
    content: "✨"; /* SPECIAL BAR */
}

.cold-drinks-title::after {
    content: "🥤"; /* SOĞUK İÇECEKLER */
}

.espresso-title::after {
    content: "☕"; /* ESPRESSO BAZLI İÇECEKLER */
}

.coffee-brew-title::after {
    content: "☕"; /* DEMLEME KAHVELER */
}

.hot-drinks-title::after {
    content: "🔥☕"; /* SICAK İÇECEKLER */
}

.icecream-title::after {
    content: "🍦"; /* DONDURMA */
}

.cocktail-title::after {
    content: "🍹"; /* KOKTEYLLER */
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.3;
}

.item-name {
    font-weight: bold;
    color: #8b4513;
    font-size: 14px;
}

.item-description {
    font-size: 11px;
    color: #8b4513;
    margin-top: 2px;
    opacity: 0.8;
    line-height: 1.2;
}

.item-price {
    font-weight: bold;
    color: #8b4513;
    font-size: 14px;
    margin-left: 10px;
    white-space: nowrap;
}

.item-price::after {
    content: "₺";
}

.extras {
    background-color: transparent;
    color: #8b4513;
    padding: 10px 0 0;
    margin-top: 20px;
    text-align: left;
}

.extras h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 5px;
    display: inline-block;
}

.extras-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    font-size: 13px;
    border-bottom: 1px dashed #8b4513;
    padding: 4px 0;
}

.extra-name {
    font-weight: normal;
    text-align: left;
}

.extra-price {
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .menu-container {
        padding: 10px;
        border-width: 3px;
    }

    .menu-content {
        gap: 15px; 
    }

    .section-title {
        font-size: 16px;
    }

    .item-name {
        font-size: 13px;
    }

    .item-description {
        font-size: 10px;
    }

    .item-price {
        font-size: 13px;
    }

    .logo-img {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        gap: 10px;
    }

    .column {
        min-width: 200px; 
    }

    .section-title {
        font-size: 15px;
    }

    .item-name {
        font-size: 12px;
    }

    .item-description {
        font-size: 9px;
    }

    .item-price {
        font-size: 12px;
    }

    .logo-img {
        width: 70px;
    }
}
