/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  padding: 0 40px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left { display: flex; gap: 32px; align-items: center; }
.nav-left a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}
.nav-left a:hover { opacity: 0.7; }
.nav-logo {
  position: absolute;
  left: 50%; transform: translateX(-50%);
}
.nav-logo img { height: 110px; }
.nav-right { display: flex; align-items: center; }
.btn-view-stays {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.btn-view-stays:hover {
  background: #fff;
  color: #000;
}

/* Mobile nav */
.nav-toggle { display: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .nav-left { display: none; }
  .nav-toggle { display: block; }
  .nav-left.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: rgba(0,0,0,0.95);
    padding: 20px;
    gap: 16px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 200px;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 18px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
}
.stat {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid #e0e0e0;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px 16px; }
  .stat-number { font-size: 36px; }
}

/* ===== EXPERTS SECTION ===== */
.experts-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.experts-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 56px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.expert-card {
  text-align: center;
}
.expert-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.expert-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.expert-card:hover .expert-image-wrap img {
  transform: scale(1.05);
}
.expert-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.expert-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  padding: 0 8px;
}
@media (max-width: 1024px) {
  .experts-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 640px) {
  .experts-section { padding: 60px 20px; }
  .experts-title { font-size: 28px; margin-bottom: 36px; }
  .experts-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== HAPPINESS / BOOKING SECTION ===== */
.happiness-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.happiness-title {
  font-size: 36px;
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}
.happiness-title em {
  font-style: italic;
  font-weight: 900;
}
.book-now-heading {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.booking-widget-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .happiness-section { padding: 60px 20px; }
  .happiness-title { font-size: 24px; }
  .book-now-heading { font-size: 20px; }
  .booking-widget-wrap iframe { height: 500px; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-dark {
  background: #111;
  color: #fff;
  max-width: none;
}
.section-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
  color: #111;
}
.section-dark .section-title { color: #fff; }

/* ===== PROPERTY GRID (Our Stays) ===== */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .property-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .property-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.property-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.card-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  overflow: hidden;
}
.card-image-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.property-card:hover .card-image-wrap img {
  transform: scale(1.05);
}
.card-price {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.card-body { padding: 20px; }
.card-name {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.3;
}
.card-location {
  font-size: 14px;
  color: #888;
  margin-bottom: 14px;
}
.card-details {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.detail {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
}
.detail svg { color: #222; flex-shrink: 0; }
.book-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.book-btn:hover { background: #000; }

/* Filters */
.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.filters select {
  padding: 10px 36px 10px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #111;
  background: #fff;
  cursor: pointer;
  min-width: 180px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.filters select:focus { outline: none; border-color: #222; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 20px 16px 16px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { font-size: 16px; font-weight: 700; }
.gallery-overlay p { font-size: 13px; opacity: 0.8; }

/* ===== CONTACT ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #111;
}
.contact-info p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}
.contact-info a { color: #222; font-weight: 700; }
.contact-info a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #333;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #222;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  padding: 14px 32px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.contact-form button:hover { background: #000; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 40px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.footer-btn:hover { background: #fff; color: #111; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-bottom p { color: #555; font-size: 13px; }

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #888;
  display: none;
}

/* ===== CONTACT FOOTER (in stays page) ===== */
.contact-footer {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  color: #666;
  font-size: 15px;
}
.contact-footer a {
  color: #222;
  font-weight: 700;
}
.contact-footer a:hover { text-decoration: underline; }
