body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #F3E9D8;
  color: #000;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px 40px;
}

.logo {
  width: 120px;
  display: block;
  margin: 0 auto 20px auto;
}

.hero-img {
  width: 100%;
  border-radius: 10px;
}

/* PREMIUM HERO TITLE */
.hero-title-block {
  text-align: center;
  margin: 30px 0 30px;
}

.hero-title-block h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6b5b45;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(201,168,106,0.15);
}

.hero-title-block h2 {
  font-size: 18px;
  font-weight: 500;
  color: #8a7a63;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.hero-line {
  width: 70px;
  height: 3px;
  background: #c9a86a;
  margin: 0 auto 16px;
  border-radius: 2px;
}

.hero-tagline {
  font-size: 16px;
  opacity: 0.75;
  font-style: italic;
  letter-spacing: 0.3px;
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.6;
}

/* MENU */
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px 20px;
}

.menu-item {
  background: white;
  padding: 18px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #c9a86a;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.menu-item:hover::after {
  width: 60%;
  left: 20%;
}

/* SECTIONS */
.section {
  padding: 30px 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card p {
  line-height: 1.55;
  opacity: 0.9;
}

/* PREMIUM BULLETS */
.card ul {
  padding-left: 18px;
  margin: 12px 0;
}

.card ul li {
  margin-bottom: 6px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #c9a86a;
  font-size: 14px;
}

/* LOCKBOX GALLERY */
.lockbox-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.lockbox-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* SUITE GALLERY — BASE */
.suite-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.suite-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* PREMIUM SECTION HEADER */
.section-header {
  text-align: center;
  margin: 40px 0 30px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #6b5b45;
}

.section-line {
  width: 60px;
  height: 3px;
  background: #c9a86a;
  margin: 0 auto 12px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 15px;
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* PREMIUM CARD TITLES */
.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #6b5b45;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.card-title-line {
  width: 40px;
  height: 3px;
  background: #c9a86a;
  border-radius: 2px;
  margin: 0 0 14px 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 20px;
  opacity: 0.7;
  font-size: 15px;
  letter-spacing: 0.4px;
  line-height: 1.6;
  border-top: 1px solid rgba(201,168,106,0.35);
  color: #6b5b45;
}

/* RESPONSIVE — MOBILE */
@media (max-width: 480px) {

  .logo {
    width: 90px;
    margin-bottom: 16px;
  }

  .hero {
    padding: 30px 16px 24px;
  }

  .menu {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-item {
    padding: 16px;
    font-size: 15px;
  }

  .lockbox-gallery {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 24px 16px;
    font-size: 13px;
  }

  .suite-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-gallery img {
    height: 100px;
  }
}

/* ------------------------------------------------ */
/* ABOUT THE SUITES — PREMIUM HEADER + GALLERY FIX */
/* ------------------------------------------------ */

/* CUSTOM SECTION HEADER (Rooms & Amenities style) */
.section-header-custom {
  text-align: center;
  margin: 40px 0 30px;
}

.section-header-custom h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #6b5b45;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.title-icon {
  font-size: 22px;
  color: #c9a86a;
}

/* GOLD LINE */
.section-line-custom {
  width: 70px;
  height: 3px;
  background: #c9a86a;
  margin: 0 auto 12px;
  border-radius: 2px;
}

/* TAGLINE */
.section-tagline {
  font-size: 15px;
  color: #6b5b45;
  opacity: 0.8;
  letter-spacing: 0.3px;
  margin-top: 6px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* WHITE BLOCKS */
.suite-block {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

/* TEXT */
.suite-text p {
  margin-bottom: 16px;
  line-height: 1.65;
  color: #444;
  font-size: 16px;
}

/* FORCE GALLERY LAYOUT — DESKTOP */
.suite-gallery.gallery-12,
.suite-gallery.gallery-8 {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .suite-gallery.gallery-12,
  .suite-gallery.gallery-8 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

/* CHECK-IN / CHECK-OUT / Wi Fi — PREMIUM HEADER */
.section-header-custom {
  text-align: center;
  margin: 40px 0 30px;
}

.section-header-custom h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #6b5b45;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.title-icon {
  font-size: 22px;
  color: #c9a86a;
}

/* GOLD LINE */
.section-line-custom {
  width: 70px;
  height: 3px;
  background: #c9a86a;
  margin: 0 auto 12px;
  border-radius: 2px;
}

/* TAGLINE */
.section-tagline {
  font-size: 15px;
  color: #6b5b45;
  opacity: 0.8;
  letter-spacing: 0.3px;
  margin-top: 6px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* WHITE BLOCKS (reuse suite-block styling) */
.suite-block {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.suite-block p {
  margin: 0;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
/* ICON INSIDE WHITE BLOCKS */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  font-size: 26px;
  color: #c9a86a; /* premium gold */
  line-height: 1;
  margin-top: 2px;
}
html {
  scroll-behavior: smooth;
}
/* ICON INSIDE WHITE BLOCKS */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-block h3 {
  margin-top: 0;
  color: #6b5b45;
  font-size: 20px;
  font-weight: 600;
}

.info-block ul {
  margin: 10px 0 0 0;
  padding-left: 18px;
}

.info-block ul li {
  margin-bottom: 6px;
  line-height: 1.55;
}

.info-icon {
  font-size: 28px;
  color: #c9a86a;
  line-height: 1;
  margin-top: 4px;
}
/* --------------------------------------------- */
/* LOCAL TIPS — PREMIUM STYLING */
/* --------------------------------------------- */

/* Section Header */
.section-header-custom {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-custom h2 {
  font-size: 32px;
  font-weight: 600;
  color: #6b5b45;
  margin-bottom: 10px;
}

.title-icon {
  color: #c9a86a; /* premium gold */
  margin-right: 6px;
}

.section-line-custom {
  width: 80px;
  height: 3px;
  background-color: #c9a86a; /* premium gold */
  margin: 0 auto 15px auto;
  border-radius: 2px;
}

.section-tagline {
  font-size: 16px;
  color: #6b5b45;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --------------------------------------------- */
/* WHITE BLOCKS */
/* --------------------------------------------- */

.suite-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Icon + Content Layout */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Icon */
.info-icon {
  font-size: 32px;
  color: #c9a86a; /* premium gold */
  line-height: 1;
  margin-top: 4px;
}

/* Block Titles */
.info-block h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #6b5b45;
  font-size: 20px;
  font-weight: 600;
}

/* Lists */
.info-block ul {
  margin: 0;
  padding-left: 18px;
}

.info-block ul li {
  margin-bottom: 8px;
  line-height: 1.55;
  font-size: 15px;
}

/* Links */
.info-block a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.info-block a:hover {
  color: #c9a86a; /* premium gold */
}

/* Extra spacing for sub‑sections (Car Rentals, Boat Trips) */
.info-block h3 + ul {
  margin-top: 8px;
}

.info-block h3[style] {
  margin-top: 22px !important;
}
/* --------------------------------------------- */
/* CONTACT SECTION — CLEAN & FIXED */
/* --------------------------------------------- */

/* Grid layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

/* White blocks */
.contact-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
}

/* Titles */
.contact-block h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #6b5b45;
  font-size: 20px;
  font-weight: 600;
}

/* Lists */
.contact-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-block ul li {
  display: flex;
  align-items: center;
  margin-bottom: 18px; /* universal spacing */
  font-size: 15px;
  line-height: 1.55;
}

/* Icons */
.contact-block i {
  color: #c9a86a;
  margin-right: 10px;
  font-size: 18px;
}

/* Links */
.contact-block a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-block a:hover {
  color: #c9a86a;
}

/* Bubble buttons */
.bubble-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  margin-bottom: 16px; /* spacing between Viber & WhatsApp */
}

.bubble-btn.viber {
  background: #7360F2;
}

.bubble-btn.viber:hover {
  background: #5a49c7;
}

.bubble-btn.whatsapp {
  background: #25D366;
}

.bubble-btn.whatsapp:hover {
  background: #1da851;
}

/* Social Media extra spacing */
.contact-block:nth-child(3) ul li {
  margin-bottom: 22px;
}

/* Desktop: 3 columns */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
}
/* --------------------------------------------- */
/* EMERGENCY NUMBERS SECTION — CLEAN & FIXED */
/* --------------------------------------------- */

/* Section Title */
.section-title {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

/* Gold Line */
.gold-line {
  width: 60px;
  height: 3px;
  background-color: #C9A86A;
  margin: 0 auto 15px auto;
}

/* Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

/* Grid */
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .emergency-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Boxes */
.emergency-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.emergency-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

/* Lists */
.emergency-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emergency-box li {
  margin-bottom: 6px;
}

/* Items with icons */
.health-item,
.taxi-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.icon {
  width: 20px;
  margin-right: 10px;
}

