
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f3f4f6;
  line-height: 1.6;
}

/* Utility */

.container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  background: #f3f4f6;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
}

/* Navbar */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(to right, rgba(15,23,42,0.75), rgba(30,64,175,0.75));
  backdrop-filter: blur(12px);
}

.nav-container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f9fafb;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link,
.nav-cta {
  text-decoration: none;
  font-size: 0.9rem;
  color: #e5e7eb;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #facc15;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #facc15;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  font-weight: 600;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
}

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  min-height: 550px;
  color: #f9fafb;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(15,23,42,0.6), transparent 60%),
              linear-gradient(to right, rgba(15,23,42,0.9), rgba(15,23,42,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(248,250,252,0.25);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 22ch;
}

.hero-subtitle {
  max-width: 38ch;
  font-size: 0.98rem;
  color: #e5e7eb;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  box-shadow: 0 14px 32px rgba(248, 181, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 181, 0, 0.45);
}

.btn-outline {
  border: 1px solid rgba(248,250,252,0.7);
  color: #f9fafb;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(15,23,42,0.4);
}

.btn-fullwidth {
  width: 100%;
}

.hero-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(248,250,252,0.2);
  font-size: 0.75rem;
}

.hero-otas {
  font-weight: 600;
}

.scroll-down {
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
  text-decoration: none;
  padding-top: 1.5rem;
}

.scroll-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 1rem;
  transform: translateX(-50%);
  background: #e5e7eb;
  opacity: 0.8;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 0.9rem;
  color: #4b5563;
}

.about-highlights {
  list-style: none;
  margin-top: 0.5rem;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.about-highlights li::before {
  content: "•";
  color: #f97316;
  margin-top: 0.1rem;
}

.about-card {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #f9fafb;
  padding: 1.8rem 1.7rem;
  border-radius: 1.3rem;
  box-shadow: 0 22px 45px rgba(15,23,42,0.45);
}

.about-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.snapshot-list {
  list-style: none;
  margin-bottom: 1.4rem;
}

.snapshot-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(248,250,252,0.2);
}

.snapshot-list li span:first-child {
  opacity: 0.8;
}

/* Cards (Rooms) */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 14px 30px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  font-size: 1.1rem;
}

.card-price {
  font-weight: 600;
  color: #ea580c;
  font-size: 0.95rem;
}

.card-text {
  font-size: 0.9rem;
  color: #4b5563;
}

.card-list {
  list-style: none;
  font-size: 0.9rem;
  color: #374151;
}

.card-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.card-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

/* Facilities */

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.facility-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 14px 28px rgba(15,23,42,0.05);
  border: 1px solid #e5e7eb;
}

.facility-icon {
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #f9fafb;
}

.facility-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.facility-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Location */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.location-text p {
  color: #4b5563;
}

.location-address {
  margin-top: 1rem;
}

.location-map iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 1.2rem;
  box-shadow: 0 14px 36px rgba(15,23,42,0.25);
}

/* Booking */

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.book-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.book-text p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.book-steps {
  list-style: none;
  font-size: 0.95rem;
}

.book-steps li {
  margin-bottom: 0.4rem;
}

.book-panel {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
  border: 1px solid #e5e7eb;
}

.book-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

label {
  font-size: 0.85rem;
  color: #374151;
}

input,
select,
textarea {
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.4);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.4rem;
  z-index: 40;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: #22c55e;
  color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(16,185,129,0.55);
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

/* Footer */

.footer {
  background: #0b1120;
  color: #9ca3af;
  padding: 1.6rem 0;
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.footer-note {
  color: #6b7280;
}

/* Responsive */

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(15,23,42,0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.5rem 1.2rem;
    gap: 0.9rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    align-self: stretch;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .location-grid,
  .book-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-card,
  .book-panel {
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .cards-grid,
  .facility-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-strip {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }
}


/* === Room details page layout === */
.room-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.room-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 1.75rem;
  align-items: center;
  background: #f9fafb;
  border-radius: 1.25rem;
  padding: 1.8rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.room-media video,
.room-media iframe {
  width: 100%;
  border-radius: 1rem;
  display: block;
}

.room-info h3 {
  margin-bottom: 0.5rem;
}

.room-info p {
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .room-detail-card {
    grid-template-columns: 1fr;
  }
}
