@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #1a1a1a;
  background: #fafafa;
  text-transform: uppercase;
}

input,
button,
select,
textarea {
  font-family: inherit;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #6e2ea2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: #f7efff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #ffcb47;
}

.home-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.home-site-header {
  padding: 22px 0;
}

.home-nav {
  justify-self: start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  gap: 36px;
}

.home-nav a {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.home-logo-link {
  justify-self: center;
}

.home-logo-date {
  height: 112px;
  width: auto;
  max-width: 420px;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.header-book-now {
  padding: 11px 26px;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
}

.home-header-inner:not(.has-desktop-cta) .header-book-now {
  display: none;
}

.mobile-nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.mobile-nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff8f1;
  border-radius: 2px;
}

.home-header-inner.has-mobile-menu.menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.home-header-inner.has-mobile-menu.menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.home-header-inner.has-mobile-menu.menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section - Full screen video */
.hero {
  position: relative;
  width: 100%;
  height: calc(100dvh - 210px);
  min-height: 560px;
  background: #000;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000 url('video/backup-image.png') center center / cover no-repeat;
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Villa Options Section */
.villa-options {
  padding: 100px 20px;
  background: #ff6a00;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 2.8rem;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff8f1;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255, 248, 241, 0.92);
  margin: 0;
  font-weight: 400;
}


.filters-wrap {
  max-width: 1000px;
  margin: 0 auto 28px;
}

.filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #7b3fa6;
  background: #fff;
  color: #1a1a1a;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.filters-btn:hover {
  background: #f5effa;
}

.filters-btn svg {
  width: 16px;
  height: 16px;
  stroke: #7b3fa6;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.filters-panel {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid #e7dcf2;
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 28px;
}

.filters-panel[hidden] {
  display: none;
}

.filter-group h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #1a1a1a;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #2f2f2f;
}

.filter-group input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #bbbbbb;
  border-radius: 4px;
  background: #fff;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.filter-group input[type="checkbox"]:checked {
  background: #7b3fa6;
  border-color: #7b3fa6;
}

.filter-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.villas-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.filters-empty {
  max-width: 1000px;
  margin: 16px auto 0;
  text-align: center;
  color: #5a2d7d;
  font-size: 1.2rem;
  font-weight: 500;
}

.villa-option {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.villa-option:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.villa-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.villa-option:hover img {
  transform: scale(1.08);
}

.villa-option-overlay {
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 63, 166, 0.8) 0%, rgba(90, 45, 125, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
}

.villa-option:hover .villa-option-overlay {
  opacity: 1;
}

.villa-option-content {
  width: 100%;
}

.villa-option-overlay h2 {
  font-size: 2rem;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.villa-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 12px;
  font-weight: 500;
}

.villa-price {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #ff8a00;
  text-align: center;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.price-label {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 2px;
  opacity: 0.92;
}

.price-value {
  display: block;
  margin-top: 4px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none;
}

.villa-cta {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.villa-option:hover .villa-cta {
  opacity: 1;
  transform: translateY(0);
}

.flights-teaser {
  padding: 70px 20px 40px;
  background: #ff6a00;
}

.flight-section-header {
  margin-bottom: 36px;
}

.flight-section-header h1 {
  color: #fff8f1;
}

.flight-section-header .section-subtitle {
  color: rgba(255, 248, 241, 0.92);
}

.flights-teaser-card {
  position: relative;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.flights-teaser-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.flights-teaser-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62));
  color: #fff;
}

.flights-teaser-overlay h2 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.7px;
}

.flights-teaser-cta {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
}

/* Villa Detail Page */
.villa-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  text-align: left;
  padding: 20px;
}

.villa-hero h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 2px;
}

.villa-hero-overlay {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(90deg, rgba(0,0,0,0.25), rgba(0,0,0,0.15));
  border-radius: 12px;
}

.villa-hero-left,
.villa-hero-center,
.villa-hero-right {
  flex: 1;
}

.villa-hero-left h1{margin:0;font-size:2.4rem}
.villa-meta{display:flex;gap:18px;margin-top:10px;align-items:center}
.meta-item{display:inline-flex;gap:8px;align-items:center;color:#fff;font-weight:600}
.meta-icon{width:24px;height:24px;filter:brightness(0) invert(1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.villa-hero-center {
  display: flex;
  justify-content: center;
}
.villa-hero-right{display:flex;align-items:center;justify-content:flex-end;gap:12px}

.hero-price {
  margin: 0;
  color: #ff8a00;
  text-align: center;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-price-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.8px;
}

.hero-price-value {
  display: block;
  margin-top: 3px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: none;
}

.btn-book{background:#7b3fa6;color:#fff;padding:12px 22px;border-radius:28px;text-decoration:none;font-weight:700;box-shadow:0 6px 18px rgba(123,63,166,0.28);transition:transform .2s}
.btn-book:hover{transform:translateY(-3px);background:#5a2d7d}

.villa-detail {
  padding: 80px 20px;
}

.villa-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 60px 0;
}

.gallery-item {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-description {
  max-width: 800px;
  margin: 40px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.villa-text-area {
  max-width: 900px;
  margin: 24px auto 30px;
  padding: 22px 24px;
  border: 1px solid #e8ddf2;
  border-left: 4px solid #7b3fa6;
  border-radius: 10px;
  background: #ffffff;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #303030;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #7b3fa6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.back-link:hover {
  color: #5a2d7d;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
}

.lightbox.hidden {
  display: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.lb-btn {
  position: fixed;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  padding: 10px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.lb-btn:hover {
  opacity: 0.7;
}

#lb-close {
  top: 18px;
  right: 18px;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

#lb-prev {
  left: 18px;
}

#lb-next {
  right: 18px;
}

/* Footer */
.site-footer {
  background: #6e2ea2;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 0;
}

.site-footer p {
  margin: 0;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: calc(100dvh - 170px);
    min-height: 430px;
  }

  .filters-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .villa-options h1 {
    font-size: 2.2rem;
  }

  .villas-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .villa-option {
    height: 400px;
  }

  .villa-option-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(123, 63, 166, 0.52) 0%, rgba(90, 45, 125, 0.52) 100%);
  }

  .villa-price {
    left: auto;
    top: auto;
    right: 20px;
    bottom: 20px;
    transform: none;
    text-align: right;
    z-index: 2;
  }

  .villa-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .header-inner {
    gap: 20px;
  }

  .villa-hero h1 {
    font-size: 2rem;
  }

  .villa-hero-overlay {
    gap: 10px;
  }

  .hero-price-value {
    font-size: 1.6rem;
  }

  .villa-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .villa-text-area {
    font-size: 1.05rem;
    padding: 18px 18px;
  }

  .flights-teaser-card img {
    height: 340px;
  }

  .flights-teaser-overlay h2 {
    font-size: 2rem;
  }

  .home-logo-date {
    height: 78px;
    max-width: 290px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: calc(100dvh - 150px);
    min-height: 360px;
  }

  .logo {
    height: 40px;
  }

  .villa-options h1 {
    font-size: 1.8rem;
  }

  .villas-showcase {
    grid-template-columns: 1fr;
  }

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

  .villa-option-overlay h2 {
    font-size: 1.8rem;
  }

  .villa-hero-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .villa-hero-left,
  .villa-hero-center,
  .villa-hero-right {
    width: 100%;
    flex: unset;
  }

  .villa-hero-center {
    justify-content: flex-start;
  }

  .hero-price {
    text-align: left;
  }

  .price-value {
    font-size: 2rem;
  }

  .villa-price {
    right: 16px;
    bottom: 16px;
  }
}
/* Countdown */
.countdown-banner {
  background: #ff6a00;
  padding: 6px 20px 7px;
  border: 0;
}

.countdown-inner {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.countdown-label {
  display: none;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: end;
}

.time-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.time-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.time-unit {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .countdown-banner {
    padding: 5px 12px 6px;
  }

  .countdown-inner {
    max-width: 320px;
  }

  .countdown-grid {
    gap: 6px;
  }

  .time-value {
    font-size: 24px;
  }

  .time-unit {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .countdown-inner {
    max-width: 300px;
  }

  .time-value {
    font-size: 21px;
  }

  .time-unit {
    font-size: 9px;
    letter-spacing: 0.6px;
  }
}



.book-now-row,
.villa-book-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.btn-book-now {
  display: inline-block;
  background: #7b3fa6;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 44px;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(123, 63, 166, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-book-now:hover {
  background: #5a2d7d;
  transform: translateY(-2px);
}

.villa-hero-right .btn-book-now {
  padding: 12px 34px;
}

@media (max-width: 768px) {
  .btn-book-now {
    padding: 12px 30px;
  }
}

.flights-page {
  padding: 56px 20px 90px;
  background: #fafafa;
}

.flights-panel {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.flights-hero-image {
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.flights-content {
  text-align: center;
  margin-top: 28px;
}

.flights-content h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.6px;
}

@media (max-width: 768px) {
  .flights-panel {
    padding: 16px;
  }

  .flights-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 960px) {
  .home-header-inner.has-mobile-menu {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "toggle logo actions"
      "menu menu menu";
    align-items: center;
    gap: 6px 8px;
  }

  .home-site-header .wrap {
    padding: 0 10px;
  }

  .home-header-inner.has-mobile-menu .mobile-nav-toggle {
    grid-area: toggle;
    display: inline-flex;
    justify-self: start;
    width: 40px;
    height: 36px;
  }

  .home-header-inner.has-mobile-menu .home-logo-link {
    grid-area: logo;
    justify-self: center;
  }

  .home-header-inner.has-mobile-menu .home-logo-date {
    height: 48px;
    max-width: 128px;
  }

  .home-header-inner.has-mobile-menu .header-actions {
    grid-area: actions;
    justify-self: end;
    display: inline-flex;
  }

  .home-header-inner.has-mobile-menu .header-book-now {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.35px;
    white-space: nowrap;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: none;
  }

  .home-header-inner.has-mobile-menu .home-nav {
    grid-area: menu;
    display: none;
    width: 100%;
    gap: 14px;
    padding: 10px 0 2px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  .home-header-inner.has-mobile-menu.menu-open .home-nav {
    display: flex;
  }

  .home-header-inner.has-mobile-menu .home-nav a {
    font-size: 1rem;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 390px) {
  .home-header-inner.has-mobile-menu .home-logo-date {
    height: 44px;
    max-width: 114px;
  }

  .home-header-inner.has-mobile-menu .header-book-now {
    padding: 6px 8px;
    font-size: 0.62rem;
    letter-spacing: 0.25px;
  }
}








