/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header--scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.site-logo span {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition-base);
}

@media (max-width: 1024px) {
  .site-header {
    backdrop-filter: none;
    background: var(--color-bg);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    padding: 12px;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--color-bg);
    padding: 100px var(--space-2xl) var(--space-2xl);
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-list--open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: var(--text-xl);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    display: block;
  }

  .nav-link::after {
    display: none;
  }

  .lang-switcher {
    display: none;
  }

  .site-logo span {
    display: none;
  }

  .site-logo {
    font-size: var(--text-base);
  }
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: var(--space-xs);
  margin-left: var(--space-md);
  border-left: 1px solid var(--color-border);
  padding-left: var(--space-md);
}

.lang-switcher a {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.lang-switcher a:hover,
.lang-switcher a--active {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--primary:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.btn--accent:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-base);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.3) 0%,
    rgba(44, 24, 16, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
  padding: var(--space-xl);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.hero__title {
  font-size: var(--text-6xl);
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero__title { font-size: var(--text-4xl); }
  .hero__desc { font-size: var(--text-base); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-3xl);
}

.section-header__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__text {
  font-size: var(--text-lg);
  color: var(--color-text-light);
}

/* ============================================
   AMENITIES
   ============================================ */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.amenity-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.amenity-item span {
  font-size: var(--text-sm);
  font-weight: 500;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

.footer-brand p {
  color: rgba(253, 251, 247, 0.7);
  font-size: var(--text-sm);
  margin-top: var(--space-md);
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(253, 251, 247, 0.7);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(253, 251, 247, 0.5);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(253, 251, 247, 0.2);
  color: rgba(253, 251, 247, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg-dark);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

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

/* ============================================
   FLOATING BADGES (Google Maps + Airbnb)
   ============================================ */

.floating-badges {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gmaps-badge,
.airbnb-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: white;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gmaps-badge:hover,
.airbnb-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.gmaps-badge__stars {
  color: #FBBC04;
  font-size: var(--text-base);
  letter-spacing: 1px;
}

.gmaps-badge__text,
.airbnb-badge__text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.gmaps-badge__text span,
.airbnb-badge__text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-light);
}

.gmaps-badge__icon,
.airbnb-badge__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .floating-badges {
    bottom: 16px;
    left: 16px;
  }
  .gmaps-badge,
  .airbnb-badge {
    padding: 8px 12px;
  }
  .gmaps-badge__text,
  .airbnb-badge__text {
    font-size: var(--text-xs);
  }
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-secondary);
}

.breadcrumb span {
  margin: 0 var(--space-sm);
  opacity: 0.5;
}

/* ============================================
   FEATURES / HIGHLIGHTS
   ============================================ */

.feature {
  text-align: center;
  padding: var(--space-xl);
}

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 50%;
  color: var(--color-secondary);
}

.feature__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.feature__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-lg) auto;
}

.divider--left {
  margin-left: 0;
}
