/* Global styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Use a classic serif for a "grandma beach chic" feel */
  font-family: 'Lora', 'Georgia', serif;
  line-height: 1.5;
  color: #444444;
  /* Soft off‑white background evokes a cozy coastal cottage */
  background-color: #faf8f5;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* A translucent white bar with a subtle blur keeps things light */
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 10px 20px;
  justify-content: center;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: #5c443a;
  font-weight: bold;
  padding: 6px 8px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #a86255;
}

/* Hero section */
/* Hero section with a calm sand‑to‑sea gradient */
.hero {
  height: 80vh;
  background-image: linear-gradient(135deg, #faf2de 0%, #e7f1f1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #5c443a;
  padding-top: 60px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  /* Subtle drop shadow for depth */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #6d5647;
  text-shadow: none;
}

/* Generic button style with a vintage coral hue */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e2846a;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #f0a78f;
}

/* Section layout */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #5c443a;
  font-family: 'Playfair Display', serif;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Video section */
.tour-video {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

/* Booking buttons */
.booking-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Booking buttons get a muted teal tone to complement the coral primary buttons */
.book-btn {
  background-color: #7fa69e;
}

.book-btn:hover {
  background-color: #9bb5ae;
}

/* Extras section */
.extras-section .qr-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.extras-section .qr-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  padding: 10px;
}

/* Footer */
.footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  nav ul {
    flex-direction: column;
  }
  nav li {
    margin: 6px 0;
  }
}
/* === Palm + Pearl faint background logo in hero === */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/logo.png");
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: min(90vw, 720px);
  opacity: 0.12; /* faint */
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero::before { background-size: min(95vw, 520px); opacity: 0.10; background-position: center 45%; }
}
