/* ========== GENEL SIFIRLAMA ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Rubik', sans-serif;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* GÜNCELLENDİ: CUSTOM HEADER ARKA PLAN VE RENKLER */
.header-logo {
    width: 80px;
    height: 80px;
}

/* İstersen custom-header rengini biraz daha sıcak ve modern yapabiliriz */
.custom-header {
    color: #f3ede1;
    padding: 40px 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #ca974f;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: 32px;
    margin: 0;
    font-weight: bold;
    color: #f3ede1; /* Yazıyı arka plana uyumlu açtım */
}

.header-text p {
    margin: 8px 0 0;
    font-size: 18px;
    color: #f3ede1; /* Yazıyı arka plana uyumlu açtım */
}

/* ========== ANA İÇERİK ========== */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* ========== MENÜ KONTEYNERİ ========== */
.menu-container {
    width: 100%;
    max-width: 1400px;
    /* daha fazla öğe sığması için genişletildi */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ========== MENÜ GRID YAPISI ========== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* ========== MENÜ KARTLARI ========== */
.menu-card {
    background-color: #fff8f0;
    border: 1px solid #e0d6c6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card:hover {
    transform: translateY(-3px);
    background-color: #d3ad79;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* ========== RESPONSIVE TASARIM ========== */
@media (min-width: 600px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (min-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Çaylar sayfası için resimli menü kartları */
.menu-grid.tea-grid {
    gap: 2rem;
}

.menu-card img {
    width: 60%;
    height: 80px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
}

.card-content {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #4a2c18;
    background-color: #fff8f0;
    border: 1px solid #e0d6c6;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.price {
    color: #b36400;
    font-weight: 700;
}
