* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* ύψος navbar */
}

#about, #services, #contact {
    scroll-margin-top: 100px; /* Ύψος navbar */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000000; 
  background-image: linear-gradient(to right, rgba(10, 10, 9, 0) 50%, #c8c1a9 150%);
}

/* ==================== FIRST PAGE ==================== */
.firstpage {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2% 10% 17% 10%; /* top right bottom left */
  background: 
    linear-gradient(to right, rgba(10, 10, 9, 0) 50%, #c8c1a9 150%),
    url('./imgs/glitter.png') no-repeat bottom center;
  background-size: cover, 100%;
  background-color: black;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
}

.nav-item {
    color: #e6b400;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Cormorant", serif;
}

.nav-item:hover {
    color: #F4E4BC;
    transform: translateY(-2px);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F4E4BC;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #F4E4BC;
    margin: 3px 0;
    transition: 0.3s;
}

.lang-switch {
  background-color: #111; /* σκούρο κουμπί */
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: bold;
  border: 1px solid #444;
  margin-left: auto;
}

.lang-switch:hover {
  background-color: #222;
  color: #e6b400;
  border-color: #00aaff;
}

/* Main content container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 50px 50px;
}

/* Hero section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    z-index: 2;
}

.hero-title {
    font-family: "Imperial Script", cursive;
    color: #e6b400;
    font-size: 8rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1.5px;
    transform: translateY(-80%);
}

.hero-subtitle {
    font-family: "Cormorant", serif;
    color: #e6b400;
    font-size: clamp(1.2rem, 2vw, 3rem);
    margin: 10px 0 0 0;
    transform: translateY(-220%);
}

/* Logo section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-30%);
}

.logo {
    width: 430px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


                            /* ==================== ABOUT SECTION ==================== */

.editTheSection {
  padding: 0 70px;
  margin-top: 50px;
}

.sxetika {
  max-width: 1600px;
  margin: 60px auto 20px auto;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  box-shadow: 0 0 50px #e6b400;

  display: flex;           /* καθετή διάταξη για όλη τη σέκτιον */
  flex-direction: column;  /* column για να πάει το extra-text κάτω */
  align-items: center;
  gap: 40px;
}

.sxetika-top {
  display: flex;           /* εικόνες + κείμενο δίπλα-δίπλα */
  gap: 40px;
  align-items: center;
  justify-content: center;
}


.about-images {
  flex: 1;                /* αριστερό μισό */
  display: flex;
  gap: 10px;
  justify-content: center;
}

.about-images img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about-images img:hover {
  transform: scale(1.05);     /* Μεγαλώνει λίγο */
  filter: brightness(90%);    /* Σκουραίνει λίγο */
}


.deksia_keimeno {
  flex: 1;                
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* τώρα και το h2 και το κουμπί πάνε στο κέντρο */
  text-align: center;  /* για να κεντραριστεί και το κείμενο */
}


/* Οβάλ εικόνες (κοινό στυλ για όλες) */
#inside1, #inside2, #loutra {
  width: 200px;
  height: 400px;
  object-fit: cover;
  border: 5px solid #2c2b27;
  border-radius: 50% / 10%;
  box-shadow: 0 4px 10px #e6b400;
  margin-right: 15px;
}

#inside2 {
  margin-top: 30px;
}

#loutra {
    margin-right: 0px;
}

/* Τίτλος και κείμενο */
#titlos {
    margin-bottom: 20px;
    color: #F9F6EE;
    text-decoration: none;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Cormorant", serif;
}

#keimeno {
  color: #F9F6EE;
  text-align: justify;
  font-size: 1.5rem;
  font-family: "Cormorant", serif;
}

/* Κουμπί */
.button {
  background-color: #2c2b27;
  color: #e6b400;
  font-weight: bold;
  padding: 15px 10px 15px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.4s ease;
  margin-top: 20px;
  width: 9rem;
}
.button:hover {
  background-color: #3b3316;
  box-shadow: 0 2px 6px 2px #F4E4BC;
}

.extra-text {
  text-align: center;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #F9F6EE;
  font-size: 1.3rem;
  font-family: "Cormorant", serif;
}


                            /* ==================== SERVICES SECTION ==================== */

.pricelist {
  max-width: 1300px;
  margin: 60px auto 20px auto;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.1);;
  border-radius: 15px;
}

.prices h2{
    padding-bottom: 15px;
    color: #F9F6EE;
    text-decoration: none;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Cormorant", serif;
}

.services-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.list-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.frontspan {
    margin-right: 22px;
}

.item {
  font-size: 20px;
  color: #F9F6EE;
  border-bottom: 2px solid #e6b400;
  padding-bottom: 5px;
  text-align: left;
  max-width: 300px;

  display: flex;             /* Βάζουμε flex για να μπορούμε να χωρίσουμε περιγραφή και τιμή */
  justify-content: space-between; /* Περιγραφή αριστερά, τιμή δεξιά */
}

.item2 {
    font-size: 20px;
    color: #F9F6EE;
    text-align: left;
    max-width: 300px;
}


                            /* ==================== CONTACT SECTION ==================== */

.editTheSection {
  padding: 10px 70px;
}

.mrgn {
    margin-top: 60px;
    margin-bottom: 60px;
}

.contactsection {
  max-width: 1600px;
  margin: 60px auto 20px auto;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5);;
  border-radius: 15px;
  box-shadow: 0 0 50px #e6b400;

  display: flex;           /* τα βάζει δίπλα-δίπλα */
  align-items: center;     /* τα κεντράρει κάθετα */
  gap: 40px;               /* απόσταση κειμένου-εικόνας */
}

.pdng { padding: 60px; }

.contacticon {
  color: #e6b400;
  font-size: 25px;
  text-align: left;
  max-width: 300px;

  display: flex;
  align-items: center;   /* κάθετη στοίχιση */
  gap: 10px;             /* απόσταση εικονίδιο ↔ κείμενο */
}

#contactimg {
    width: 100%;       /* γεμίζει το container */
    max-width: 700px;  /* μέγιστο πλάτος σε desktop */
    height: auto;      /* διατηρεί αναλογία */
}

.cntct {
    color: #e6b400;
}

@media (max-width: 1230px) {
    #contactimg {
        width: 500px;
    }
}

@media (max-width: 1030px) {
  .contactsection {
    flex-direction: column;  /* βάζει κείμενο πάνω, εικόνα κάτω */
    align-items: center;     /* κεντράρει το περιεχόμενο */
    gap: 30px;               /* απόσταση μεταξύ κειμένου & εικόνας */
  }

  #contactimg {
    width: 300px;
    align-self: flex-start;             
    max-width: 400px;
  }

  .pdng {
    padding: 30px;           /* μικρότερο padding σε μικρές οθόνες */
  }
}

@media (max-width: 750px) {
    .contactsection {
        flex-direction: column;  /* κείμενο πάνω, εικόνα κάτω */
        align-items: flex-start; /* εικόνα αριστερά */
        gap: 30px;
    }

    .contacticon {
        color: #e6b400;
        font-size: 20px;
        border-bottom: 2px solid #e6b400;
        padding-bottom: 5px;
        text-align: left;
        max-width: 300px;

        display: flex;
        align-items: center;   /* κάθετη στοίχιση */
        gap: 10px;             /* απόσταση εικονίδιο ↔ κείμενο */
    }

    #contactimg img {
        width: 100%;       /* γεμίζει τον διαθέσιμο χώρο */
        max-width: 70%;    /* πολύ μικρές οθόνες */
    }

    .pdng {
        padding: 30px;     /* λιγότερο padding */
    }
}

@media (max-width: 380px) {
    .contactsection {
        flex-direction: column;  /* κείμενο πάνω, εικόνα κάτω */
        align-items: flex-start; /* εικόνα αριστερά */
        gap: 30px;
    }

    .contacticon {
        color: #e6b400;
        font-size: 15px;
        border-bottom: 2px solid #e6b400;
        padding-bottom: 5px;
        text-align: left;
        max-width: 300px;

        display: flex;
        align-items: center;   /* κάθετη στοίχιση */
        gap: 10px;             /* απόσταση εικονίδιο ↔ κείμενο */
    }

    #contactimg img {
        width: 100%;       /* γεμίζει τον διαθέσιμο χώρο */
        max-width: 50%;    /* πολύ μικρές οθόνες */
    }

    .pdng {
        padding: 30px;     /* λιγότερο padding */
    }
}


                            /* ==================== GALLERY SECTION ==================== */

.gallerysection {
    background-color: rgba(0, 0, 0, 0.1);
    max-width: 2000px;
}

#gallery-title {
    font-family: "Imperial Script", cursive;
    color: #e6b400;
    font-size: 5rem;
    margin: 0;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding-top: 50px;
    margin-bottom: 70px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 εικόνες σε κάθε σειρά */
  gap: 20px; /* απόσταση ανάμεσα */
  justify-items: center; /* να έρθουν στη μέση κάθε κελιού */
}

.galleryimgs {
  width: 350px;
  height: 550px;
  object-fit: cover;
  border: 5px solid #2c2b27;
  border-radius: 50% / 10%;
  box-shadow: 0 4px 10px #e6b400;
  margin-bottom: 50px;
}

@media (max-width: 1260px) {
    .galleryimgs {
        width: 250px;
        height: 450px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-bottom: 50px;
    }
}

@media (max-width: 810px) {
    .galleryimgs {
        width: 220px;
        height: 420px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-bottom: 50px;
    }
}

@media (max-width: 710px) {
    .galleryimgs {
        width: 200px;
        height: 400px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-bottom: 50px;
    }
}

@media (max-width: 650px) {
    .galleryimgs {
        width: 150px;
        height: 350px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .galleryimgs {
        width: 120px;
        height: 320px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-bottom: 50px;
    }
}


@media (max-width: 405px) {
    .galleryimgs {
        width: 80px;
        height: 280px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-bottom: 50px;
    }
}

@media (max-width: 380px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 εικόνες σε κάθε σειρά */
        gap: 5px; /* απόσταση ανάμεσα */
        justify-items: center; /* να έρθουν στη μέση κάθε κελιού */
    }

    .galleryimgs {
        width: 70px;
        height: 260px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-bottom: 50px;
    }
}


                            /* ==================== RESPONSIVES ==================== */



@media (max-width: 710px) {
    .hero-title {
        font-family: "Imperial Script", cursive;
        color: #e6b400;
        font-size: 6rem;
        margin: 0 auto;       /* για block-level στοιχείο */
        font-weight: 300;
        letter-spacing: 1.5px;
        text-align: center;    /* κεντράρει το κείμενο */
    }
}

@media (max-width: 423px) {
    .hero-title {
        font-family: "Imperial Script", cursive;
        color: #e6b400;
        font-size: 4rem;
        margin: 0 auto;       /* για block-level στοιχείο */
        font-weight: 300;
        letter-spacing: 1.5px;
        text-align: center;    /* κεντράρει το κείμενο */
    }
}

@media (max-width: 1340px) {
    #inside1, #inside2, #loutra {
        width: 150px;
        height: 350px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-right: 15px;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }
}

@media (max-width: 1150px) {
    #inside1, #inside2, #loutra {
        width: 120px;
        height: 320px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    nav {
        padding: 15px 30px;
    }

    .nav-container {
        gap: 30px;
        flex-wrap: wrap;
    }

    .container {
        padding: 80px 30px 30px;
    }

    .logo {
        width: 250px;
        height: 250px;
        font-size: 100px;
    }

    .sxetika-top {
        flex-direction: column;  /* οι εικόνες πάνε πάνω, το κείμενο κάτω */
        text-align: center;      /* όλα στο κέντρο */
    }

    .deksia_keimeno {
        align-items: center;     /* κέντρο το κείμενο */
    }

    #keimeno {
        text-align: center;      /* να μη μένει justify στο κινητό */
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 20px;
    }

    .nav-item {
        font-size: 14px;
    }

    .description {
        font-size: 20px;
    }

    .container {
        padding: 70px 20px 20px;
    }

    .hero {
        gap: 30px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-container.active {
        display: flex;
    }
}

@media (max-width: 700px) {
    #inside1, #inside2, #loutra {
        width: 100px;
        height: 280px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-right: 8px;
        margin-right: 15px;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }
}

@media (max-width: 570px) {
    #inside1, #inside2, #loutra {
        width: 80px;
        height: 200px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-right: 8px;
        margin-right: 15px;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }

    .nav-container {
        gap: 15px;
        justify-content: center;
    }

    .nav-item {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .logo {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }

    #inside1, #inside2, #loutra {
        width: 70px;
        height: 190px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-right: 8px;
        margin-right: 15px;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }

    .description {
        font-size: 18px;
    }

    .text-section {
        padding: 25px;
    }
}


@media (max-width: 425px) {
    #inside1, #inside2, #loutra {
        width: 60px;
        height: 160px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-right: 8px;
        margin-right: 15px;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }
}


@media (max-width: 395px) {
    #inside1, #inside2, #loutra {
        width: 50px;
        height: 140px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-right: 8px;
        margin-right: 15px;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }
}


@media (max-width: 360px) {
    #inside1, #inside2, #loutra {
        width: 30px;
        height: 130px;
        object-fit: cover;
        border: 5px solid #2c2b27;
        border-radius: 50% / 10%;
        box-shadow: 0 4px 10px #e6b400;
        margin-right: 8px;
        margin-right: 15px;
    }

    #inside2 {
        margin-top: 30px;
    }

    #loutra {
        margin-right: 0px;
    }
}