/* Reset και βασικές ρυθμίσεις */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100vh; /* Σιγουρεύει ότι το ύψος καλύπτει όλο το viewport */
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('Light & Pixel--8198.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Αν θέλεις το background να μένει σταθερό όταν scrollάρεις, άφησέ το. 
       Αλλιώς αφαίρεσέ το */
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #ffffffcc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Αφαίρεσα το margin-top που δημιουργούσε κενό */
    /* margin-top: 20px; */
}

header h1 a {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

header h1 a:hover {
    color: #357ABD;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center; /* για ευθυγράμμιση */
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #4a90e2;
}

/* Contact Container */
.contact-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffffcc;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-container h1 {
    font-size: 2.8rem;
    color: #4a90e2;
    margin-bottom: 25px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

/* Group with phone, email, instagram */
.contact-info-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info {
    background: #f0f4ff;
    border-left: 6px solid #4a90e2;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: inset 0 0 8px #c3d0ff;
}

.contact-info h3,
.contact-info h4,
.contact-info h5 {
    color: #357ABD;
    margin-bottom: 8px;
}

.contact-info a {
    color: #2a65b9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #1a3f7d;
}

.contact-info p {
    font-size: 1.1rem;
}

/* Instagram styles */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2a65b9;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #1a3f7d;
}

.social-icon {
    font-size: 20px;
}

/* Map styling */
.map-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    margin-top: 10px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
}

/* Navigation list small tweaks */
nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

#langToggle {
    background: none;
    border: none;
    cursor: pointer;
}

#langFlag {
    width: 24px;
    vertical-align: middle;
}

/* Προαιρετικά: Responsive για μικρές οθόνες */
@media (max-width: 600px) {
    .contact-info-group {
        flex: 1 1 100%;
    }

    .contact-container {
        padding: 20px;
        margin: 20px 10px;
    }

    header h1 a {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 15px;
    }

    /* Προσθήκη margin-top μόνο σε κινητά */
    header {
        margin-top: 50px;
    }
}

