* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    background-image: url('back-gray-chrome-blackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
}

/* HEADER SECTION */
.header {
    background: transparent;
    padding: 40px 24px 32px;
}

.header-content {
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.lang-switcher {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.lang-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.lang-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.lang-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
    box-shadow: 0 6px 35px rgba(255, 215, 0, 0.7);
    transform: scale(1.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 200px;
    height: auto;
}

/* MENU CONTAINER */
.container {
    max-width: 320px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.menu-section {
    margin-bottom: 48px;
}

/* SECTION TITLE - Based on Figma specs */
.section-title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.05em;
    color: #EFBF04;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* MENU ITEM */
.menu-item {
    margin-bottom: 24px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

/* ITEM NAME - Based on Figma specs */
.item-name {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    flex: 1;
}

/* ITEM PRICE */
.item-price {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-left: 16px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-bgn {
    font-size: 17px;
    line-height: 20px;
}

.price-eur {
    font-size: 14px;
    line-height: 16px;
    opacity: 0.85;
}

.price-value {
    color: #FFFFFF;
}

.price-currency {
    color: #EFBF04;
    font-weight: 100;
}

/* ITEM PORTION - Based on Figma specs */
.item-portion {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 4px;
}

/* ITEM DESCRIPTION - Based on Figma specs */
.item-description {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #EFBF04;
    max-width: 272px;
}

/* DESKTOP STYLES (768px - 1919px) */
@media (min-width: 768px) {
    body {
        background-image: url('back-gray-chrome-blackground_horizontal.png');
    }

    .header {
        padding: 56px 32px 48px;
    }

    .header-content {
        max-width: 480px;
        gap: 40px;
    }

    .logo-svg {
        width: 280px;
    }

    .lang-btn {
        width: 56px;
        height: 56px;
        font-size: 16px;
    }

    .container {
        max-width: 480px;
        padding: 0 32px 64px;
    }

    .menu-section {
        margin-bottom: 56px;
    }

    .section-title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 24px;
    }

    .menu-item {
        margin-bottom: 28px;
    }

    .item-name {
        font-size: 19px;
        line-height: 22px;
    }

    .price-bgn {
        font-size: 19px;
        line-height: 22px;
    }

    .price-eur {
        font-size: 15px;
        line-height: 18px;
    }

    .item-portion {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 6px;
    }

    .item-description {
        font-size: 15px;
        line-height: 18px;
        max-width: 400px;
    }
}

/* 4K TV STYLES (1920px+) - Multi-column layout optimized for 3840x2160 */
@media (min-width: 1920px) {
    body {
        background-image: url('back-gray-chrome-blackground_horizontal.png');
    }

    .header {
        padding-top: 64px;
        padding-right: 64px;
        padding-bottom: 270px;
        padding-left: 64px;
    }

    .header-content {
        max-width: 100%;
        gap: 24px;
        padding-left: 130px;
        align-items: flex-start;
    }

    /* Hide language switcher on 4K TV for cafe display */
    .lang-switcher {
        display: none;
    }

    .logo-container {
        justify-content: flex-start;
    }

    .logo-svg {
        width: 580px;
    }

    .container {
        max-width: 3600px;
        padding: 0 64px 32px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: column;
        gap: 80px;
    }

    .menu-section {
        margin-bottom: 0;
        page-break-inside: avoid;
    }

    .section-title {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 24px;
    }

    .menu-item {
        margin-bottom: 18px;
    }

    .item-header {
        margin-bottom: 3px;
    }

    .item-name {
        font-size: 26px;
        line-height: 32px;
    }

    .item-price {
        margin-left: 24px;
        gap: 3px;
    }

    .price-bgn {
        font-size: 26px;
        line-height: 32px;
    }

    .price-eur {
        font-size: 22px;
        line-height: 26px;
    }

    .item-portion {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 3px;
    }

    .item-description {
        font-size: 22px;
        line-height: 26px;
        max-width: 100%;
    }
}