body {
    margin: 0;
    font-family: Arial, sans-serif;
}
header {
    background-color: #333;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 90px;
}

nav ul li img {
    height: 80px;
    margin: 5px auto;
}

nav ul li a {
    font-size: larger;
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-bottom: #333 2px solid;
}

nav ul li a:hover {
    border-bottom: gold 2px solid;
    color: gold;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}


@media screen and (max-width: 700px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        height: auto;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background-color: #333;
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    nav ul li img {
        display: none;
    }
}


.mapouter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto; /* Full viewport height */
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 600px;
    height: 400px;
}

.gmap_iframe {
    width: 600px !important;
    height: 400px !important;
}

footer {
    background-color: #333;
    color: white;
}

#cookie-banner {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1ee;
    padding: 10px;
    text-align: center;
}

#more-options {
    cursor: pointer;
    color: blue;
}

#deny-button {
    display: none;
}

.dish-container {
    display: flex;
    height: 120px; /* Adjust as needed */
    border-radius: 15px 15px 15px 15px;
    margin: 5px;
}

.dish-container:hover{
    cursor: pointer;
}

.dish-photo {
    z-index: -1;
    border-radius: 15px 0px 0px 15px;
    width: 160px;
    height: 120px;
    position: relative;
}

.dish-info {
    padding: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    box-shadow: -20px 0 3em rgba(255, 255, 255, 0.6);
    border: 1px black;
    border-style: solid solid solid none;
    border-radius: 0px 15px 15px 0px;
}

.dish-name {
    font-weight: bold;
    text-decoration: underline;
    margin: 3px;
    width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dish-description {
    height: 63px;
    width: 230px;
    margin: 5px;
    display: -webkit-box;
    max-width: 23 0px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 150px;
} 

.price{
    display: inline;
    margin: 0 0 0 10px;
    font-weight: bold;
}

#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;

    display: grid;
    grid-template-columns: 450px 300px;
    grid-template-areas: 'photo text';
}

#popup-photo {
    /* width: 600px;
    height: 450px; */
    max-width: 450px;
    height: auto;
    grid-area: 'photo';
}

#close-popup {
    width: 80px;
    height: 40px;
}

#popup-text {
    grid-area: text;
    padding: 10px;
}

.call{
    text-decoration: underline;
    color: #222;
    font-weight: bold;
}

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row.name-row {
    display: flex;
    gap: 20px;
}

.form-row.name-row .name-input {
    flex: 1;
}

.form-row.file-send-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.form-row.file-send-row .file-input {
    flex: 1;
    margin-right: 20px;
}

.custom-file-input {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-file-input input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.custom-file-input label {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

.send-button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #0056b3;
}

.error-message {
    color: var(--danger-color);
    font-size: 14px;
    margin-top: 5px;
}

@media screen and (max-width: 480px) {
    .form-row.name-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-row.file-send-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-row.file-send-row .file-input {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
h2 {
    text-align: center
}
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #0056b3;
}

.phone-number {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    grid-column: 2;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
        grid-column: 1;
    }
}

.p-center {
    text-align: center;
}