body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(151, 220, 245);
    margin: 0;
    padding: 0;
    color: #ECF0F1;
}

.logo {
    background-color: rgb(151, 220, 245);
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo .home {
    font-size: 22px;
    font-weight: bold;
    color: rgb(151, 220, 245);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 5px;
    padding-left: 29px;
}

.logo .home img {
    width: 190px;
    height: auto;
    margin-right: 12px;
}

.logo a:hover {
    background-color: #e7e7e7;
}

nav {
    background-color: #e7e7e7;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row;   /* <-- οριζόντιο για desktop */
    flex-wrap: wrap;       /* <-- αν δεν χωράνε πάνε σε 2η σειρά */
}

nav a {
    color: black;
    background-color: rgb(151, 220, 245);
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px;
    text-decoration: none;
    margin: 0 15px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

nav img {
    width: auto;
    height: 15px;
}

nav a.lang img {
    width: 24px;
    height: auto;
}

nav a:hover {
    background-color: #e7e7e7;
}

.container {
    background-image: url('/zucchero_menu/images/background/GridArt_20250522_195346089_white.jpg');
    background-size: contain;
    background-position: center;
    background-attachment: scroll;
    max-width: 100%;
    box-sizing: border-box;
    margin: 50px auto;
    background-color: #e7e7e7;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.container img {
    width: 55%;
    height: auto;
    margin-bottom: 20px;
    border: 2px solid rgb(151, 220, 245);
    border-radius: 2cm;
}

.container img.no-style {
    all: unset;
}

h1 {
    text-align: center;
    color: black;
    font-size: 36px;
}

h2 {
    color: black;
    border-bottom: 2px solid rgb(151, 220, 245);
    padding-bottom: 5px;
    text-align: left;
    font-size: 24px;
}

h3 {
    color: black;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}

p {
    font-size: 18px;
    color: black;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    box-sizing: border-box;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.price-table th {
    background-color: rgb(151, 220, 245);
    color: #000;
    padding: 14px;
    font-size: 18px;
    text-align: center;
}

.price-table td {
    padding: 12px;
    font-size: 16px;
    color: #000;
    text-align: center;
    border-top: 1px solid #ccc;
}

.price-table td a {
    font-size: 120%;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table th,
.extra-table th {
    padding: 14px;
    background-color: rgba(151, 220, 245, 0.95);
    font-size: 18px;
    color: #000;
    border-bottom: 2px solid white;
}

.price-table td,
.extra-table td {
    padding: 12px 20px;
    font-size: 16px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.92);
    color: #333;
}

.info-text {
    margin-top: 20px;
    font-size: 16px;
    color: black;
    text-align: center;
}

.info-text a {
    color: #0077cc;
    text-decoration: underline;
}

.tablewrapper {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: rgb(255, 255, 255, 0.75);
    color: black;
    text-align: center;
    font-size: 0.9em;
    margin: 30px auto 10px;
    padding: 10px 15px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ----- Responsive Design ----- */
@media (max-width: 768px) {
    .logo .home img {
        width: 120px;
    }

    nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        justify-items: center;
        background-color: #e7e7e7;
    }

    nav a {
        justify-content: center;
        font-size: 16px;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .container {
        margin: 0 auto;
        padding: 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container img {
        width: 100%;
    }

    .price-table {
        font-size: 14px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .price-table,
    .extra-table {
        font-size: 14px;
        width: 100%;
    }

    .price-table th,
    .price-table td,
    .extra-table th,
    .extra-table td {
        padding: 10px;
        font-size: 14px;
    }

    .info-text {
        font-size: 15px;
        padding: 5px;
    }
}
