
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; color: #26323b; background: #fff; line-height: 1.65; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, 92%); margin: 0 auto; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { color: #26323b; text-decoration: none; font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
.menu { display: flex; align-items: center; gap: 22px; }
.menu a { color: #26323b; font-size: 15px; font-weight: 700; text-decoration: none; }
.menu .pill { padding: 10px 17px; border-radius: 999px; background: #26323b; color: #fff; }
.lang { display: flex; gap: 8px; align-items: center; }
.lang a { border: 1px solid rgba(0,0,0,0.18); border-radius: 999px; padding: 7px 11px; font-size: 13px; }

.hero {
  min-height: 82vh;
  background: linear-gradient(rgba(20,31,40,0.42), rgba(20,31,40,0.42)), url('images/hero.jpg');
  background-size: cover; background-position: center;
  display: flex; align-items: center; color: #fff;
}
.el-hero { background: linear-gradient(rgba(20,31,40,0.42), rgba(20,31,40,0.42)), url('images/hero.jpg'); background-size: cover; background-position: center; }
.hero-content { max-width: 790px; }
.eyebrow {
  display: inline-block; margin-bottom: 16px; color: #e2b878;
  font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; font-size: 13px;
}
h1 { font-size: clamp(42px, 7vw, 78px); line-height: 1.02; letter-spacing: -2.2px; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.12; letter-spacing: -1.2px; margin-bottom: 22px; }
h3 { font-size: 22px; margin-bottom: 12px; }
p { font-size: 17px; color: #5d6871; }
.hero p, .page-hero p { color: rgba(255,255,255,0.88); font-size: 20px; margin-bottom: 30px; }

.buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-block; padding: 14px 24px; border-radius: 999px; text-decoration: none; font-weight: 800; transition: 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: #e2b878; color: #19242d; }
.secondary { background: #fff; color: #26323b; }
.dark { background: #26323b; color: #fff; }
.outline { border: 1px solid rgba(255,255,255,0.58); color: #fff; }

.section { padding: 92px 0; }
.muted { background: #f7f2ea; }
.grid-2 { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.feature-card, .card { background: #fff; padding: 34px; border-radius: 26px; box-shadow: 0 18px 48px rgba(0,0,0,0.08); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.list { list-style: none; margin-top: 16px; }
.list li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }

.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px; }
.amenities span { background: #fff; border-radius: 18px; padding: 18px; text-align: center; font-weight: 800; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.gallery a { min-height: 250px; border-radius: 22px; overflow: hidden; background: #d9d0c5; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: 0.25s ease; }
.gallery a:hover img { transform: scale(1.04); }

.gallery-preview { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 230px; gap: 16px; margin-top: 32px; }
.gallery-preview a { border-radius: 22px; overflow: hidden; background: #d9d0c5; }
.gallery-preview .large { grid-row: span 2; }
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; }

.page-hero { background: #26323b; color: #fff; padding: 92px 0; }
.page-hero p { max-width: 760px; }
.map {
  min-height: 380px; border-radius: 26px; background: #d9d0c5;
  display: flex; align-items: center; justify-content: center;
  color: #756c61; font-weight: 800; text-align: center; padding: 30px;
}

.cta { text-align: center; background: #26323b; color: #fff; }
.cta p { color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.footer { background: #16222c; color: #fff; padding: 44px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; }
.footer p { color: rgba(255,255,255,0.72); }

.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 9999;
  background: #25D366; color: #fff; text-decoration: none; font-weight: 900;
  border-radius: 999px; padding: 15px 20px; box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}
.note { margin-top: 18px; font-size: 15px; }

@media (max-width: 980px) {
  .menu { gap: 12px; }
  .menu a:not(.pill) { display: none; }
  .grid-2, .cards { grid-template-columns: 1fr; }
  .gallery, .amenities { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview { grid-template-columns: 1fr; }
  .gallery-preview .large { grid-row: span 1; }
}
@media (max-width: 560px) {
  h1 { font-size: 38px; }
  .gallery, .amenities { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 13px 16px; }
}


/* Mobile and lightbox improvements */
.mobile-menu-toggle {
  display: none;
  background: #26323b;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav { position: relative; }
  .mobile-menu-toggle { display: inline-block; }
  .menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 4%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .menu.open { display: flex; }
  .menu a:not(.pill) { display: inline-block; }
  .lang { margin-top: 6px; }
  .hero { min-height: 72vh; }
  .hero-content { padding: 70px 0; }
}

@media (max-width: 560px) {
  body { line-height: 1.55; }
  .section { padding: 64px 0; }
  .page-hero { padding: 68px 0; }
  .nav { min-height: 68px; }
  .menu { top: 68px; }
  .logo { font-size: 21px; }
  .hero { min-height: 68vh; }
  .hero p, .page-hero p { font-size: 17px; }
  .button { width: 100%; text-align: center; }
  .buttons { width: 100%; }
  .cards { gap: 18px; }
  .feature-card, .card { padding: 26px; border-radius: 22px; }
  .gallery a { min-height: auto; }
  .gallery img { aspect-ratio: 4 / 3; }
}


/* Direct booking section */
.direct-booking {
  background: #fff8ef;
}

.direct-booking-box {
  background: #26323b;
  color: #fff;
  border-radius: 30px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}

.direct-booking-box h2,
.direct-booking-box h3 {
  color: #fff;
}

.direct-booking-box p {
  color: rgba(255,255,255,0.82);
}

.direct-benefits {
  display: grid;
  gap: 13px;
}

.direct-benefits div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
}

.direct-note {
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255,255,255,0.72) !important;
}

@media (max-width: 900px) {
  .direct-booking-box {
    grid-template-columns: 1fr;
    padding: 34px;
  }
}


/* Blurred banner background for all inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(20,31,40,0.70), rgba(20,31,40,0.70)),
    url('images/banner-blur.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    linear-gradient(rgba(20,31,40,0.52), rgba(20,31,40,0.52)),
    url('images/banner-blur.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}


/* PROFESSIONAL FINAL ADDITIONS */
.skip-link{position:absolute;left:-999px;top:0;background:#fff;color:#000;padding:10px 14px;z-index:999999}
.skip-link:focus{left:10px;top:10px}
.footer a{color:rgba(255,255,255,.92)}
.footer-license{margin-top:12px;font-size:14px;color:rgba(255,255,255,.70)!important}
.footer-mini{margin-top:22px;padding-top:18px;border-top:1px solid rgba(255,255,255,.14);display:flex;justify-content:space-between;gap:20px;color:rgba(255,255,255,.62);font-size:14px}
.map iframe{width:100%;height:380px;border:0;border-radius:26px}
@media(max-width:760px){.footer-mini{flex-direction:column}}
