body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #fff;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}

#google_translate_element select {
    background-color: #fdfdfd;
    border: 1px solid #BFB257; /* Το χρυσό της "Welcome" */
    color: #5d4037;
    padding: 5px;
    border-radius: 4px;
    font-family: inherit;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

.main-logo {
    width: 100%;
    max-width: 500px; /* Εδώ ορίζεις πόσο μεγάλο θες το PNG σου */
    height: auto;
    display: block;
    margin: 20px auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin: 20px 0;
}

.social-icons img {
    height: 50px;
    width: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr; /* Στο κινητό μία στήλη */
    gap: 20px;
}

@media (min-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr; /* Στο tablet/pc δύο στήλες */
    }
}

.gallery {
    border: 1px solid #ccc;
    box-shadow: 4px 3px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Κόβει την εικόνα σωστά για να μην παραμορφώνεται */
    transition: transform 0.3s ease;
    loading: lazy; /* Εντολή στον browser να τις φορτώνει μόνο όταν φτάνει εκεί ο χρήστης */
}

.desc {
    padding: 15px;
    background: white;
    font-weight: bold;
    color: #333;
}

/* Watermark Background */
.watermark::before {
    content: "";
    background: url(images/kavuria.png) no-repeat center center fixed;
    background-size: contain; /* Για να μη παραμορφώνεται το logo πίσω */
    opacity: 0.08; /* Πολύ διακριτικό για να διαβάζεται το κείμενο */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}