* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a759f;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

/* nav section */

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

.nav-links a {
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  border-bottom: 2px solid white;
}

/* HERO SECTION */

.hero {
  position: relative;
  width: 100%;
  height: 73vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: filter 0.3s ease;
}

/* Hidden text HERO */
.hero-text {
  position: relative;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Show text and dim image on hover */
.hero:hover .hero-text {
  opacity: 1;
}

.hero:hover img {
  filter: brightness(60%);
}

/* INFO SECTION */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.details h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a759f;
}

.details ul {
  list-style: none;
}

/* List items with hover color and text change */
.details ul li {
  position: relative;
  background: white;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  color: #212529;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* Hide original text on hover */
.details ul li:hover {
  color: transparent;
}

/* Show hover text from data-hover attribute */
.details ul li::after {
  content: attr(data-hover);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #1a759f;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.details ul li:hover::after {
  opacity: 1;
}

/* ABOUT SECTION */

.about {
  padding: 4rem 2rem;
  background: white;
}

.about .container {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a759f;
  margin-bottom: 1.5rem;
}

.about p {
  margin-bottom: 1rem;
  color: #495057;
}

/* BUTTON SECTION */

.book {
  background-color: #52b69a;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

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

.booking-btn {
  background-color: #184e77;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.airbnb-btn {
  background-color: #FF5A5F; /* Airbnb Red */
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.airbnb-btn:hover {
  background-color: #e14c4f; /* Slightly darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.booking-btn:hover {
  background-color: #1a759f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.facebook-btn {
  background-color: #3b5998;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.facebook-btn:hover {
  background-color: #1a759f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* REVIEWS */

.reviews {
  background-color: #f1f3f5;
  padding: 4rem 2rem;
  text-align: center;
}

.reviews h2 {
  font-size: 2rem;
  color: #1a759f;
  margin-bottom: 2rem;
}

.review-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  font-style: italic;
  position: relative;
}

.review p {
  margin-bottom: 1rem;
  color: #495057;
}

.review span {
  display: block;
  font-weight: bold;
  color: #1a759f;
}

.review:hover {
  background-color: #e0f7fa; /* light blue or change as needed */ /* Make them grow slightly and change color on hover */
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ */

.faq-link-section {
  text-align: center;
  margin: 30px 0;
  background-color: #184e77;
  margin-top: -2vh;
  margin-bottom: -1vh;
}

.faq-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #222;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.faq-button:hover {
  background-color: #005a43;
}


/* FOOTER */

.footer {
  background-color: #184e77;
  color: #dee2e6;
  text-align: center;
  padding: 2rem 1rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .navbar {
    flex-direction: column;
  }
}

#spacerDiv {
  height: 3.5vh;
}