@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Złoty/miodowy kolor ze zrzutu ekranu */
    --gastro-gold: #d69e2e;
    --gastro-text: #555;
    --gastro-border: #f0f0f0;
}

.gastro-menu-container {
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    color: var(--gastro-text);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* =========================================
   Górne menu (Przyklejone do góry ekranu)
   ========================================= */
.gastro-menu-filters {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gastro-border);
    padding: 15px 0 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
    
    /* Przyklejanie nawigacji do góry ekranu podczas przewijania */
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
}

.gastro-menu-filters::-webkit-scrollbar {
    display: none;
}

.gastro-filter-btn {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem; /* Powiększone z 1rem */
    color: #999;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.gastro-filter-btn:hover {
    color: var(--gastro-gold);
}

.gastro-filter-btn.active {
    color: var(--gastro-gold);
}

.gastro-filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -12px; 
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gastro-gold);
    border-radius: 2px;
}

/* =========================================
   Tytuły kategorii (Zupy, Dania Główne)
   ========================================= */
.gastro-category-section {
    scroll-margin-top: 80px; 
}

.gastro-category-title {
    text-align: center;
    font-size: 2rem; /* Powiększone z 1.6rem */
    font-weight: 700;
    color: var(--gastro-gold);
    margin: 60px 0 35px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gastro-category-title::before,
.gastro-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--gastro-gold);
    margin: 0 20px;
    max-width: 150px;
}

/* =========================================
   Układ Dań (Grid)
   ========================================= */
.gastro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 40px;
}

@media (min-width: 768px) {
    .gastro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.gastro-dish-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gastro-dish-image-wrapper {
    flex-shrink: 0;
}

.gastro-dish-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gastro-dish-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gastro-dish-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
}

.gastro-dish-title {
    margin: 0;
    font-size: 1.3rem; /* Powiększone z 1.1rem */
    font-weight: 600;
    color: #222;
}

.gastro-dish-price {
    font-size: 1.3rem; /* Powiększone z 1.1rem */
    font-weight: 600;
    color: var(--gastro-gold);
    white-space: nowrap;
}

hr.gastro-dish-divider {
    border: none;
    height: 1px;
    background-color: var(--gastro-border);
    margin: 8px 0;
    width: 100%;
}

.gastro-dish-desc {
    font-size: 1.05rem; /* Powiększone z 0.9rem */
    color: #888;
    line-height: 1.5;
}

.gastro-dish-desc p {
    margin: 0;
}

/* =========================================
   Teksty serwisowe
   ========================================= */
.gastro-info-ogolna,
.gastro-info-serwis {
    text-align: center;
    color: var(--gastro-gold);
    font-size: 1.15rem; /* Powiększone z 1rem */
    margin-bottom: 20px;
}

.gastro-info-stopka {
    text-align: left;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--gastro-border);
    color: #999;
    font-size: 1rem; /* Powiększone z 0.85rem */
    line-height: 1.6;
}