:root {
  --primary-color: #2b3a42; /* Dark slate blue, premium feel */
  --accent-color: #d4af37; /* Gold accent for conversions and trust */
  --accent-hover: #b5952f;
  --bg-color: #faf9f6; /* Off-white for less contrast than pure white */
  --text-primary: #333333;
  --text-secondary: #666666;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif; /* Elegant, premium font */
  --font-body: 'Inter', sans-serif; /* Clean, highly readable */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* Lodgify Search Bar CSS Variables */
  --ldg-psb-background: #ffffff;
  --ldg-psb-border-radius: 0.42em;
  --ldg-psb-box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.1);
  --ldg-psb-padding: 14px;
  --ldg-psb-input-background: #ffffff;
  --ldg-psb-button-border-radius: 3.58em;
  --ldg-psb-color-primary: #cba715;
  --ldg-psb-color-primary-lighter: #e5d38a;
  --ldg-psb-color-primary-darker: #66540b;
  --ldg-psb-color-primary-contrast: #000000;
  --ldg-semantic-color-primary: #cba715;
  --ldg-semantic-color-primary-lighter: #e5d38a;
  --ldg-semantic-color-primary-darker: #66540b;
  --ldg-semantic-color-primary-contrast: #000000;
  --ldg-component-modal-z-index: 999;

  /* Lodgify Book Now Box CSS Variables */
  --ldg-bnb-background: #ffffff;
  --ldg-bnb-border-radius: 0.42em;
  --ldg-bnb-box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.1);
  --ldg-bnb-padding: 14px;
  --ldg-bnb-input-background: #ffffff;
  --ldg-bnb-button-border-radius: 3.58em;
  --ldg-bnb-color-primary: #cba715;
  --ldg-bnb-color-primary-lighter:#e5d38a;
  --ldg-bnb-color-primary-darker: #66540b;
  --ldg-bnb-color-primary-contrast: #000000;
  --ldg-component-calendar-cell-selection-bg-color: #cba715;
  --ldg-component-calendar-cell-selection-color: #000000;
  --ldg-component-calendar-cell-selected-bg-color: #e5d38a;
  --ldg-component-calendar-cell-selected-color: #000000;
  --ldg-bnb-font-family: inherit;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.2;
}

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

/* Typography */
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 3rem; }

/* Buttons (Conversion Focus) */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px; /* Adjust this value if you want the logo bigger or smaller */
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

.lang-selector {
  padding: 0.5rem;
  border-radius: var(--border-radius);
  border: 1px solid #ccc;
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('images/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: var(--white);
  position: relative;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Lodgify Booking Strip */
.lodgify-strip-wrapper {
  margin: -40px auto 3rem;
  position: relative;
  z-index: 10;
  padding: 0 5%;
  max-width: 1000px; /* Slight wider for Lodgify bar */
}

#lodgify-search-bar {
  width: 100%;
}

#lodgify-book-now-box {    
  width: 100%;
}

/* Sections */
section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Benefits / Why Book Direct */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.benefit-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Apartments */
.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.apartment-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.apartment-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.apartment-content {
  padding: 2rem;
}

.apartment-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.apartment-specs {
  display: flex;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Active Lifestyle */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lifestyle-card {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white);
}

.lifestyle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.lifestyle-content {
  position: relative;
  z-index: 2;
}

/* Social Proof */
.reviews {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 5%;
  text-align: center;
}

.reviews h2 {
  color: var(--white);
}

.review-card {
  max-width: 600px;
  margin: 0 auto;
}

.stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Booking Iframe Placeholder */
.booking-section {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  margin-top: 2rem;
}

.iframe-placeholder {
  width: 100%;
  height: 500px;
  background-color: #f5f5f5;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  margin-top: 2rem;
}

/* Footer / Final CTA */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 5rem 5% 2rem;
}

footer h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  max-width: 400px;
  text-align: center;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Cookie Banner */
.cookie-banner {
  display: none; /* hidden by default, shown by JS */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 5%;
  justify-content: space-between;
  align-items: center;
  z-index: 3000;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.cookie-banner .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .booking-strip { flex-direction: column; width: 90%; margin-top: -20px; }
  .input-group { width: 100%; }
  .header-btn { display: none; }
  .mobile-sticky-cta { display: block; }
  footer { padding-bottom: 6rem; } /* Space for sticky cta */
}
