/* ===========================
   Casa Bellini - Design System
   =========================== */

/* --- CSS Custom Properties --- */
:root {
  /* Colors - Warm Mediterranean palette */
  --color-primary: #8B6914;
  --color-primary-light: #C49B2A;
  --color-primary-dark: #6B4F0F;
  --color-accent: #D4A843;
  --color-accent-light: #E8C96D;

  --color-bg: #FAF7F2;
  --color-bg-alt: #F3EDE3;
  --color-bg-dark: #1A1611;
  --color-bg-section: #FFF9F0;

  --color-text: #2C2418;
  --color-text-light: #6B5D4F;
  --color-text-muted: #9E8E7E;
  --color-text-on-dark: #FAF7F2;

  --color-white: #FFFFFF;
  --color-border: #E5DDD2;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 36, 24, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 24, 0.12);
  --shadow-xl: 0 16px 60px rgba(44, 36, 24, 0.16);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.header.transparent {
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 20px rgba(44, 36, 24, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  transition: transform var(--transition-base);
}

.logo-img {
  height: 48px; /* Prominent size for header */
  width: auto;
  transition: transform var(--transition-fast);
}

/* By default, show default logo and hide white logo */
.logo .white-logo {
  display: none;
}
.logo .default-logo {
  display: block;
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

/* Show/hide correct logo variant based on header state */
.header.transparent .logo .default-logo {
  display: none;
}
.header.transparent .logo .white-logo {
  display: block;
}

.header.scrolled .logo .default-logo {
  display: block;
}
.header.scrolled .logo .white-logo {
  display: none;
}

/* Footer branding logo */
.footer .logo .logo-img {
  height: 60px; /* Larger logo for the footer brand */
}
.footer .logo .default-logo {
  display: none;
}
.footer .logo .white-logo {
  display: block;
}




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

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: 0.02em;
}

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

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

.nav-link:hover {
  color: var(--color-white);
}

.header.scrolled .nav-link {
  color: var(--color-text-light);
}

.header.scrolled .nav-link:hover {
  color: var(--color-text);
}

.btn-nav {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-nav:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 155, 42, 0.3);
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.header.scrolled .lang-selector {
  color: var(--color-text-muted);
}

.lang-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.lang-link.active {
  color: var(--color-accent-light);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .lang-link {
  color: var(--color-text-light);
}

.header.scrolled .lang-link.active {
  color: var(--color-primary);
  background: rgba(139, 105, 20, 0.08);
}

.lang-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .lang-link:hover {
  color: var(--color-text);
  background: rgba(44, 36, 24, 0.05);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.header.scrolled .lang-divider {
  color: var(--color-border);
}

@media (max-width: 768px) {
  .lang-selector {
    margin-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    justify-content: flex-start;
    width: 100%;
  }
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: var(--color-text);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 22, 17, 0.55) 0%,
    rgba(26, 22, 17, 0.40) 40%,
    rgba(26, 22, 17, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl);
  padding-top: calc(var(--header-height) + var(--space-2xl));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent-light);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  font-weight: 300;
  letter-spacing: 0.02em;
}

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

/* Smoobu Booking Form Container */
.booking-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.booking-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.booking-title {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

#apartmentIframeAll {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 120px;
}

#apartmentIframeAll iframe {
  border-radius: var(--radius-md);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.about-image-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.about-text {
  padding: var(--space-xl) 0;
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-size: 1.02rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}

.highlight-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

/* ===========================
   ROOMS SECTION
   =========================== */
.rooms {
  background: var(--color-bg-section);
}

.rooms-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.rooms-header .section-label {
  justify-content: center;
}

.rooms-header .section-subtitle {
  margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

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

.room-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-card-image img {
  transform: scale(1.06);
}

.room-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
}

.room-card-body {
  padding: var(--space-xl);
}

.room-card-body h3 {
  margin-bottom: var(--space-sm);
}

.room-card-desc {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.room-amenity svg {
  width: 14px;
  height: 14px;
  fill: var(--color-primary);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery {
  background: var(--color-bg);
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.gallery-header .section-label {
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 17, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

/* ===========================
   AMENITIES / SERVICES SECTION
   =========================== */
.services {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services-header .section-label {
  justify-content: center;
  color: var(--color-accent-light);
}

.services-header .section-label::before {
  background: var(--color-accent);
}

.services-header .section-title {
  color: var(--color-white);
}

.services-header .section-subtitle {
  color: rgba(250, 247, 242, 0.65);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.service-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.05));
  border-radius: var(--radius-md);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent-light);
}

.service-card h4 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.service-card p {
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===========================
   LOCATION SECTION
   =========================== */
.location {
  background: var(--color-bg-section);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h2 {
  margin-bottom: var(--space-lg);
}

.location-info p {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  font-size: 1.02rem;
}

.location-distances {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.distance-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.distance-item:hover {
  transform: translateX(6px);
}

.distance-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.distance-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

.distance-text {
  flex: 1;
}

.distance-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
}

.distance-value {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 22, 17, 0.80), rgba(107, 79, 15, 0.60));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
  font-size: 1.1rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 36px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cta:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 155, 42, 0.35);
}

.btn-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.btn-cta:hover svg {
  transform: translateX(3px);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-column h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-lg);
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--color-accent-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(250, 247, 242, 0.35);
  font-size: 0.8rem;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(250, 247, 242, 0.6);
  transition: fill var(--transition-fast);
}

.footer-social-link:hover svg {
  fill: var(--color-white);
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(26, 22, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: var(--space-xl);
    transition: right var(--transition-base);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-wrapper img {
    height: 350px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .location-map {
    height: 300px;
  }

  .hero-content {
    padding: var(--space-md);
    padding-top: calc(var(--header-height) + var(--space-xl));
  }

  .booking-container {
    padding: var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item {
    height: 220px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* --- Mobile overlay for nav --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}
