/* ===============================
   BASE / GLOBAL
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Poppins", sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #ffffff;
}

.section-header {
  text-align: left;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.section-header p {
  color: #6b6b6b;
  font-size: 14px;
}

/* Utility */
.center {
  text-align: center;
}

ul {
  list-style: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff385c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn-primary:hover {
  background: #e61e4d;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease, border 0.15s ease;
}

.btn-ghost:hover {
  background: #ffffff;
  color: #222;
  border-color: #ffffff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  background: #ffffff;
  transition: background 0.15s ease, border 0.15s ease, transform 0.15s ease;
}

.btn-outline:hover {
  border-color: #b0b0b0;
  transform: translateY(-1px);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff385c;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-pill:hover {
  background: #e61e4d;
}

.btn-primary.full {
  width: 100%;
}

/* ===============================
   NAVBAR – Airbnb style
================================ */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 12px 0;
  z-index: 2000;
  transition: background 0.2s ease, box-shadow 0.2s ease,
    border-bottom 0.2s ease, padding 0.2s ease;
  backdrop-filter: blur(12px);
}

.navbar.transparent {
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.6),
    rgba(15, 15, 15, 0.1)
  );
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.navbar.solid {
  background: #ffffff;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  width: 40px;
  border-radius: 10px;
}

.logo span {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
}

.navbar.solid .logo span {
  color: #222;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: #ffffff;
  padding-bottom: 2px;
}

.navbar.solid .nav-links a {
  color: #222;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #222;
  transition: width 0.15s ease;
}

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

.nav-links .btn-pill {
  margin-left: 6px;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
}

.navbar.solid .menu-toggle {
  color: #222;
}

/* ===============================
   HERO – clean Airbnb-style
================================ */
.hero {
  position: relative;
  height: 82vh;
  min-height: 500px;
  margin-bottom: 32px;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.1)
  );
}

.hero-content {
  position: relative;
  height: 100%;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #ffffff;
}

.hero-text {
  max-width: 480px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 15px;
  color: #f1f1f1;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Booking card – like Airbnb date picker card */
.hero-booking {
  width: 320px;
  max-width: 100%;
  background: #ffffff;
  color: #222;
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
  border: 1px solid #ebebeb;
}

.hero-booking h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.hero-booking .form-row {
  margin-bottom: 10px;
}

.hero-booking label {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.hero-booking input,
.hero-booking select {
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.hero-booking input:focus,
.hero-booking select:focus {
  border-color: #222;
  box-shadow: 0 0 0 1px #222;
}

.booking-note {
  font-size: 11px;
  color: #777;
  margin-top: 6px;
}

/* ===============================
   HIGHLIGHTS – gallery preview
================================ */
.section .gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-preview .gallery-item {
  position: relative;
  width: 100%;
  padding-top: 70%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.gallery-preview .gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 6px 10px;
  font-size: 13px;
  color: #ffffff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.05)
  );
}

/* ===============================
   CARDS (bedrooms / amenities)
================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.card-image {
  width: 100%;
  padding-top: 70%;
  background-size: cover;
  background-position: center;
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 14px 4px;
}

.card p {
  font-size: 14px;
  color: #555;
  padding: 0 14px 14px;
}

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenities-grid h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.amenities-grid h4 i {
  margin-right: 6px;
  color: #ff385c;
}

.amenities-grid ul li {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

/* ===============================
   HOST SECTION
================================ */
.host-modern {
  display: flex;
  gap: 32px;
  align-items: center;
}

.host-photo img {
  width: 230px;
  border-radius: 18px;
  border: 1px solid #ebebeb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.host-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.host-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* ===============================
   PAGE HEADER (inner pages)
================================ */
.page-header {
  padding-top: 96px;
  padding-bottom: 20px;
}

.page-header .container {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 14px;
}

.page-header h1 {
  font-size: 26px;
  margin-bottom: 4px;
}

.page-header p {
  font-size: 14px;
  color: #666;
}

/* ===============================
   ABOUT
================================ */
.about-modern {
  padding: 36px 0 56px;
  background: #ffffff;
}

.about-modern-box {
  display: flex;
  gap: 32px;
  align-items: center;
}

.about-modern-text {
  flex: 1.2;
}

.about-modern-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-modern-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.about-modern-text h3 {
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.about-features {
  margin-top: 6px;
}

.about-features li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.about-features i {
  margin-right: 8px;
  color: #ff385c;
}

.about-modern-image img {
  width: 260px;
  border-radius: 18px;
  border: 1px solid #ebebeb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mission-modern {
  background: #f7f7f7;
  padding: 52px 0;
  text-align: center;
}

.mission-modern h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.mission-modern p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  color: #555;
}

/* ===============================
   GALLERY PAGE
================================ */
.gallery-filters {
  background: #ffffff;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
  margin-bottom: 0;
}

.gallery-filters .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-btn {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #222;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, border 0.15s ease, color 0.15s ease;
}

.filter-btn.active {
  background: #222;
  border-color: #222;
  color: #ffffff;
}

.gallery-grid {
  padding: 24px 0 60px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-container .gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  background: #ffffff;
}

.gallery-container .gallery-item img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.gallery-container .gallery-item img:hover {
  transform: scale(1.02);
}

/* ===============================
   CONTACT / BOOKING PAGE
================================ */
.contact-wrap {
  padding: 40px 0 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-info h2,
.contact-form-block h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 4px;
  color: #444;
}

.contact-info p i {
  margin-right: 6px;
  color: #ff385c;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  color: #222;
  font-size: 15px;
  margin-right: 6px;
}

.contact-note {
  margin-top: 16px;
}

.contact-note h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-note ul li {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.contact-form-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row {
  margin-bottom: 12px;
}

.form-row label {
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
  color: #555;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #222;
  box-shadow: 0 0 0 1px #222;
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

/* ===============================
   FOOTER – simple, light
================================ */
.footer {
  background: #ffffff;
  border-top: 1px solid #ebebeb;
  padding: 14px 0;
  font-size: 13px;
  color: #555;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  margin-left: 8px;
  font-size: 13px;
}

/* ===============================
   LIGHTBOX – simple
================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.lightbox img {
  max-width: 92%;
  max-height: 88%;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  padding: 8px;
}

.arrow.left {
  left: 18px;
}

.arrow.right {
  right: 18px;
}

#lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  max-width: 80%;
}

/* ===============================
   RESPONSIVE (ties into mobile.css)
================================ */

/* main responsive layout is in mobile.css (already in your files) */