body, html {
  margin: 0;
  padding: 0;
  font-family: 'ivypresto-display';
  color: white;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1 1 100%; /* Full width on small screens */
}

@media (min-width: 768px) {
  .column {
    flex: 1 1 45%; /* Side by side on larger screens */
  }
}


@font-face {
  font-family: 'ivypresto-display';
  src: url('http://tree.thinkvilla.gr/fonts/IvyPrestoDisplay/IvyPrestoDisplay-Regular.otf') format('otf');  
  font-weight: normal;
  font-style: normal;
}


.overlay {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.logo {
  font-size: 3rem;
  font-weight: 300;
  margin: 0;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 2px;
  max-width: 180px;
}

.logo .light {
  font-weight: 300;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  width: 100%;
}

.menu a,
.menu .dropdown-toggle,
.menu-item.half,
.subscribe-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border: 2px solid #fff;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 280px;
  width: 100%;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;	
}

.menu-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  transition: width 0.4s ease-in-out;
}

.menu-item:active::after,
.menu-item.selected::after {
  width: 100%;
}

.menu-icon {
  position: absolute;
  left: 0.2em;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.dropdown-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.75rem;
  width: 70%;
  max-width: 215px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.submenu.show {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.submenu a {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
}

.submenu a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-1 .menu-item,
.section-1 .dropdown-wrapper {
  margin-bottom: 1rem;
}

.section-2 {
  margin-top: 2.5rem;
}

.section-2 .menu-item {
  margin-bottom: 2rem;
}

.section-2::before {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.menu-item-row {
  display: flex;
  gap: 1rem;
  max-width: none;
  width: 100%;
  justify-content: space-between;
}

.menu-item.half {
  flex: 1;
  padding: 0.6rem 0.8rem;
  padding-left: 2.5rem;
}

.menu-item.half .menu-icon {
  left: 0.2rem;
  width: 26px;
  height: 26px;
}

.menu-item-row-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  width: 100%;
  margin-bottom: 1rem;
}

.enquiry-title-first {
  font-family: 'ivypresto-display';
  font-size: 1.7em;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 100px;
}

.enquiry-title {
  font-family: 'ivypresto-display';
  font-size: 1.7em;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.2rem;
  margin-top: auto;
  padding: 2rem;
}

.footer-icons a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
}

input[type="email"] {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 2px solid #fff;
  border-radius: 25px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .footer-icons {
    padding-bottom: 1rem;
  }
}

.menu-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* full viewport height */
  padding: 20px;
  text-align: center;
}

.menu-content {
  background: rgba(255, 255, 255, 0.1); /* optional frosted effect */
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}