/* =========================================
BASE
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #f6f7f9;
  color: #17365d;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

section {
  scroll-margin-top: 100px;
}

h2 {
  margin-top: 40px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding-bottom: 40px;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* =========================================
HEADER
========================================= */

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: auto;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

.logo {
  font-size: 26px;
}

.main-logo {
  max-width: 30%;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

nav {
  display: flex;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

/* =========================================
HERO
========================================= */

.hero {
  height: 80vh;
  background-image: url("../img/deluxe-room-1.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-bottom: 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-btn {
  background: #2f6f5e;
  color: white;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* =========================================
ROOMS
========================================= */

.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.room {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.room img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-info {
  padding: 20px;
}

/* =========================================
ROOM CARDS
========================================= */

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 70px;
  margin-top: 40px;
}

.room-card {
  background: #eaf2f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.room-details h3 {
  margin-bottom: 20px;
}

.room-desc {
  margin: 20px 0 40px;
}

.room-price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #548dd4;
  display: flex;
  flex-direction: column;
}

.room-details ul {
  padding-left: 18px;
  margin: 15px 0;
}

.room-details li {
  margin: 8px 0;
  color: #555;
}

.featured-room {
  border: 2px solid #548dd4;
  transform: scale(1.03);
}

span.room-option {
  font-size: 10px;
  color: #17365d;
}

/* =========================================
BUTTONS
========================================= */

.book-btn {
  display: inline-block;
  background: #2f6f5e;
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.book-button,
.book-button-rev {
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.book-button {
  background: white;
  color: #2f6f5e;
}

.book-button-rev {
  background: #2f6f5e;
  color: white;
}

.book-btn,
.hero-btn {
  transition: all 0.2s ease;
}

.book-btn:hover,
.hero-btn:hover {
  background: #245a4b;
  transform: translateY(-1px);
}

/* =========================================
PHOTO STRIP
========================================= */

.photo-strip {
  width: 100%;
  overflow: hidden;
}

.photo-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.photo-track img {
  height: 320px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

/* =========================================
GALLERY
========================================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

/* =========================================
AMENITIES
========================================= */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 5px;
}

.amenity {
  padding: 5px;
  display: flex;
  gap: 7px;
}

.amenity .icon {
  font-size: 20px;
}

/* =========================================
CONTACT
========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-info a {
  color: #2f6f5e;
  text-decoration: none;
}

.contact-map iframe {
  border-radius: 10px;
}

.contact-float {
  display: flex;
  flex-direction: row;
}

/* =========================================
FAQ
========================================= */

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-question::before {
  content: "+ ";
}

.faq-question.active::before {
  content: "− ";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}

.faq-answer p {
  margin: 10px 0 20px;
  color: #555;
}

#faq h2 {
  margin-bottom: 40px;
}

/* =========================================
GUIDE
========================================= */

.guide-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.guide-point {
  background: white;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.guide-point h3 {
  margin-top: 0;
  color: #2f6f5e;
}

/* =========================================
FACTS
========================================= */

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.fact {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.fact strong {
  display: block;
  margin-bottom: 6px;
  color: #2f6f5e;
}

.fact p {
  margin: 0;
  color: #555;
}

/* =========================================
CTA
========================================= */

.cta {
  background: #548dd4;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================
FOOTER
========================================= */

.site-footer {
  background: #2f2f2f;
  color: #ddd;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  color: white;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* =========================================
FLOATING ELEMENTS
========================================= */

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #999;
  color: white;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: bold;
  opacity: 0.7;
  display: flex;
  flex-direction: row;
}

.opacity-1 {
  opacity: 1;
}

/* =========================================
ACCESSIBILITY
========================================= */

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #2f6f5e;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  z-index: 1000;
}

.skip-link:focus {
  top: 10px;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .container {
    max-width: 90%;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 220px;
    flex-direction: column;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  nav.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav a {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  nav a:last-child {
    color: white;
    background: #2f6f5e;
    border-radius: 6px;
    margin: 10px;
    text-align: center;
  }

  .main-logo {
    max-width: 70%;
    height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .photo-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .photo-track::-webkit-scrollbar {
    display: none;
  } 

  section {
  scroll-margin-top: 25px;
  }
}

.room-card,
.guide-point,
.fact {
  background: #ffffff;
}

section {
  padding: 70px 0;
}

.header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}






