:root {
  --primary: #2c3e50;
  --accent: #e74c3c;
  --light: #f9f9f9;
  --dark: #222;
}

* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Navigation, buttons, small UI text */
nav, .btn, button, label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ===== HEADER ===== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  flex-wrap: wrap;
}

/* Logo */
.headerlogo {
  height: 40px;
  width: auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-left: 10px;
  white-space: nowrap;
}

/* Logo group */
.header-flex > img,
.header-flex > h1 {
  display: inline-flex;
  align-items: center;
}

/* Nav */
.site-header nav {
  display: flex;
  gap: 20px;
}

.site-header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ---------- MOBILE HEADER ---------- */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin: 8px 0;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  height: 80vh;
  background: url("/assets/images/mainbanner1A.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-size: 2.5rem;
}

/* ================= HERO CTA ================= */

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  min-width: 140px;
  text-align: center;
}

/* Button Colors */
.btn.airbnb { background: #ff5a5f; }
.btn.vrbo { background: #4f5050; }
.btn.booking { background: #03098d; }

/* ---------- MOBILE CTA STACK ---------- */
@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 260px;
  }
}



/* ===== SECTIONS ===== */
.section {
  padding: 60px 20px;
}

.light {
  background: var(--light);
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 22px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

.airbnb { background: #ff5a5f; }
.vrbo { background: #003580; }
.booking { background: #0071c2; }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* ================= GALLERY IMAGE LABEL ================= */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Label on image */
.image-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}




/* ===== FORM ===== */
form {
  max-width: 500px;
  margin: auto;
}

input, textarea, button {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

button {
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: var(--dark);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
}
