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

body {
  font-family: "Noto Serif", serif;
  overflow-x: hidden;
}

/* ✅ Background image wrapper */
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background: url('images/wrapperphoto.jpg') center/cover no-repeat;
  z-index: -1;
  filter: brightness(1);

}

/* Header */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 30px 40px;
  border-bottom: 1px solid #000;
  margin-top: 60px; /* Κατεβάζει το header για να φαίνεται φόντο από πίσω */
}

/* Εσωτερικό container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
}

.logo p {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 250;
  font-style: normal;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Navigation */
  .main-nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1.5px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

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

/* Hamburger button - κρυφό σε desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 20px;
  margin-top: 7%;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 1px;
  background-color: #333;
  border-radius: 2px;
}


/* Όταν είναι ανοιχτό, κάνε Χ */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Hero */


.hero {
  position: relative;
  height: 120vh;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10%;
  padding-left: 15%;
  text-align: left;
  overflow: hidden;
  margin-top: -60px; /* Ξεκινάει από πίσω από το header */

  backdrop-filter: blur(2px);
}

.hero-content {
  position: absolute;
  z-index: 1;
  max-width: 1200px;
  padding-top: 4%;
  padding-left: 5%; /* Τέρμα αριστερά */
  left: 0; /* Δηλώνει ρητά ότι ξεκινά από το αριστερό άκρο */
}


.hero h1 {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 3.8rem;
  margin-bottom: 0.5%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  
  padding-left: 0; /* Βεβαιώνουμε ότι δεν έχει offset */
}

.hero p {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 150;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  padding-left: 0.5rem; /* Δίνει την ελαφριά εσοχή που ζήτησες */
}


.underline {
  margin-top: 0;
  height: 1px;
  width: 85%;
  background-color: white;
}

.hero-btn {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  font-family: "Noto Serif", serif;
  font-size: 1rem;
  font-weight: 350;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: -1;
  transition: top 0.4s ease;
}

.hero-btn:hover::before {
  top: 0;
}

.hero-btn:hover {
  color: #000;
  border-color: rgba(255, 255, 255, 0.95);
}



/* About */

.about-section {
  background-color: rgba(255, 255, 255, 1);
  padding: 60px 40px;
  margin-top: 0px; /* Για να έρθει πιο κοντά στην αρχή */

}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row; /* ➤ Οριζόντια στοίχιση */
  gap: 40px;
  min-height: 500px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap; /* Για responsive συμπεριφορά */
}

.about-text {
  flex: 1 1 60%;
}

.about-text h2 {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 2rem;
  
}

.about-text p {
  
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #1f1f1f;
  line-height: 1.6;
  margin-bottom: 12px;


}

.section-title-line {
  position: relative;
  margin-bottom: 4%;
  width: 95%; /* Μπορείς να το μικρύνεις/μεγαλώσεις */
}

.section-title-line h2 {
  margin: 0;
  padding-bottom: 10px;
  position: relative;
}

.section-title-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-color: #000;
  border-radius: 2px;
}


.about-image {
  flex: 1 1 35%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background-color: #f9f9f9;
  padding: 8px;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* Quote-Section*/


.quote-section {
  position: relative;
  width: 100%;
  height: 50vh; /* πιο μικρό από το hero */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: -2px;

  backdrop-filter: blur(1px);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(1); /* σκοτεινό για να διαβάζεται το κείμενο */
}

.quote-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px 40px;
  text-align: center;
}

.quote-text h1 {
  color: white;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);

  font-family: "Comfortaa", sans-serif;
  font-size: 2rem;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
}

/* Services */

.services-section {
  background-color: #fff;
  padding: 60px 40px;
  margin-top: 30px;
  min-height: 500px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.services-title h2 {
  font-size: 2.2rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  color: #222;
  position: relative;
  letter-spacing: 0.5px;
}

.services-title h2::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: rgba(44, 62, 80, 0.6);
  margin: 12px auto 0;
  border-radius: 4px;
}

.icon-wrapper {
  font-size: 2.5rem;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.15);
  color: #0077cc;
}

.service-card {
  background-color: rgb(252, 247, 243);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 0 1.5px #d4d4d4 inset;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: 0 0 0 0 rgba(0, 119, 204, 0.4);
  transition: box-shadow 0.4s ease;
  z-index: 0;
}

.service-card:hover::after {
  box-shadow: 0 0 0 2.5px rgba(0, 119, 204, 0.2);
}

.service-card h3 {
  font-family: "Noto Serif", serif;
  font-size: 1.4rem;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  color: #222;
}

.service-card p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #1f1f1f;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Μεγάλη κάρτα (πάνω) */
.service-card.large {
  width: 100%;
  min-height: 300px;
}

/* Τίτλος μεγάλης κάρτας */
.service-card.large h3 {
  text-align: center;
}

/* Λίστα σε μεγάλη κάρτα */
.service-card ul {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #222;
  padding-left: 2rem;
  line-height: 1.6;
}

/* Δύο μικρές κάρτες δίπλα-δίπλα */
.service-card-pair {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

.service-card.half {
  width: 50%;
  min-height: 250px;
}

/* Μικρότερη full-width κάρτα (κάτω) */
.service-card.small {
  width: 100%;
  min-height: 180px;
}

/* Quote2-Section*/


.quote2-section {
  position: relative;
  width: 100%;
  height: 50vh; /* πιο μικρό από το hero */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: -2px;

  backdrop-filter: blur(2px);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(1); /* σκοτεινό για να διαβάζεται το κείμενο */
}

.quote2-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px 40px;
  text-align: center;
}

.quote2-text h1 {
  color: white;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); 
  font-family: "Comfortaa", sans-serif;
  font-size: 2rem;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
}

/* === Gallery Section === */
.gallery-section {
  padding: 40px 20px;
  background-color:  rgba(255, 255, 255, 1);
  text-align: center;
  min-height: 500px;
}

.gallery-section h2 {
  font-size: 2rem;
  font-family: "Noto Serif", serif;
  font-weight: 350;
  color: #222;
  position: relative;
}

.gallery-section h2::after {
  content: "";
  display: block;
  width: 70%;
  height: 1.5px;
  background-color: rgba(44, 62, 80, 0.6);
  margin: 0.4% auto 3% auto;
  border-radius: 2px;
}

/* === Gallery Layout === */
.gallery-custom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-large {
  flex: 1 1 50%;
  min-width: 300px;
}

.gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gallery-large img:hover {
  transform: scale(1.02);
}

.gallery-small-group {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-width: 300px;
}
.gallery-small-group a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.gallery-small-group a img:hover {
  transform: scale(1.02);
}

/* Simple-background-section */

.simple-background-section {
  background-color: rgba(255, 255, 255, 1);
  height: 25vh;
  margin-top: 0px; /* Για να έρθει πιο κοντά στην αρχή */
}






/* Art Section */



.art-section {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px 5px;
  backdrop-filter: blur(1px);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.art-container {
  max-width: 100vw;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.art-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%; /* To ;allo 35% */
  display: block;
  border-radius: 0px;
  filter: brightness(0.95) blur(1px);
}

.art-text{
  position: absolute;
  top: 170px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: white;
  font-family: "Comfortaa", sans-serif;
  font-size: 2rem; /* 2.3 me black */
  font-optical-sizing: auto;
  font-weight: 350; /* 350 me black */
  font-style: italic;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  overflow-wrap: break-word;
  white-space: normal;
  user-select: text;
  text-shadow: 0.5px 0.5px 2px black; /*rgba(255,255,255,0.8)*/
}

.art-text p + p {
  margin-top: 1em;
  font-size: 1.2rem;
}


/* Contact */

.contact {
  background-color: rgba(255, 255, 255, 1);
  padding: 60px 40px;
  margin-top: 0px;
  min-height: 500px;
}

.contact h2 {
  font-size: 2rem;
  font-family: "Noto Serif", serif;
  font-weight: 350;
  color: #222;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.contact h2::after {
  content: "";
  display: block;
  width: 80%;
  height: 1.5px;
  background-color: rgba(44, 62, 80, 0.6);
  margin: 1% auto 0 auto;
  border-radius: 2px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Δύο στήλες: φόρμα και ώρες */
.contact-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  align-items: stretch;
}

.contact-columns > * {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.contact-info-form {
  background-color: #f2f7fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #d4d4d4 inset;
  flex: 1;
}

.contact-info-form p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info-form a {
  color: #2c3e50;
  text-decoration: none;
}

.contact-info-form a:hover {
  text-decoration: underline;
}

.contact-info-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}

.contact-info-form input,
.contact-info-form textarea {
  padding: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.contact-info-form button {
  background-color: #2c3e50;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-info-form button:hover {
  background-color: #1a252f;
}

.contact-details-card {
  background-color: #f7f7f7;
  border-left: 4px solid #2a2a2a;
  padding: 20px 25px;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  color: #2a2a2a;
  flex: 1;
}

.contact-details-card h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Serif", serif;
}

.contact-details-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.contact-details-card li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* Χάρτης */
.map-container {

  width: 100%;
  background-color: #f2f7fa;
  padding: 40px 20px;

}

.map-inner {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #d4d4d4 inset;
}

.map-inner iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}



/* Footer */

.footer {
  background-color: #f9f9f9; /* πιο σκούρο από #f9f9f9 */
  padding: 20px 20px;        /* μικρότερο padding για χαμηλότερο ύψος */
  border-top: 1px solid #ccc;
  font-family: "Roboto", sans-serif;
  color: #333;
  font-size: 0.85rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer h3,
.footer h4 {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  color: #111;
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer p,
.footer a {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
  text-decoration: none;
}

.footer a:hover {
  color: #000;
  text-decoration: underline;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center li {
  margin-bottom: 3px;
}



/* ----------- MEDIA QUERIES ----------- */

@media (max-width: 375px) {

  /*Header*/
  .main-nav {
    display: none;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .logo {
    margin-bottom: 10px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo p {
    font-size: 1rem;
  }

  .hero {
  display: flex;
  justify-content: flex-start;     /* Στοιχίζει τα στοιχεία πιο αριστερά */
  align-items: flex-start;         /* Στοιχίζει τα στοιχεία πιο πάνω */
  height: 100vh;
  padding: 2rem;                   /* Απόσταση από άκρες */
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;         /* Στοίχιση περιεχομένου αριστερά */
  gap: 1.1rem;
  transform: translateY(15%) translateX(-3%); /* Μικρή μετατόπιση πάνω και αριστερά */
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
}

.hero p {
  font-size: 0.9rem;
  margin: 0;
  padding-left: 0rem;
}

.underline {
  width: 95%;
  margin: 0 auto; /* Μηδενίζει τυχόν απόσταση */
  
}

.hero-btn {
  font-size: 0.7rem;
  padding: 0.6rem 1.2rem;
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  align-self: center;
  
}

  /*About*/

  .about-text h2 {
    font-size: 1.5rem;
    
  }
  
  .about-text p {
    font-size: 0.9rem;
  }


  .about-image {
    order: 1; /* Η εικόνα πηγαίνει πάνω σε κινητά */
    width: 100%;
    height: 400px;
  }



  /* Quote*/ 

  .quote-text h1 {
    font-size: 1.5rem;
  }


  /* Services*/



  .services-title h2 {
    font-size: 1.5rem;
  }



  .service-card.large h3 {
    font-size: 1.2rem;

  }


  .service-card.large p {
    font-size: 0.9rem;
  }

  .service-card.large ul {
    font-size: 0.9rem;
  }
  
  

  .service-card.half h3{
    font-size: 1.2rem;
  }

.service-card.half p{
  font-size: 0.9rem;
}


.service-card.small h3{
  font-size: 1.2rem;

}

.service-card.small p{
  font-size: 0.9rem;

}
  

  /*Quote2*/

  .quote2-text h1 {
    font-size: 1.5rem;
  }


  /*Gallery*/

  .gallery-section {
    padding: 40px 7px;
  
  }


  .gallery-section h2 {
    font-size: 1.5rem;
  }


  .gallery-section h2::after {
    
    margin: 0.4% auto 10% auto;
    
  }


  /*Art*/

  
  
  .art-text{
    top: 25%;
    font-size: 1.5rem; 
  }
  
  .art-text p + p {
    font-size: 0.8rem;
  }


  /*Contact*/

  .contact {
    padding: 40px 20px;
  }

  .contact h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .contact-columns {
    flex-direction: column;
    gap: 20px;
  }

  .contact-columns > * {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .contact-info-form,
  .contact-details-card {
    padding: 20px;
  }

  .contact-info-form input,
  .contact-info-form textarea,
  .contact-info-form button {
    font-size: 0.95rem;
  }

  .contact-details-card h3 {
    font-size: 1rem;
  }

  .contact-info-form p,
  .contact-details-card li {
    font-size: 0.95rem;
  }

  .map-container {
    min-height: 200px;
  }

  .map-container iframe {
    min-height: 200px;
  }


}




@media (min-width: 376px) and (max-width: 425px) {

  /*Header*/

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  .logo h1 {
    font-size: 1.7rem;
  }

  .logo p {
    font-size: 1rem;
  }


  /*Hero*/

  .hero {
  display: flex;
  justify-content: flex-start;     /* Στοιχίζει τα στοιχεία πιο αριστερά */
  align-items: flex-start;         /* Στοιχίζει τα στοιχεία πιο πάνω */
  height: 100vh;
  padding: 2rem;                   /* Απόσταση από άκρες */
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;         /* Στοίχιση περιεχομένου αριστερά */
  gap: 1.1rem;
  transform: translateY(15%) translateX(-2%); /* Μικρή μετατόπιση πάνω και αριστερά */
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.4;
  margin: 0;
}

.hero p {
  font-size: 1rem;
  margin: 0;
  padding-left: 0rem;
}

.underline {
  width: 95%;
  margin: 0 auto; /* Μηδενίζει τυχόν απόσταση */
  
}

.hero-btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  align-self: center;
  
}






  /*About*/


  .about-text h2 {
    font-size: 1.9rem;
    
  }
  
  .about-text p {
    font-size: 1rem;
  }

  .about-image {
    order: 1; /* Η εικόνα πηγαίνει πάνω σε κινητά */
    width: 100%;
    height: 400px;
  }

  /* Quote*/ 


  .quote-text h1 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  /*Services*/


  .services-title h2 {
    font-size: 1.9rem;
  }



  .service-card.large h3 {
    font-size: 1.4rem;

  }


  .service-card.large p {
    font-size: 1rem;
  }

  .service-card.large ul {
    font-size: 1rem;
  }
  
  .service-card.half h3 {
    font-size: 1.4rem;
    }

  .service-card.half p {
  font-size: 1rem;
  }

  .service-card.small h3 {
    font-size: 1.4rem;
  
    }

  .service-card.small p {
  font-size: 1rem;

  }

  .service-card {
    flex: 1 1 100%;
  }

  

  /*Quote2*/

  .quote2-text h1 {
    font-size: 1.6rem;
    line-height: 1.4;
  }


  /*Gallery*/


  .gallery-section h2 {
    font-size: 1.9rem;
  }


  .gallery-section h2::after {
    
    margin: 0.4% auto 15% auto;
    
  }

  /*Art*/
  
  .art-text{
    top: 20%;
    font-size: 1.7rem; 
  }
  
  .art-text p + p {
    font-size: 0.9rem;
  }



}

@media (min-width: 426px) and (max-width: 879px) {

  /*Header*/


  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  .main-nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
  }

  .main-nav a {
    margin: 10px;
    font-size: 0.9rem;
    
  }

  /*Hero*/


  .hero {
    align-items: flex-start;
    padding-top: 20%;
    padding-left: 20%;
    height: 100vh;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .hero-content {
    max-width: 95%;
    padding-left: 10%;
  }

  .hero p {
    font-size: 1.2rem;
    padding-left: 0.2rem; /* Δίνει την ελαφριά εσοχή που ζήτησες */
  }

  .underline {
    margin-top: 3%;
    width: 100%;
  }

  .hero-btn {
    
    font-size: 0.9rem;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    
  }

  /*About*/

  .about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto; /* Κεντράρισμα */
    display: block;
  }

  .about-text h2 {
    font-size: 2.1rem;
    
  }
  
  .about-text p {
    font-size: 1.1rem;
  }

  /* Quote*/ 


  .quote-text h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  /*Services*/


  .services-title h2 {
    font-size: 2.1rem;
  }



  .service-card.large h3 {
    font-size: 1.6rem;

  }


  .service-card.large p {
    font-size: 1.1rem;
  }

  .service-card.large ul {
    font-size: 1.1rem;
  }
  
  .service-card.half h3 {
    font-size: 1.6rem;
    }

  .service-card.half p {
  font-size: 1.1rem;
  }

  .service-card.small h3 {
    font-size: 1.6rem;
  
    }

  .service-card.small p {
  font-size: 1.1rem;

  }

  .service-card {
    flex: 1 1 100%;
  }

  /*Quote2*/

  .quote2-text h1 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  /*Gallery*/


  .gallery-section h2 {
    font-size: 2.1rem;
  }


  .gallery-section h2::after {
    
    margin: 0.4% auto 10% auto;
    
  }

  /*Art*/
  
  .art-text{
    top: 28%;
    font-size: 1.8rem; 
  }
  
  .art-text p + p {
    font-size: 1.1rem;
  }


}

@media (min-width: 880px) and (max-width: 1023px) {

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }


  .main-nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
  }

  .main-nav a {
    margin: 10px;
    font-size: 0.9rem;
    
  }

  /*Hero*/


  .hero {
    align-items: flex-start;
    padding-top: 12%;
    padding-left: 20%;
    height: 100vh;
  }

  .hero h1 {
    font-size: 2.9rem;
    line-height: 1.3;
  }

  .hero-content {
    max-width: 100%;
    padding-left: 12%;
  }

  .hero p {
    font-size: 1.5rem;
    padding-left: 0.2rem; /* Δίνει την ελαφριά εσοχή που ζήτησες */
  }

  .underline {
    margin-top: 3%;
    width: 98%;
  }

  .hero-btn {
    
    font-size: 1rem;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    
  }

  /* Quote*/ 


  .quote-text h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .quote2-text h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }




}




@media (max-width: 879px) {

/*Services*/
.service-card-pair {
  flex-direction: column;
}

.service-card.half {
  width: 100%;
}

.services-container {
  flex-direction: column;
  gap: 30px;
}

.service-card {
  flex: 1 1 100%;
  padding: 20px;
}

.top-service,
.bottom-service {
  width: 100%;
}

.middle-services {
  flex-direction: column;
  gap: 20px;
}

.middle-services .service-card {
  width: 100%;
}



.gallery-custom-grid {
  flex-direction: column;
  gap: 16px;
}

.gallery-large,
.gallery-small-group {
  flex: 1 1 100%;
}

/*Simple-Background*/

.simple-background-section {
  height: 15vh;
}

/*Contact*/

.contact-columns {
  flex-direction: column;
}

.contact-columns > * {
  flex: 1 1 100%;
}

/*Footer*/

.footer-container {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 100%;
}

.footer-center ul {
  display: inline-block;
  text-align: left;
}


}


@media (max-width: 489px) {
  .hamburger {
    display: flex;
    margin-left: 0%;
    z-index: 1001;
  }

  .main-nav {
    position: absolute;
    top: 94%;
    left: 0;
    right: 0;
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 4 0px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    font-size: 1rem;
    color: #222;
    text-decoration: none;
    width: 92%;
    text-align: center;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }



}


@media (max-width: 480px) {

  .service-card.large ul {
    padding-left: 0.5rem;
  }


  .gallery-small-group {
    grid-template-columns: 1fr;
  }
}



  /* 1601px έως 1919px  */


@media (min-width: 1601px) and (max-width: 1919px) {
  /* Header */


/* Εσωτερικό container */
.container {
  max-width: 1450px;
}


.logo h1 {
  font-size: 1.9rem;
}

.logo p {
  
  font-size: 1.3rem;
  
}

/* Navigation */
  .main-nav a {
  
  font-size: 1.1rem;
}



/* Hero */


.hero {
  
  height: 95vh;
  padding-top: 10%;
  padding-left: 15%;
  
}

.hero-content {
  
  max-width: 1450px;
  padding-top: 7%;
  padding-left: 9%; /* Τέρμα αριστερά */
  
}


.hero h1 {
  
  font-size: 4.1rem;
  
}

.hero p {
  
  font-size: 1.7rem;
  padding-left: 0.5rem; /* Δίνει την ελαφριά εσοχή που ζήτησες */
}


.hero-btn {
  font-size: 1.1rem;
}

/*About*/


.about-container {
  max-width: 1450px;
}

/*Quote*/

.quote-text {
  
  max-width: 1350px;
  
}

.quote-text h1 {
  
  font-size: 2.1rem;
  
}


/*Services*/

.services-container {
  max-width: 1450px;
  
}


/*Quote2*/

.quote2-text {
  
  max-width: 1350px;
  
}

.quote2-text h1 {
  font-size: 2.1rem;
  
}


/*Gallery*/

.gallery-custom-grid {
  
  max-width: 1400px;
  
}

/*Simple Background*/

.simple-background-section {
  
  height: 15vh;
  
}

/*Art*/

.art-text{
  
  font-size: 2.1rem; /* 2.3 me black */
  
}

.art-text p + p {
  
  font-size: 1.3rem;
}

/*Contact - Map*/

.contact-container {
  max-width: 1450px;
  gap: 50px;
}


.map-inner {
  max-width: 1000px;
  
}


.footer-container {
  max-width: 1450px;
  gap: 20px;
}


}

/* 1920px έως 2559px — Full HD & QHD */
@media (min-width: 1920px) and (max-width: 2559px) {
  /* Συνήθως monitors 22–27’’ */

  /* Header */


/* Εσωτερικό container */
.container {
  max-width: 1550px;
}


.logo h1 {
  font-size: 2rem;
}

.logo p {
  
  font-size: 1.4rem;
  
}

/* Navigation */
  .main-nav a {
  
  font-size: 1.2rem;
}



/* Hero */


.hero {
  
  height: 100vh;
  padding-top: 10%;
  padding-left: 15%;
  
}

.hero-content {
  
  max-width: 1550px;
  padding-top: 7%;
  padding-left: 9%; /* Τέρμα αριστερά */
  
}


.hero h1 {
  
  font-size: 4.2rem;
  
}

.hero p {
  
  font-size: 1.8rem;
  padding-left: 0.5rem; /* Δίνει την ελαφριά εσοχή που ζήτησες */
}


.hero-btn {
  font-size: 1.2rem;
}

/*About*/


.about-container {
  max-width: 1550px;
}

/*Quote*/


.quote-section {
  
  height: 33vh; /* πιο μικρό από το hero */
}  

.quote-text {
  
  max-width: 1450px;
  
}

.quote-text h1 {
  
  font-size: 2.2rem;
  
}


/*Services*/

.services-container {
  max-width: 1550px;
  
}


/*Quote2*/


.quote2-section {
  
  height: 33vh; /* πιο μικρό από το hero */
} 

.quote2-text {
  
  max-width: 1450px;
  
}

.quote2-text h1 {
  font-size: 2.2rem;
  
}


/*Gallery*/

.gallery-custom-grid {
  
  max-width: 1500px;
  
}

/*Simple Background*/

.simple-background-section {
  
  height: 15vh;
  
}

/*Art*/

.art-text{
  
  font-size: 2.2rem; /* 2.3 me black */
  
}

.art-text p + p {
  
  font-size: 1.4rem;
}

/*Contact - Map*/

.contact-container {
  max-width: 1550px;
  gap: 80px;
}


.map-inner {
  max-width: 1100px;
  
}


/* Footer */

.footer-container {
  max-width: 1550px;
  gap: 20px;
}




}

@media (min-width: 2560px) and (max-width: 3839px) {
  /* High-end monitors ή MacBook Pro 16" */

  /* Header */


/* Εσωτερικό container */


.site-header {
  width: 100%;
  height: 10vw;
 
}
.container {
  max-width: 1900px;
}


.logo h1 {
  font-size: 2.2rem;
  margin-top: 50px;
}

.logo p {
  font-size: 1.5rem;
}

/* Navigation */
  .main-nav a {
  margin: 25px;
  font-size: 1.3rem;
  display: inline-block; 
  margin-top: 65px;
  }  



/* Hero */


.hero {
  
  height: 90vh;
  padding-top: 9%;
  padding-left: 15%;
  
}

.hero-content {
  
  max-width: 1950px;
  padding-top: 5%;
  padding-left: 12%; /* Τέρμα αριστερά */
  
}


.hero h1 {
  
  font-size: 4.5rem;
  
}

.hero p {
  
  font-size: 2rem;
  padding-left: 0.5rem; /* Δίνει την ελαφριά εσοχή που ζήτησες */
}



.hero-btn {
  font-size: 1.2rem;
}

.underline {
  margin-top: 0;
  height: 1.5px;
  width: 100%;
}

/*About*/


.about-container {
  max-width: 1950px;
}

/* About */


.about-text h2 {
  font-size: 2.3rem;
  
}

.about-text p {
  
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}



.about-image {
  width: 100%;
  max-width: 550px;
}



/*Quote*/


.quote-section {
  height: 28vh; /* πιο μικρό από το hero */
}  

.quote-text {
  max-width: 1950px;
}

.quote-text h1 {
  font-size: 2.4rem;
}


/*Services*/

.services-container {
  max-width: 1950px;
  
}



.services-title {
  margin-bottom: 70px;
}

.services-title h2 {
  font-size: 2.3rem;
}

.icon-wrapper {
  font-size: 2.9rem;
}


.service-card h3 {
  font-size: 1.7rem;
}

.service-card p {
  font-size: 1.2rem;
}

/* Μεγάλη κάρτα (πάνω) */
.service-card.large {
  width: 100%;
  min-height: 300px;
}


/* Λίστα σε μεγάλη κάρτα */
.service-card ul {
  font-size: 1.2rem;
}

/* Δύο μικρές κάρτες δίπλα-δίπλα */
.service-card-pair {
  gap: 30px;
}

/*Quote2*/

.quote2-section {
  
  height: 28vh; /* πιο μικρό από το hero */
} 

.quote2-text {
  
  max-width: 1950px;
  
}

.quote2-text h1 {
  font-size: 2.4rem;
  
}


/*Gallery*/


.gallery-custom-grid {
  
  max-width: 1950px;
  
}

.gallery-section h2 {
  font-size: 2.3rem;
}


/*Simple Background*/

.simple-background-section {
  
  height: 15vh;
  
}

/*Art*/

.art-container video {
  
  object-position: center 15%; /* To ;allo 35% */
 
}

.art-text{
  
  font-size: 2.4rem; /* 2.3 me black */
  
}

.art-text p + p {
  
  font-size: 1.5rem;
}

/*Contact - Map*/

.contact-container {
  max-width: 1950px;
  gap: 100px;
}


.map-inner {
  max-width: 1300px;
}



.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}


.contact-info-form p {
  font-size: 1.2rem;
}


.contact-info-form input,
.contact-info-form textarea {
  font-size: 1.2rem;
}

.contact-info-form button {
  font-size: 1.2rem;
}

.contact-details-card h3 {
  font-size: 1.25rem;
}

.contact-details-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.contact-details-card li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* Footer */

.footer-container {
  max-width: 1900px;
  gap: 20px;
}


/* Footer */

.footer {
  font-size: 1rem;
}

.footer h3,
.footer h4 {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  color: #111;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.footer p,
.footer a {
  font-size: 1rem;

}



}

/* 3840px και πάνω — 4K & Cinema 4K */
@media (min-width: 3840px) {
  /* 4K Screens */

  /* Header */
  .site-header {
    width: 100%;
    height: 10vw;
  }

  .container {
    max-width: 2500px;
  }

  .logo h1 {
    font-size: 3.2rem;
    margin-top: 60px;
  }

  .logo p {
    font-size: 2.2rem;
  }

  /* Navigation */
  .main-nav a {
    margin: 35px;
    font-size: 1.7rem;
    display: inline-block;
    margin-top: 75px;
  }

  /* Hero */
  .hero {
    height: 85vh;
    padding-top: 8%;
    padding-left: 12%;
  }

  .hero-content {
    max-width: 2500px;
    padding-top: 4%;
    padding-left: 10%;
  }

  .hero h1 {
    font-size: 5.7rem;
  }

  .hero p {
    font-size: 2.6rem;
    padding-left: 0.5rem;
  }

  .hero-btn {
    font-size: 1.7rem;
  }

  .underline {
    margin-top: 0;
    height: 2px;
    width: 100%;
  }

  /* About */
  .about-container {
    max-width: 2500px;
  }

  .about-text h2 {
    font-size: 3.2rem;
  }

  .about-text p {
    font-size: 1.4rem;
  }

  .about-image {
    max-width: 700px;
  }

  /* Quote */
  .quote-section {
    height: 30vh;
  }

  .quote-text {
    max-width: 2500px;
  }

  .quote-text h1 {
    font-size: 3.2rem;
  }

  /* Services */
  .services-container {
    max-width: 2500px;
  }

  .services-title {
    margin-bottom: 80px;
  }

  .services-title h2 {
    font-size: 3.2rem;
  }

  .icon-wrapper {
    font-size: 3.7rem;
  }

  .service-card h3 {
    font-size: 2.2rem;
  }

  .service-card p {
    font-size: 1.4rem;
  }

  .service-card.large {
    min-height: 350px;
  }

  .service-card ul {
    font-size: 1.4rem;
  }

  .service-card-pair {
    gap: 40px;
  }

  /* Quote2 */
  .quote2-section {
    height: 30vh;
  }

  .quote2-text {
    max-width: 2500px;
  }

  .quote2-text h1 {
    font-size: 3.2rem;
  }

  /* Gallery */
  .gallery-custom-grid {
    max-width: 2500px;
  }

  .gallery-section h2 {
    font-size: 3.2rem;
  }

  /* Simple Background */
  .simple-background-section {
    height: 18vh;
  }

  /* Art */
  .art-container video {
    object-position: center 15%;
  }

  .art-text {
    font-size: 3rem;
  }

  .art-text p + p {
    font-size: 2rem;
  }

  /* Contact */
  .contact-container {
    max-width: 2500px;
    gap: 120px;
  }

  .map-inner {
    max-width: 1600px;
  }

  .contact h2 {
    font-size: 3rem;
    margin-bottom: 60px;
  }

  .contact-info-form p,
  .contact-info-form input,
  .contact-info-form textarea,
  .contact-info-form button {
    font-size: 1.4rem;
  }

  .contact-details-card h3 {
    font-size: 1.8rem;
  }

  .contact-details-card li {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  /* Footer */
  .footer-container {
    max-width: 2500px;
    gap: 30px;
  }

  .footer {
    font-size: 1.3rem;
  }

  .footer h3,
  .footer h4 {
    font-size: 1.5rem;
  }

  .footer p,
  .footer a {
    font-size: 1.3rem;
  }
}







/*    ANIMATIONS   ---------------    ANIMATIONS    ---------------   */



@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero h1,
.hero p,
.hero .underline,
.hero .hero-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.hero h1 { animation-delay: 0.4s; }
.hero p { animation-delay: 0.6s; }
.hero .underline { animation-delay: 0.8s; }
.hero .hero-btn { animation-delay: 1s; }




/* ----------- CSS SCRIPTS --------------*/




.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s ease-out;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

