/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100%; font-family: "Inter", sans-serif; color: #fff; }
body { background: #0a1628; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ====================================
   PAGE LOADER
   ==================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.loader-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease forwards 0.2s;
}
.loader-bar {
  width: clamp(180px, 30vw, 280px);
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease forwards 0.5s;
}
.loader-progress {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  animation: loaderFill 2s ease-in-out forwards 0.6s;
}
@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderFill {
  0% { width: 0%; }
  30% { width: 45%; }
  60% { width: 70%; }
  80% { width: 88%; }
  100% { width: 100%; }
}

/* ====================================
   HERO — FULL SCREEN CINEMATIC
   ==================================== */
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background slideshow images — fullscreen crossfade */
.images { position: absolute; inset: 0; z-index: 1; }
.img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.img.active { opacity: 1; }
.img img {
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(5, 12, 30, 0.6) 0%,
    rgba(5, 12, 30, 0.15) 35%,
    rgba(5, 12, 30, 0.15) 55%,
    rgba(5, 12, 30, 0.75) 100%
  );
  pointer-events: none;
}

/* Hero content — over everything */
.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

/* === TOP NAV === */
.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5em;
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 12, 30, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.hero-header.scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.3);
  border-bottom-color: rgba(255,255,255,0.08);
}
.site-logo h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  transition: text-shadow 0.5s ease;
}
.hero-header.scrolled .site-logo h1 {
  text-shadow: none;
}
.nav {
  display: flex;
  gap: 2.5em;
}
.nav a {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav a:hover::after, .nav a.nav-active::after {
  width: 100%;
  left: 0;
}
.nav a:hover, .nav a.nav-active {
  color: #fff;
}

/* Mobile menu btn */
.menu-btn {
  display: none;
  z-index: 60;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 11px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition: background 0.3s ease;
}
.menu-btn:hover { background: rgba(255,255,255,0.2); }
.menu-btn span { display: block; width: 22px; height: 1.5px; background: #fff; border-radius: 2px; transition: transform 0.3s ease; }

/* Mobile menu overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(5, 12, 30, 0.97); backdrop-filter: blur(20px);
  z-index: 200; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.8em; opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.mobile-menu.active { display: flex; opacity: 1; pointer-events: all; }
.menu-close {
  position: absolute; top: 1.5em; right: 1.5em;
  background: none; border: none; color: #fff;
  font-size: 36px; cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-close:hover { transform: rotate(90deg); opacity: 0.7; }
.mobile-link {
  font-family: "Playfair Display", serif;
  font-size: 32px; font-style: italic;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.mobile-link:hover { color: #fff; letter-spacing: 3px; }

/* === HERO CENTER — BIG TITLE === */
.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 2em 0;
  position: relative;
  z-index: 6;
}

/* Blur backdrop behind center text */
.hero-center::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 85%);
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(5, 12, 30, 0.45) 0%,
    rgba(5, 12, 30, 0.25) 40%,
    transparent 70%
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35), 0 0 80px rgba(5, 12, 30, 0.3);
  margin-bottom: 0.12em;
}
.hero-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  margin-bottom: 1.8em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.btn-book {
  display: inline-block;
  padding: 0.9em 3em;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.05);
  opacity: 1 !important;
}
.btn-book:hover {
  background: #fff;
  color: #0a1628;
  border-color: #fff;
  letter-spacing: 4px;
}

/* === LEFT CARDS (glassmorphism) === */
.hero-cards {
  position: absolute;
  left: 5.5em;
  bottom: 3.5em;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  z-index: 7;
}
.hero-card {
  width: 200px;
  display: flex;
  gap: 0.7em;
  align-items: center;
  padding: 0.5em;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.hero-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-card-img {
  width: 55px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.card-title {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
}
.card-sub {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* === BOTTOM STATS === */
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 3.5em 2.5em;
  gap: 2em;
  z-index: 6;
}
.hero-stats {
  display: flex;
  gap: 2.5em;
  padding: 1.2em 2em;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1;
}
.stat-num small {
  font-size: 0.5em;
  vertical-align: super;
}
.stat-txt {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3em;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 0.5em;
  opacity: 0; animation: fadeIn 1s ease forwards; animation-delay: 1.5s;
}
.scroll-indicator span { font-family: "Inter", sans-serif; font-size: 8px; font-weight: 300; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.3); }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.6); animation: scrollDown 2s ease infinite; animation-delay: 2s; }
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ====================================
   SECTIONS — unified premium design
   ==================================== */
.section { position: relative; padding: 7em 2em; overflow: hidden; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500; font-style: italic;
  text-align: center; margin-bottom: 0.4em; color: #fff;
}
.section-subtitle {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  max-width: 560px;
  margin: 0 auto 3em;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

/* Decorative line under section title */
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1.5px;
  background: rgba(255,255,255,0.25);
  margin: 0.8em auto 0;
}

/* Features */
.features { background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 100%); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5em; }
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5em 1.8em;
  text-align: center;
  transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.feature-icon { width: 44px; height: 44px; margin: 0 auto 1.4em; color: rgba(255,255,255,0.5); transition: color 0.4s ease; }
.feature-card:hover .feature-icon { color: rgba(255,255,255,0.8); }
.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px; font-weight: 500; font-style: italic;
  margin-bottom: 0.7em; color: #fff;
}
.feature-card p { font-family: "Inter", sans-serif; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.45); font-weight: 300; letter-spacing: 0.2px; }

/* Gallery */
.gallery { background: #0d1f3c; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 1em; }
.gallery-item {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; width: 100%;
  padding: 1.5em;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay span { font-family: "Playfair Display", serif; font-size: 18px; font-style: italic; color: #fff; }

/* Contact */
.contact { background: linear-gradient(180deg, #0d1f3c 0%, #0a1628 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4em; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2em; }
.contact-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px; font-style: italic; font-weight: 500;
  color: rgba(255,255,255,0.8); margin-bottom: 0.4em;
}
.contact-item p { font-family: "Inter", sans-serif; font-size: 15px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.6; letter-spacing: 0.2px; }
.social-links { display: flex; gap: 1.2em; }
.social-links a {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45);
  padding: 0.5em 1.2em;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.social-links a:hover { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }
.contact-form { display: flex; flex-direction: column; gap: 1em; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1em 1.2em;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; color: #fff;
  font-family: "Inter", sans-serif; font-size: 14px;
  outline: none;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.25); font-weight: 300; font-style: italic; letter-spacing: 0.3px; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  padding: 1em 2.5em; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0;
  font-family: "Inter", sans-serif; font-size: 11px; font-weight: 300;
  text-transform: uppercase; letter-spacing: 4px;
  cursor: pointer; transition: all 0.4s ease; align-self: flex-start;
}
.btn-submit:hover { background: #fff; color: #0a1628; border-color: #fff; letter-spacing: 4px; }
.form-demo-note {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-top: 0.5em;
}

/* Footer */
.footer {
  position: relative; background: #050c1a;
  padding: 3.5em 2em;
  border-top: 1px solid rgba(255,255,255,0.04);
  z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px; font-weight: 500; font-style: italic;
  margin-bottom: 0.3em;
}
.footer-logo p { font-family: "Playfair Display", serif; font-size: 14px; font-style: italic; font-weight: 400; color: rgba(255,255,255,0.25); margin-bottom: 1.8em; letter-spacing: 0.5px; }
.footer-links { display: flex; justify-content: center; gap: 2.5em; margin-bottom: 2em; }
.footer-links a {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 2px;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #fff; }
.footer-bottom p { font-family: "Inter", sans-serif; font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.15); letter-spacing: 1px; }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
  .hero-header { padding: 0 2.5em; }
  .hero-card { width: 180px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .hero-header { padding: 0 1.5em; }
  .hero-cards { display: none; }
  .hero-title { font-size: clamp(48px, 14vw, 100px); }
  .hero-bottom { padding: 0 1.5em 2em; justify-content: space-between; }
  .hero-stats { gap: 1.8em; padding: 1em 1.5em; }
  .stat-num { font-size: clamp(24px, 5vw, 36px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.large { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3em; }
  .section { padding: 5em 1.5em; }
}

@media (max-width: 600px) {
  .hero-header { padding: 0 1em; height: 60px; }
  .hero-center { padding-top: 60px; }
  .hero-title { font-size: clamp(40px, 16vw, 80px); letter-spacing: 0.04em; }
  .hero-tagline { font-size: 14px; letter-spacing: 1px; }
  .hero-sub { font-size: 10px; letter-spacing: 3px; }
  .btn-book { padding: 0.8em 2.2em; font-size: 11px; }
  .hero-bottom { flex-direction: column; align-items: center; gap: 1.5em; }
  .hero-stats { gap: 1.5em; padding: 0.8em 1.2em; border-radius: 12px; }
  .stat-num { font-size: clamp(22px, 7vw, 32px); }
  .stat-txt { font-size: 9px; }
  .scroll-indicator { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 1.2em; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.large, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .section { padding: 4em 1.2em; }
  .social-links { flex-wrap: wrap; gap: 0.8em; }
  .footer-links { flex-direction: column; align-items: center; gap: 0.8em; }
}
