body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background-color: #932525;
    color: white;
    padding: 0;
    text-align: center;
    width: 100%; /* Ensure body takes full width */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

header {
    background-color: #6c1a1a;
    padding: 1rem 2rem;
    text-align: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    color: #ffcc00;
    text-transform: uppercase;
}

.back-button {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    text-decoration: none;
    color: #800000;
    background-color: #ffcc00;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #fff000;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-family: 'Brush Script MT', cursive, 'sans-serif';
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    line-height: 1;
    display: inline-block;
}

.section {
    padding: 15px 0;
    position: relative;
    margin-bottom: 2px;
    background-color: #932525;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.section:nth-child(odd) {
    background-color: #832020;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: left;
}

.section-desc {
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: left;
    padding: 0;
    max-width: 60%;
}

.price {
    position: absolute;
    right: 70px;
    top: 20px;
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffdd00;
    font-family: 'Brush Script MT', cursive, 'sans-serif';
}

.price span {
    font-size: 2rem;
}

.menu-items {
    list-style-type: none;
    padding: 0;
    margin: 15px auto;
    max-width: 700px;
    text-align: left;
}

.menu-items li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    padding: 0 10px;
}

.item-number {
    margin-right: 10px;
    min-width: 25px;
}

.item-content {
    flex: 1;
}

.item-name {
    color: #ffcc00;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.item-desc {
    font-size: 0.9rem;
}

.beverage-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 15px 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #832020;
}

.beverage-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.beverage-item {
    flex: 1 0 30%;
    text-align: center;
    padding: 10px;
    min-width: 200px;
}

.beverage-name {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.7rem;
    color: white;
    margin-bottom: 5px;
}

.beverage-desc {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.beverage-price {
    font-size: 3rem;
    font-weight: bold;
    color: #ffdd00;
    font-family: 'Brush Script MT', cursive;
}

.beverage-price span {
    font-size: 1.8rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .section-content {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 2.5rem;
    }

    .back-button {
        top: 1.2rem;
        left: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .logo {
        font-size: 2rem;
    }

    .price {
        font-size: 2.8rem;
        font-weight: bold;
        right: 15px;
        top: 15px;
    }

    .price span {
        font-size: 1.5rem;
    }
    
    .section-desc {
        max-width: 60%;
    }
}

@media (max-width: 600px) {
    .section-desc {
        max-width: 50%;
    }
    
    .price {
        font-weight: bold;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    body, html {
        max-width: 100%;
        overflow-x: hidden;
    }

    .section-content {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    header h1 {
        font-size: 2rem;
    }

    .back-button {
        top: 1rem;
        left: 0.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.8rem;
        max-width: 55%;
    }

    .price {
        font-weight: bold;
        font-size: 2.2rem;
        right: 10px;
        top: 10px;
    }

    .price span {
        font-size: 1.3rem;
    }

    .item-name {
        font-size: 1rem;
    }

    .item-desc {
        font-size: 0.8rem;
    }

    .container {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .beverage-container {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .beverage-item {
        flex: 1 0 100%;
        padding: 10px;
        box-sizing: border-box;
    }
}

/* Ensure all elements use border-box sizing */
* {
    box-sizing: border-box;
}