



html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: rgba(248, 245, 248, 0.7);
  font-family: 'Lato', sans-serif;
  width: 100%;
  box-sizing: border-box;
} 

.home-container {                      
  max-width: 1550px;             
  padding: 10px 20px;          
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}


.header {
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin-top: 0.15px;
}

main {
  flex: 1;
}

.main-nav {
  margin-left: auto;
  margin-right: 0px;
}

.logo img {
  
  width: 130px;
  max-height: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
}

.nav-menu a:hover {
  color: #a18c6e; 
}
.nav-menu a.active {
  color: #ddd6cb;
  font-weight: bold;

}
/* --- Language Switcher Styles --- */

/* 1. Στυλ για τον container του διακόπτη γλώσσας */
.language-switcher {
    /* Επειδή το .main-nav έχει margin-left: auto, το language-switcher θα ακολουθήσει */
    /* Τοποθετείται δίπλα στο μενού */
    margin-left: 30px; /* Δώστε απόσταση από το μενού */
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap; /* Αποτρέπει το σπάσιμο γραμμής */
}

/* 2. Στυλ για τους συνδέσμους γλώσσας */
.lang-link {
    text-decoration: none;
    color: #333333; /* Ίδιο χρώμα με το μενού */
    padding: 0 2px; /* Μικρό padding για να φαίνονται ξεχωριστά */
    transition: color 0.2s;
}

/* 3. Στυλ για την ενεργή γλώσσα (τρέχουσα σελίδα) */
.lang-link.active {
    color: #ddd6cb; /* Ίδιο χρώμα με το active του μενού */
    font-weight: bold;
    cursor: default; /* Δείχνει ότι δεν είναι κλικαριστό */
    pointer-events: none; /* Απενεργοποίηση κλικ */
}

/* 4. Στυλ για την αιώρηση (hover) */
.lang-link:not(.active):hover {
    color: #a18c6e; /* Ίδιο χρώμα hover με το μενού */
}

.image-wrapper {
  position: relative;
  float: right;
}

.image1 {
  display: block;
  width: 1200px;
  height: auto;
  max-width: 100%;
}

.image2 {
  position: absolute;
  top: 350px;         /* πόσο ψηλά ή χαμηλά θα εμφανιστεί */
  right: 1000px;     /* πόσο να προεξέχει από δεξιά */
  width: 600px;      /* μέγεθος της 2ης εικόνας */
  height: auto;
  z-index: 2;
}

.contact-section {
  display: flex;
  flex-direction: column; 
  margin-top: 250px !important;
  gap: 80px;
  /* Κεντράρισμα και Όριο Πλάτους */
  margin-left: 20px; /* <-- ΠΡΟΣΘΗΚΗ: Κεντράρισμα */
  margin-right: auto; /* <-- ΠΡΟΣΘΗΚΗ: Κεντράρισμα */
  padding: 0;
}

.contact-heading {
  text-align: left; /* <-- ΣΩΣΤΟ: Αριστερή ευθυγράμμιση */
  margin-bottom: 0;
  width: 100%; /* <-- ΠΡΟΣΘΗΚΗ: Για να πιάνει όλο το πλάτος */
    min-width: 300px;
    height: 100%;
	margin-top: -60px;
}

.contact-heading h1 {
  font-size: 2em;
  font-weight: 400;
  color: #444;
  margin: 0;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

.contact-content {
  display: flex; /* Εικόνα και φόρμα δίπλα-δίπλα */
  flex-direction: row; 
  justify-content: flex-start; /* Χωρίζει την εικόνα από τη φόρμα */
  align-items: center; /* Ευθυγράμμιση στην κορυφή */
 width: 100%;
  
  margin-top: 165px; /* Ακυρώνουμε το margin-top: -100px */

}

/* Container Εικόνας */
.contact-image {
  flex-shrink: 0; /* Δεν συρρικνώνεται */
  flex-basis: 520px; /* Δίνει συγκεκριμένο πλάτος στην εικόνα (όσο ήταν πριν) */
  margin-right: 40px;
  margin-bottom: 0;
  margin-top: 25px;
  
}

.contact-image img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    left: -20%;
    top: -8%;
}


/* Container Φόρμας */
.contact-form {
  flex-grow: 1; /* Η φόρμα καταλαμβάνει τον υπόλοιπο χώρο */
  flex-shrink: 0.7;
  max-width: 700px; 
  width: 90%;
  margin: 0; /* Ακυρώνουμε όλα τα margins που προκαλούσαν το πρόβλημα */
  font-family: 'Playfair Display', serif;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 500;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);         /* απαλό περίγραμμα */
  border-radius: 4px;
  background-color: rgba(248, 245, 248, 0.7);   /* ίδιο με το φόντο της σελίδας */
  color: #333;                                  /* σκούρο κείμενο */
  width: 100%; /* <-- ΒΕΒΑΙΩΘΕΙΤΕ ΟΤΙ ΕΧΕΤΕ ΑΥΤΟ */
  box-sizing: border-box;
}

/* Όταν πατάς μέσα τους: τίποτα δεν αλλάζει */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;              /* δεν εμφανίζεται μπλε περίγραμμα */
  border: 1px solid rgba(0, 0, 0, 0.1);  /* ίδιο border */
  background-color: rgba(248, 245, 248, 0.7);   /* ίδιο background */
  color: #333;                 /* ίδιο χρώμα κειμένου */
  box-shadow: none;           /* χωρίς shadow */
}
.contact-form button {
  padding: 10px 16px;
  background-color: #777;   /* Αρχικό χρώμα */
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  align-self: flex-end;
  margin-top: 10px;
  margin-right: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form button:hover,
.contact-form button:active {
  background-color: #ddd6cb;  /* Ανοιχτό μπεζ όπως στο μενού */
  color: #333;                /* Σκούρο γκρι για καλή αντίθεση */
}
.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
  padding: 80px 10%;
}
.about-greeting {
  font-family: 'DM Serif Display', serif;
  font-weight: 200; /* πιο αχνό, λιγότερο έντονο */
  font-size: 1.8rem;
  margin-bottom: -20px;
  color: #444;
}
.about-text-box p {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9; /* μεγαλύτερο κενό ανάμεσα στις γραμμές */
  color: #333;
}

/* Κουτιά κειμένου */
.about-text-box {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 25px;
}
.about-text-box.first-box p + p {
  margin-top: -8px; /* λιγότερο κενό */
}

.about-text-box.center {
  margin-top: 45px;
}
.about-text-box.center p + p {
    margin-top: -6px; /* ή όσο θέλεις */
}

/* Φωτογραφία */
.about-photo {
  flex: 1;
  text-align: right;
  min-width: 250px;
  margin-top: 40px;
}

.about-photo img {
  width: 455px;
  border-radius: 1px;
  object-fit: cover;
}

/* Responsive για κινητά: κουτιά κάτω το ένα από το άλλο */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    align-items: center;
  }

  .about-text-box,
  .about-photo {
    max-width: 90%;
    text-align: center;
  }

  .about-photo img {
    max-width: 80%;
  }
}

.about-text-box p strong {
    font-weight: 700; /* ή 800, 900 αν θέλετε ακόμα μεγαλύτερο βάρος */
    color: #1a1a1a; /* Σχεδόν μαύρο για μέγιστη αντίθεση */
}

.site-footer {
  position: relative;        /* για να δουλέψει absolute το κέντρο */
  display: flex;
  justify-content: flex-start; /* αριστερά μένει το contact */
  align-items: center;
  padding: 30px 0px;
  font-family: 'Lato', sans-serif;
  background-color: transparent;
}

.footer-left p {
  font-size: 13px;           /* μικρό κείμενο αριστερά */
  margin: 2px 0;
  text-align: left;
}

.footer-center {
  position: absolute;        /* για να πάει στο κέντρο */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.social-icon{
 position: absolute;
 right: 0; 
}

.footer-center p {
  font-size: 0.7em;            /* μικρό copyright */
  margin: 0;
  font-weight: normal;
}

.footer-center .social-icon {
  margin-top: 5px;
}

.footer-center .social-icon a {
  color: #000;
  font-size: 20px;
  text-decoration: none;
}

.footer-center .social-icon a:hover {
  color: #888;
}


.center-content {
    display: flex;
    justify-content: center;        /* οριζόντια */
    align-items: center;            /* κάθετα */
	text-align: center;
	margin-bottom: 1rem;
}

.center-content h1 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 3.5rem 0 1rem 0;
    font-family: 'Roboto', sans-serif;
}
/* GALLERY GRID */
.gallery {
  padding: 1rem 5%;
  box-sizing: border-box;
}
/*.grid-photos { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  justify-items: center;
  align-items: center;
}
.photo {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}


.photo img {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo.landscape {
  grid-column: span 1;   
}*/


.grid-photos {
  columns: 3;           /* 3 στήλες στο desktop */
  column-gap: 12px;        /* Χωρίς οριζόντια κενά */
}

.grid-photos .photo {
  break-inside: avoid;  /* Αποτρέπει το “σπάσιμο” των εικόνων */
  margin-bottom: 12px;
  overflow: hidden;

}
.grid-photos .photo:hover img{
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.grid-photos img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
  width: 100%;
  height: auto;          /* Διατηρεί φυσικές διαστάσεις */
  display: block;        /* Αφαιρεί μικρά inline κενά */
  border-radius: 0;      /* Προαιρετικά αν θες τελείως κολλητές */
  
}


/*.photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
*/

/* Προαιρετικά για fade-in animation */
/*.photo {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}*/

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.portfolio-page .container {
  margin: 0px auto;        /* Κεντράρει οριζόντια τη σελίδα */
  padding: 0 5%;         /* Αριστερά-δεξιά 5% για να μην κολλάει */
  width: 700px;     /* Προαιρετικό, για να μην απλώνει πολύ σε μεγάλα monitors */
  box-sizing: border-box; /* για να μετράει σωστά το padding μέσα στο πλάτος */
}

.services-slider {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  text-align: center;
}

.grid-photos {
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.grid-photos img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.services-slider .prev,
.services-slider .next {
  position:relative; 
  top: 0;
  transform: none;
  background: transparent;
  color: black;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 24px;
}

.services-slider-buttons {
  display: flex;
  justify-content: space-between; /* αριστερά-δεξιά */
  margin-top: 15px;               /* λίγο κενό από τις φωτογραφίες */
  width: 100%;                     /* να καλύπτει όλο το πλάτος του slider */
  max-width: 1000px;               /* ίδιο με το slider */
  margin-left: auto;
  margin-right: auto;
}

.services-slider-buttons button {
  background: transparent;
  border: none;
  color: black;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}
.prev, .next {
  bottom: 20px;       /* κάτω μέρος του slider */
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  user-select: none;
  color: #333;        /* χρώμα βελάκι */
  font-size: 2rem;  /* μέγεθος βελάκι */
  font-weight: 100;   /* πιο λεπτό */
  
}

.prev::before {
  content: "⟵";     /* αριστερό βελάκι με ευθεία γραμμή */
  font-size: 2.5rem;

}

.next::before {
 content: "⟶";    /* δεξί βελάκι με ευθεία γραμμή */
 font-size: 2.5rem;
 
}

.prev { left: 10px; }
.next { right: 10px; }


.nav-menu a {
  color: #333333; /* ή ό,τι χρώμα έχεις στο site σου */
}

.nav-menu a.active span {
  color: #ddd6cb; /* ή το χρώμα του active state */
}



/* --- ΣΤΥΛ ΓΙΑ ΤΗ ΛΙΣΤΑ ΥΠΗΡΕΣΙΩΝ (.services-content) --- */
.services-content {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin: -0.5rem 0 1rem 0;
    font-family: 'Roboto', sans-serif;

    display: flex;
    justify-content: center;        /* οριζόντια */
    align-items: center;            /* κάθετα */
	text-align: center;
	margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px; /* Απόσταση μεταξύ εικόνας και κειμένου */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Αντιστροφή σειράς για εναλλαγή */
.service-item.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 40%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
	border-radius: 2px;
	
}

.service-visual img:hover {
    transform: scale(1.05);
}

.service-details {
    flex: 1;
    min-width: 40%;
}

.service-details h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #222;
}

.service-details p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
}

.view-gallery-btn {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
	border-radius: 3px;
	text-decoration: none;
}

.view-gallery-btn:hover {
    background-color: #555;
}

/* Media Query για responsiveness (σε μικρές οθόνες) */
@media (max-width: 900px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-details {
        min-width: 100%;
    }
}





/* ΤΕΛΙΚΗ & ΟΛΟΚΛΗΡΩΜΕΝΗ ΔΙΟΡΘΩΣΗ ΓΙΑ ΤΟ SERVICES.HTML */

/* 1. Στυλ για το Full-Screen Gallery (ΑΝΤΙΚΑΘΙΣΤΑ το παλιό σας .full-screen-gallery) */
.full-screen-gallery {
    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(248, 245, 248, 0.95) !important;
    z-index: 1000 !important; /* Πάνω από όλα */
    overflow-y: auto !important; 
    padding: 0 !important; 
    box-sizing: border-box !important;
}

/* 2. Διόρθωση Θέσης Κουμπιού "Πίσω στις Υπηρεσίες" */
.full-screen-gallery .close-gallery-btn {
    position: fixed !important; /* Fixed για να μένει σταθερό στο scroll */
    top: 20px !important;
    left: 20px !important;
    right: auto !important; /* Ακυρώνει το παλιό right: 20px */
    z-index: 1001 !important;
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 15px !important;
    cursor: pointer !important;
    font-size: 1em !important;
}

/* 3. Διόρθωση Τίτλου & Περιεχομένου */
.full-screen-gallery .gallery-content {
    max-width: 1200px !important;
    margin: 80px auto 40px auto !important; /* Μεγαλύτερο περιθώριο πάνω για το κουμπί */
    padding: 0 20px !important;
}

.full-screen-gallery .gallery-content h3 {
    text-align: center !important;
    margin-bottom: 30px !important;
    font-size: 2em !important;
}

/* 4. Εφαρμογή GRID και Υψών (για να μην πέφτουν οι φωτογραφίες η μία πάνω στην άλλη) */
.full-screen-gallery .grid-photos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    columns: initial !important; 
    column-gap: initial !important; 
}

.full-screen-gallery .grid-photos .photo {
    height: 350px !important;
    overflow: hidden !important;
    display: flex !important; 
}

.full-screen-gallery .grid-photos img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Media Query: 2 στήλες σε μικρές οθόνες */
@media (max-width: 768px) {
    .full-screen-gallery .grid-photos {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .full-screen-gallery .grid-photos .photo {
        height: 250px !important; 
    }
}

@media only screen and (max-width: 1499px){
	.image2{
        right: 790px;
        width: 520px;
		top: 390px;
		position: absolute;   
	}
	
	.footer-center p {
		font-size: 0.7em;
		margin-top: 150px;
	}
	.footer-left p {
		font-size: 15px;
	}
	.lang-link {
		padding: 30px;
	}
	.social-icon {
		position: absolute;
		right: 0;
	}
	.about-photo img {
        max-width: 410px;
	}
    .about-text-box p {
        font-family: 'Nunito Sans', sans-serif;
        font-weight: 300;
        font-size: 1rem;
        line-height: 1.9;
        color: #333;
    }
	
}

@media only screen and (max-width: 1349px) {
	.image2 {
        right: 680px;
        width: 490px;
		top: 390px;
		position: absolute;   
    } 

	.social-icon {
        position: absolute;
        right: 30px;
	}
    .footer-center p {
        font-size: 0.7em;
        margin-top: 100px;
    }
    .nav-menu a {
        font-size: 18px;
    }
    .nav-menu {
        gap: 15px;
    }
	.lang-link {
        padding: 15px 30px;
	}
	
	.about-photo img {
        max-width: 360px;
	}
	.about-text-box p {
        font-family: 'Nunito Sans', sans-serif;
        font-weight: 300;
        font-size: 0.9rem;
        line-height: 1.9;
        color: #333;
    }
	 
		.lang-link {
        padding: 40px;
	}
	.language-switcher {
    margin-left: 10px;
	}
	.social-icon {
        right: 50px;
	}
.contact-image {
    flex-shrink: 0;
    flex-basis: 470px;
}

}
@media only screen and (max-width: 1199px) {
	.image2 {
        right: 543px;
        width: 420px;
        top: 300px;
	}
	.about-photo img {
        max-width: 280px;
	}
	.about-text-box.first-box p + p {
        margin-top: -14px;
    }
	.about-text-box p {
        font-family: 'Nunito Sans', sans-serif;
        font-weight: 300;
        font-size: 0.82rem;
        line-height: 1.9;
        color: #333;
	}
	.about-section {
        justify-content: center;
        gap: 20px;
	}
	.language-switcher {
    margin-left: 10px;
	}
	.social-icon {
        right: 8px;
	}
	
.contact-content {
        /* Δεν χρειάζεται να το ξαναγράψετε αν το ορίσατε στο Βήμα 2 */
        gap: 0; 
    }
	
    .contact-form {
        /* Ειδικές ρυθμίσεις για αυτό το εύρος */
        flex-grow: 2; /* Γίνεται μεγαλύτερη */
        max-width: 850px; 
        margin-left: -180px; /* Η μετατόπιση */
    }
    
       .contact-image img {
        position: relative;
        left: -50%;
	   }
	   .contact-image {
		   margin-top: 50px;
	   }
	  
}
@media only screen and (max-width: 991px) {
	.image2 {
        right: 440px;
        width: 300px;
        top: 250px;
    }
	.nav-menu a {
        font-size: 15px;
    }
	
	.footer-center p {
        font-size: 0.7em;
        margin-top: 100px;
    }
    .lang-link {
        padding: 0.5px;
    }
    .logo img {
        width: 120px;
        max-height: none;
    }
  
   
	.about-text-box p {
        font-size: 1em;
       		
    }
	.about-section {
     gap: 1px;
	}
	.about-greeting {
    margin-bottom: -10px;
    
}
   .contact-heading {
    min-width: auto;
   
}
 .contact-image img {
        position: relative;
        left: -23%;
        width: 85%;
    }
   
}
@media only screen and (max-width: 767px) {
    .about-section {
        flex-direction: column;
        padding: 39px 3%;
    }
	.image2 {
        right: 295px;
        width: 230px;
        top: 165px;
	}	
	.footer-center p {
        font-size: 0.6em;
		left: 60%;
		margin-top: 100px;
	}
	.footer-left p {
		font-size: 10px;
	}
	.nav-menu a {
        font-weight: 500;
        font-size: 14px;
    }
	.lang-link {
        padding: 0.5px;	
    }
	.container.home-container {
        padding-top: 30px; 
    }
	.header {
    padding: 40px 0;
    margin-top: 0;
    }
	.contact-content {
    display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 110px;
	}
	
	.contact-heading {
    text-align: center;
	}
	
	.contact-image img {
        left: 0;
		width: 100%;
    }
	.contact-image {
        flex-basis: 245px;
		margin-top: 60px;
		margin-right: 0;
    }
	
	.contact-form {
      width: 100%;

	  }
	.about-text-box.center {
      margin-top: 0;
    }
	  .contact-form {
        margin-left: 0;
	  }
}

@media only screen and (max-width: 549px) {
	.image2 {
       right: 260px;
        width: 190px;
        top: 145px;
	}	
	.footer-center p {
        font-size: 0.6em;
		left: 60%;
		margin-top: 150px;
	}
	.footer-left p {
		font-size: 12px;
	}
	.nav-menu a {
        font-weight: 500;
        font-size: 14px;
    }
	.lang-link {
        padding: 0.8px;	
    }
	.about-section {
        flex-direction: column;
        padding: 39px 3%;
    }
	
}
@media only screen and (max-width: 479px) {
	.image2 {
        right: 240px;
        width: 160px;
        top: 135px;
	}	
	.footer-center p {
        font-size: 0.6em;
		left: 60%;
		margin-top: 150px;
	}
	.footer-left p {
		font-size: 12px;
	}
	.nav-menu a {
        font-weight: 500;
        font-size: 14px;
    }
	.lang-link {
        padding: 0.8px;	
    }
	.logo img {
        width: 120px;
    }
	.service-details h3 {
     font-size: 1em;
	}
	.contact-image img {
        left: 0;
		width: 100%;
    }
	.contact-image {
        flex-basis: 245px;
        margin-top: 60px;
        margin-right: 0;
    }
}
@media only screen and (max-width: 420px) {
	.image2 {
        right: auto !important;
        width: 125px !important;
        top: auto !important;
        bottom: 9px;
        left: -9px;
	}
	.about-section {
        flex-direction: column;
        padding: 39px 3%;
    }
	.about-photo img {
        max-width: 260px;
    }
	    .contact-image img {
        left: 0;
        width: 100%;
    }
	.container.home-container {
        padding-top: 20px;
    }
	    .main-nav {
        width: 125%;
        margin: 10px 0 0 0;
    }
}



/* ================================================= */
/* 1. ΚΑΘΟΛΙΚΕΣ ΡΥΘΜΙΣΕΙΣ ΓΙΑ TABLETS & ΚΙΝΗΤΑ (< 1024px) */
/* ================================================= */
@media (max-width: 1024px) {
    /* Εξασφαλίζει ότι το padding είναι λογικό σε όλη τη σελίδα */
    .home-container {
        box-sizing: border-box;
    }

    /* Μείωση μεγέθους γραμματοσειρών για καλύτερη ανάγνωση */
    h1 {
        font-size: 2.2rem;
    }
    
  

    .nav-menu {
        gap: 10px; /* Μικρότερο κενό στο μενού */
    }

  
    
    /* Ρυθμίσεις Gallery */
    .gallery {
        padding: 1rem 3%;
    }
}


/* ================================================= */
/* 2. ΣΥΓΚΕΚΡΙΜΕΝΕΣ ΡΥΘΜΙΣΕΙΣ ΓΙΑ ΚΙΝΗΤΑ (< 650px) */
/* ================================================= */
@media (max-width: 650px) {
	/* ΝΕΟΣ ΚΑΝΟΝΑΣ: Ωθεί όλο το περιεχόμενο προς τα κάτω */
    .container.home-container {
        padding-top: 30px;
    }
    
    /* HEADER: Στοίβαγμα μενού κάτω από το λογότυπο */
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        
        /* ΝΕΟ: Επαναφέρετε το padding και το margin για να μην χαθεί το κενό */
        padding: 40px 0;
        margin-top: 0;
    }
    
	    .nav-menu {
        gap: 15px;
        padding: 0;
		justify-content: center;
        align-items: center;
    }
  .main-nav
  {
    margin-left: 0;
  }
    .language-switcher {
        margin-left: 10px; /* Μικρότερο κενό από το μενού */
    }
    
    /* HOME PAGE: Διόρθωση των διπλών εικόνων (.image1, .image2) */
    .image-wrapper {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .image1 {
        width: 100%; /* Γεμίζει το πλάτος */
        height: auto;
    }
    
   
    
    /* GALLERY: 1 ή 2 στήλες (Masonry) */
    .grid-photos {
        columns: 2; /* 2 στήλες αντί για 3 */
        column-gap: 8px; /* Λιγότερο κενό */
        padding: 0 5px;
    }
    .grid-photos .photo {
        margin-bottom: 8px;
    }

    /* SERVICES PAGE: Διόρθωση δομής (αν έχετε και εκεί media query, αυτό θα είναι το fallback) */
    .service-item, .service-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    .view-gallery-btn {
        margin: 0 auto; /* Κεντράρισμα κουμπιού */
    }

}


