@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

body, html {
  font-family: 'EB Garamond', serif;
}
* {
  margin: 0;
  padding: 0;
  font-family: 'EB Garamond', serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

/* Banner */
.banner {
  width: 100%;
  height: 100vh;
  background: url('') no-repeat center/cover;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  transition: background-color 0.3s ease, height 0.3s ease;
  z-index: 1001;
}

.navbar.scrolled {
  background-color: #1b3a2a;
  height: 80px;
}

.logo {
  width: 140px;
  max-width: 25vw;
  height: auto;
  cursor: pointer;
}

/* Desktop menu */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 2vw;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #1b3a2a;
}

/* Underline effect */
.navbar ul li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 3px;
  width: 0;
  background: #1b3a2a;
  transition: width 0.3s ease;
}

.navbar ul li:hover::after {
  width: 100%;
}

/* Menu toggle button (hamburger) */
.menu-toggle {
  display: none;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  color: white;
  background: none;
  border: none;
  z-index: 1100;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
    height: 60px;
    padding: 0 2vw;
    justify-content: space-between;
  }

  /* Hide menu by default */
  .navbar ul {
    position: fixed;
    top: 60px;  /* κάτω από navbar */
    left: 0; right: 0; bottom: 0;
    background-color: #1b3a2a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    display: none;
    padding: 0;
    margin: 0;
    z-index: 1500;
    overflow-y: auto;
  }

  /* Show menu when active */
  .navbar.active ul {
    display: flex;
  }

  .navbar ul li {
    margin: 0;
  }

  .navbar ul li a {
    font-size: 1.8rem;
    text-shadow: none;
  }

  .navbar ul li::after {
    display: none;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }
}
.navbar li#language-selector {
  all: revert;
  position: relative;
  display: inline-block;
  font-family: 'EB Garamond', serif;
  color: #ffffff;
}

.navbar li#language-selector select {
  all: unset;
  font-size: 1rem;
  padding: 6px 28px 6px 12px;
  background-color: transparent;
  color: #ffffff;

  border-radius: 6px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar li#language-selector select:hover {
  background-color: rgba(46, 204, 113, 0.1); /* ελαφρύ πράσινο */

  color: #1b3a2a;
}

.navbar li#language-selector select:focus {
  outline: 2px solid #000000;
}

.navbar li#language-selector::after {
  font-size: 12px;
  color: #000000;
  position: absolute;
  right: 22px;

  top: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  margin-bottom: 20px;
}



/* Banner content */
.content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 0 10px;
  max-width: 700px;
  z-index: 10;
}

.content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.content p {
  margin: 20px auto;
  font-weight: 300;
  line-height: 1.6rem;
  font-size: 1.2rem;
  max-width: 600px;
}

.content button {
  font-size: 1.1rem;
  width: 220px;
  padding: 15px 0;
  margin: 20px 10px;
  border-radius: 25px;
  font-weight: 700;
  border: 2px solid #1b3a2a;
  background: transparent;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.content button span {
  background: #1b3a2a;
  width: 0;
  height: 100%;
  border-radius: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s;
}

.content button:hover span {
  width: 100%;
}

.content button:hover {
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #1b3a2a;
  border-radius: 15px;
}

body {
  overflow-y: overlay;
}

/* Scroll to top button */
.up {
  background: #1b3a2a;
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 1100;
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.up.active {
  visibility: visible;
  opacity: 1;
}

.up i {
  color: #fff;
  font-size: 30px;
}

/* BETWEEN */
.rd {
  color: #1b3a2a;
  transition: 0.5s;
  cursor: pointer;
}

.rd:hover {
  transform: translateX(3%);
}

/* LAST */
.last {
  position: relative;
  background-image: url('source/bk.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.last div {
  text-align: center;
  color: black;
  padding: 0 20px;
}

.last div h1 {
  font-size: 35px;
  margin-bottom: 10px;
}

.last div button {
  font-size: 25px;
  width: 200px;
  padding: 15px 0;
  margin: 20px 10px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #1b3a2a;
  background: transparent;
  color: black;
  cursor: pointer;
  position: relative;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.last div button:hover {
  background-color: #1b3a2a;
  color: white;
}

/* Responsive typography */
@media (max-width: 1024px) {
  .content h1 {
    font-size: 3.5rem;
  }

  .last div h1 {
    font-size: 28px;
  }

  .last div button {
    font-size: 20px;
    width: 160px;
    padding: 12px 0;
  }
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1rem;
    max-width: 90vw;
  }

  .content button {
    width: 80vw;
  }

  .last {
    height: 300px;
  }

  .last div h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .content button {
    width: 90vw;
    margin: 10px auto;
  }

  .last {
    height: 250px;
  }

  .last div h1 {
    font-size: 20px;
  }

  .last div button {
    font-size: 18px;
    width: 140px;
  }
}


/* FOOTER */
.ftr-m {
    color: #e6e8ea;
    padding: 40px 30px 30px 30px;
    background: #1b3a2a;
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ftr-t {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.ftr-t img {
    width: 220px;
    max-width: 40vw;
    object-fit: contain;
}

.ftr-t ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.ftr-t ul li a {
    display: flex;
    align-items: center;
    color: #e6e8ea;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ftr-t ul li a i {
    font-size: 40px;
    margin-right: 15px;
}

.ftr-t ul li a:hover {
    color: #7dc47d;
}

.ftr-d {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 20px;
    gap: 30px;
}

.ftr-d div {
    width: 250px;
    max-width: 90vw;
}

.ftr-d div h3 {
    margin: 0 0 12px 0;
    color: #c7d4c7;
    font-weight: 700;
    
    letter-spacing: 1px;
    font-size: 20px;
}

.ftr-d div ul {
    margin: 0 0 0 25px;
    line-height: 28px;
}

.ftr-d div a {
    text-decoration: none;
    color: #e6e8ea;
    transition: color 0.3s ease;
}

.ftr-d div a:hover {
    color: #7dc47d;
}

.ftr-b {
    position: relative;
    padding: 15px 0 12px 0;
    width: 100%;
    text-align: center;
    color: #9aa69a;
    font-size: 16px;
    user-select: none;
}

.ftr-b h2 {
    position: absolute;
    top: 3px;
    color: #394b3d;
    transition: left 0.4s ease, color 0.4s ease;
    cursor: default;
    font-size: 30px;
    left: 0;
}

.ftr-b h2:hover {
    left: 20px;
    color: #7dc47d;
}

/* Extra responsive tweaks */
@media (max-width: 400px) {
    .navbar ul li a {
        font-size: 0.85rem;
    }
    .ftr-t ul li a {
        font-size: 16px;
    }
}




.blog-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

.blog-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.blog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.blog-row.right {
  flex-direction: row-reverse;
}

.blog-text {
  flex: 1;
  min-width: 300px;
}

.blog-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-text p {
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.read-more:hover {
  color: #005999;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  flex: 1;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel img.active {
  display: block;
  position: relative;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.carousel button.prev {
  left: 10px;
}

.carousel button.next {
  right: 10px;
}

@media (max-width: 768px) {
  .blog-row {
    flex-direction: column !important;
    text-align: center;
  }

  .carousel {
    height: 250px;
  }
}



.renovation-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.renovation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.renovation-block {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.renovation-block:hover {
  transform: translateY(-5px);
}

.renovation-block h2 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 20px;
}

.renovation-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .renovation-container {
    grid-template-columns: 1fr 1fr;
  }
}
 .section {
      padding: 60px 20px;
      text-align: center;
      background: linear-gradient(to right, #fff9f0, #ffe6cc);
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .mistake-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .mistake-box {
      flex: 1 1 220px;
      background-color: #fff;
      border-radius: 12px;
      padding: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s forwards;
      animation-delay: calc(var(--i) * 0.1s);
    }

    .mistake-box:hover {
      transform: translateY(-5px) scale(1.03);
      background-color: #ffe9c7;
      box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
    }

    .mistake-box strong {
      color: #ff7a00;
      font-size: 1.2rem;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      padding: 20px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(6px);
      background-color: rgba(0, 0, 0, 0.4);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px;
      border-radius: 10px;
      max-width: 600px;
      width: 90%;
      position: relative;
      animation: scaleIn 0.3s ease;
      max-height: 70vh;
      overflow-y: auto;
      font-family: 'EB Garamond', serif;
      color: #444;
      text-align: justify;
      line-height: 1.7;
      font-size: 1.1rem;
    }

    @keyframes scaleIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .close {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 24px;
      color: #666;
      cursor: pointer;
    }

    .close:hover {
      color: #000;
    }


    