body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      color: #000;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0px 25px;
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    header .logo {
      font-size: 32px;
      font-weight: bold;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
      font-size: 23px;
    }
    nav a {
      text-decoration: none;
      color: #333;
      position: relative;
    }
    nav a::after {
      content: "";
      display: block;
      width: 0;
      height: 3px;
      background: linear-gradient(to right, #cc6600, #ff9900);
      transition: width 0.3s;
      position: absolute;
      bottom: -5px;
      left: 0;
    }
    nav a:hover::after {
      width: 100%;
    }
    .hero {
      position: relative;
      margin-top: -25px;
    }
    .hero img {
      width: 100%;
      height: 75vh;
      object-fit: cover;
    }
    .hero-text {
  position: absolute;
  bottom: 5%;
  right: 2%;
  font-size: 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold;
  background: linear-gradient(45deg, #7e4a35, #d1a255);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: right;
  line-height: 1.2;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
    section {
      padding: 25px 20px;
      text-align: center;
    }
    #about {
      margin-top: -50px;
      margin-bottom: 20px;
    }
    #about h2, .why-choose h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      font-weight: 400;
      letter-spacing: 1px;
      color: #000;
      background-color: #f5f5f5;
      display: inline-block;
      padding: 10px 20px;
      border-bottom: 4px solid;
      border-image: linear-gradient(to right, #6a0dad, #cc9900) 1;
    }
    #services {
      background-color: #f5f5f5;
    }
    #services h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      font-weight: 400;
      letter-spacing: 1px;
      color: #000;
      display: inline-block;
      padding-bottom: 5px;
      border-bottom: 4px solid;
      border-image: linear-gradient(to right, #6a0dad, #cc9900) 1;
    }
    #about p {
      font-family: 'Playfair Display', serif;
      font-size: 23px;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .feature h3 {
      display: inline-block;
      border-bottom: 3px solid;
      border-image: linear-gradient(to right, #cc6600, #ff9900) 1;
      padding-bottom: 5px;
      font-size: 25px;
      font-weight: 600;
    }
    .feature p {
      font-family: 'Playfair Display', serif;
      font-size: 21px;
      max-width: 300px;
      margin: 0 auto;
      line-height: 1.6;
      text-align: center;
    }
    .service-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .service {
      cursor: pointer;
    }
    .service img {
      width: 100%;
      height: 310px;
      object-fit: cover;
      border-radius: 8px;
    }
    .service p {
      max-width: 600px;
      margin: 10px auto;
      text-align: left;
      line-height: 1.6;
      text-indent: 20px;
      font-size: 21px;
      color: #000;
    }
    .service p.title {
      display: inline-block;
      border-bottom: 3px solid;
      border-image: linear-gradient(to right, #cc6600, #ff9900) 1;
      padding-bottom: 5px;
      text-indent: 0;
      text-align: center;
      font-weight: 600;
      color: #000;
    }
    .contact {
      background: black;
      color: white;
    }
    .contact form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 500px;
      margin: 0 auto;
      margin-top: 20px;
    }
    .contact input, .contact select, .contact textarea, .contact button {
      padding: 10px;
      border: none;
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
    }
    .contact button {
      background: white;
      color: black;
      font-weight: bold;
      cursor: pointer;
    }
    .burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}

header .logo img {
  height: 160px; /* Ύψος που θες για το Desktop */
}


@media screen and (max-width: 768px) {
  nav ul.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    z-index: 1001;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 18px;
  }

  .service-content ul {
    font-size: 16px;
  }

  .hero img {
    height: 15vh;
    
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service img {
    height: 150px;
  }

  .service p {
    font-size: 14px;
    text-align: center;
    padding: 0 5px;
  }

  .service p.title {
    font-size: 15px;
  }

  header .logo img {
    height: 80px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    display: none;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    border-top: 1px solid #ccc;
    padding: 10px 0;
  }

  nav ul.show {
    display: flex;
  }

  .burger {
    display: flex;
  }

  nav a {
    font-size: 18px;
    padding: 10px;
  }

   #about h2,
   #services h2,
   .why-choose h2 {
    font-size: 21px;
  }

  .short-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Πόσες γραμμές θα δείχνει αρχικά */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .read-more-btn {
    display: inline-block;
    margin: 5px 0;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    background: #cc6600;
    color: #fff;
    border: none;
    border-radius: 4px;
  }
}

@media screen and (min-width: 769px) {
  .read-more-btn {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  nav ul.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    z-index: 1001;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 18px;
  }

  .service-content ul {
    font-size: 16px;
  }

  header .logo img {
    height: 130px; /* ή όσο μικρό θέλεις, π.χ. 50px */
  }

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

@media screen and (max-width: 768px) {
  nav ul.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    z-index: 1001;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 18px;
  }

  .service-content ul {
    font-size: 16px;
  }

  header {
    padding: 0px 20px 0px 1px;
  }
}

@media screen and (max-width: 768px) {
  nav ul.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    z-index: 1001;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 18px;
  }

  .service-content ul {
    font-size: 16px;
  }

  #about p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 10px;
    text-align: justify;
  }
  .why-choose h2 {
  font-size: 22px;
  padding: 8px 16px;
  background-color: #f5f5f5;
  border-bottom: 4px solid;
  border-image: linear-gradient(to right, #6a0dad, #cc9900) 1;
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
}

.feature h3 {
  font-size: 18px; /* ΤΙΤΛΟΣ – π.χ. Χρόνια εμπειρίας */
}

.feature p {
  font-size: 17px;  /* ΚΕΙΜΕΝΑΚΙ από κάτω */
  padding: 0 5px;
  line-height: 1.4;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* πιο στενές */
  gap: 1px; /* ↓ από 30px */
  margin-top: 2px; /* ↓ από πιθανό 40px */
}

.feature {
  margin-top: 0; /* εξαφανίζει έξτρα αποστάσεις */
  padding: 5px;   /* ελαφρύ padding για να μην ακουμπάνε */
}

}

@media screen and (max-width: 768px) {
  .service-block img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto 20px auto;
  }

  @media screen and (max-width: 768px) {
  .service-block {
    display: flex;
    flex-direction: column !important;
  }

  .service-block img {
    order: -1 !important;
    width: 100% !important;
    max-width: 450px;
    height: auto;
    margin-bottom: 15px;
  }

  .site-footer {
  text-align: center;
  font-size: 14px;
  padding: 20px 0 10px;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #6a0dad, #cc9900) 1;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
}

}

.footer-inner {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

.footer-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #cc6600, #996633); /* Χρυσοκαφέ */
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  body.index-page .background {
    background-image: url(images/index-mobile-v2.png?v=2);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100dvh;
    position: relative;
  }

  body.index-page .button-container {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
	padding-bottom: env(safe-area-inset-bottom);
  }

  body.index-page .discover-button {
    padding: 12px 24px;
    font-size: 16px;
    background: linear-gradient(to right, #a55eea, #f7b731);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
}
