/* =========================================================
   CABANA AȘTERNUT DE STELE — STIL GLOBAL
   Paleta: noapte profundă + auriu cald + crem natural
   ========================================================= */

:root {
  /* Culori */
  --midnight:        #0E1B2C;
  --midnight-deep:   #060D17;
  --midnight-soft:   #1A2B3E;
  --gold:            #D4A76A;
  --gold-soft:       #E8C994;
  --gold-bright:     #FFC97A;
  --cream:           #F5EFE6;
  --cream-soft:      #E8DDC8;
  --forest:          #2D3A2E;
  --ember:           #C77A4A;
  --wine:            #7A1A2A;

  /* Tipografie */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-hand:    'Caveat', cursive;

  /* Spațieri */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-style: italic; font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

p { font-weight: 300; }

a { color: var(--gold); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold-soft); }

.handwritten {
  font-family: var(--font-hand);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
}

/* =========================================================
   HEADER & NAVIGAȚIE
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 3rem;
  background: linear-gradient(180deg, rgba(6, 13, 23, 0.92) 0%, rgba(6, 13, 23, 0.7) 80%, rgba(6, 13, 23, 0) 100%);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  padding: 0.6rem 3rem;
  background: rgba(6, 13, 23, 0.96);
  border-bottom: 1px solid rgba(212, 167, 106, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--cream);
}

.logo img {
  width: 56px;
  height: 56px;
  transition: transform 0.3s ease;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.logo-text .tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.nav-menu { display: flex; list-style: none; gap: 2.5rem; }

.nav-menu a {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--gold-soft); }
.nav-menu a.active { color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.6rem;
  padding: 0.3rem;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--midnight-deep);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,23,0.35) 0%, rgba(6,13,23,0.45) 50%, rgba(6,13,23,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 950px;
  animation: fadeUp 1.4s ease both;
}

.hero-eyebrow {
  font-family: var(--font-hand);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--cream-soft);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   BUTOANE
   ========================================================= */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight-deep);
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(212, 167, 106, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--midnight-deep);
}

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--midnight-deep);
}

/* =========================================================
   SECTIUNI
   ========================================================= */

section {
  padding: var(--spacing-xl) 3rem;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .eyebrow {
  font-family: var(--font-hand);
  color: var(--gold);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-title p {
  color: var(--cream-soft);
  font-size: 1.05rem;
}

/* Despre - 3 cards atmosferice */
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.atmosphere-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(212, 167, 106, 0.2);
  background: linear-gradient(180deg, rgba(26, 43, 62, 0.4) 0%, rgba(14, 27, 44, 0.6) 100%);
  position: relative;
  transition: all 0.4s ease;
}

.atmosphere-card:hover {
  border-color: rgba(212, 167, 106, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}

.atmosphere-card .icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  font-style: normal;
}

.atmosphere-card h3 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-style: italic;
}

.atmosphere-card p {
  color: var(--cream-soft);
  font-size: 0.95rem;
}

/* =========================================================
   GALERIE PREVIEW pe Acasa
   ========================================================= */

.gallery-preview {
  background: var(--midnight-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(6,13,23,0.7));
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

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

.gallery-item .caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall  { grid-row: span 2; }

.gallery-cta { text-align: center; margin-top: 3rem; }

/* =========================================================
   STORY (text long-form despre cabana)
   ========================================================= */

.story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
}

.story p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  float: left;
  line-height: 1;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--gold);
}

.story-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 3rem auto;
  position: relative;
}

.story-divider::before, .story-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.story-divider::before { left: -10px; }
.story-divider::after  { right: -10px; }

/* =========================================================
   FACILITĂȚI
   ========================================================= */

.facilities-section {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-soft) 100%);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.facility {
  text-align: center;
  padding: 1.5rem;
}

.facility .icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  font-size: 1.4rem;
  font-style: normal;
}

.facility h4 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.facility p {
  color: var(--cream-soft);
  font-size: 0.85rem;
}

/* =========================================================
   FINAL CTA cu fundal poza
   ========================================================= */

.final-cta {
  position: relative;
  text-align: center;
  padding: 8rem 3rem;
  overflow: hidden;
  background-color: var(--midnight-deep);
}

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

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

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,23,0.7), rgba(6,13,23,0.95));
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.final-cta p {
  color: var(--cream-soft);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

footer {
  background: var(--midnight-deep);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(212, 167, 106, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-brand .logo { margin-bottom: 1.5rem; }

.footer-brand p {
  color: var(--cream-soft);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-style: italic;
}

.footer-col h5 {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: var(--cream-soft);
  font-size: 0.9rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 167, 106, 0.1);
  color: var(--cream-soft);
  font-size: 0.8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom .small {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* =========================================================
   PAGINI INTERNE - hero pages
   ========================================================= */

.page-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--midnight-deep);
}

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

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

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,23,0.55) 0%, rgba(6,13,23,0.85) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  margin-top: 4rem;
}

.page-hero h1 {
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.page-hero h1 em {
  color: var(--gold-soft);
}

.page-hero .eyebrow {
  font-family: var(--font-hand);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* =========================================================
   GALERIE - PAGINA COMPLETA
   ========================================================= */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-filters button {
  background: transparent;
  border: 1px solid rgba(212, 167, 106, 0.3);
  color: var(--cream-soft);
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters button:hover, .gallery-filters button.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 167, 106, 0.08);
}

.masonry {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img { transform: scale(1.04); }

/* Lightbox simplu */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 23, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 92%;
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

/* =========================================================
   REZERVARI
   ========================================================= */

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.calendar-wrapper {
  background: var(--midnight-soft);
  padding: 2.5rem;
  border: 1px solid rgba(212, 167, 106, 0.2);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.calendar-header h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
}

.calendar-nav { display: flex; gap: 0.5rem; }

.calendar-nav button {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(212, 167, 106, 0.3);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  line-height: 1;
}

.calendar-nav button:hover {
  background: var(--gold);
  color: var(--midnight-deep);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-header {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 0.5rem 0;
  font-weight: 500;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  position: relative;
  background: rgba(14, 27, 44, 0.5);
}

.calendar-day:hover:not(.unavailable):not(.empty):not(.past) {
  background: rgba(212, 167, 106, 0.15);
  border-color: var(--gold);
}

.calendar-day.empty { background: transparent; cursor: default; }
.calendar-day.past {
  color: rgba(245, 239, 230, 0.25);
  cursor: not-allowed;
}
.calendar-day.unavailable {
  background: rgba(122, 26, 42, 0.2);
  color: rgba(245, 239, 230, 0.4);
  text-decoration: line-through;
  cursor: not-allowed;
}
.calendar-day.selected {
  background: var(--gold);
  color: var(--midnight-deep);
  border-color: var(--gold);
}
.calendar-day.in-range { background: rgba(212, 167, 106, 0.3); }

.calendar-day .price {
  font-size: 0.65rem;
  color: var(--gold);
  margin-top: 1px;
}
.calendar-day.selected .price { color: var(--midnight-deep); }

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--cream-soft);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(212, 167, 106, 0.3);
}

.legend-swatch.available { background: rgba(14, 27, 44, 0.5); }
.legend-swatch.selected { background: var(--gold); }
.legend-swatch.unavailable { background: rgba(122, 26, 42, 0.4); }

.booking-summary {
  background: var(--midnight-soft);
  padding: 2.5rem;
  border: 1px solid rgba(212, 167, 106, 0.2);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.booking-summary h3 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(212, 167, 106, 0.15);
  color: var(--cream-soft);
  font-size: 0.9rem;
}

.summary-row.total {
  border-bottom: none;
  border-top: 1px solid var(--gold);
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
}

.summary-row.total .price-tag {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
}

.checkbox-extra {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  cursor: pointer;
}

.checkbox-extra input {
  margin-top: 4px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-extra label {
  flex: 1;
  cursor: pointer;
  color: var(--cream-soft);
  font-size: 0.9rem;
}

.checkbox-extra label strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.checkbox-extra .price {
  color: var(--gold);
  font-weight: 500;
}

.booking-button {
  width: 100%;
  margin-top: 1.5rem;
}

.booking-info {
  background: rgba(122, 26, 42, 0.1);
  border-left: 2px solid var(--gold);
  padding: 1.25rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--cream-soft);
  line-height: 1.6;
}

.booking-info strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 4rem;
  border-top: 1px solid rgba(212, 167, 106, 0.15);
}

.policy-item h4 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.policy-item p {
  color: var(--cream-soft);
  font-size: 0.9rem;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-info > p {
  color: var(--cream-soft);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 167, 106, 0.15);
}

.contact-detail .icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
  font-style: normal;
}

.contact-detail .label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-detail .value {
  color: var(--cream);
  font-size: 1.05rem;
}

.contact-detail .value a { color: var(--cream); }
.contact-detail .value a:hover { color: var(--gold); }

.contact-form {
  background: var(--midnight-soft);
  padding: 3rem;
  border: 1px solid rgba(212, 167, 106, 0.2);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.contact-form .subtitle {
  color: var(--cream-soft);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(14, 27, 44, 0.5);
  border: none;
  border-bottom: 1px solid rgba(212, 167, 106, 0.3);
  padding: 0.85rem 0;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-bottom-color: var(--gold);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--cream-soft);
  flex: 1;
  cursor: pointer;
}

/* Honeypot — ascuns vizual și de screen readers, dar disponibil pentru bot-uri */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Feedback inline pentru formular contact */
.form-feedback {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: feedbackIn 0.4s ease;
}

.form-feedback.success {
  background: rgba(212, 167, 106, 0.1);
  border-left-color: var(--gold);
  color: var(--cream);
}

.form-feedback.error {
  background: rgba(199, 122, 74, 0.12);
  border-left-color: var(--ember);
  color: var(--cream);
}

@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.map-section { margin-top: 6rem; }

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;
  background: var(--midnight-soft);
  position: relative;
  border: 1px solid rgba(212, 167, 106, 0.2);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) brightness(0.85);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  section { padding: 4rem 1.5rem; }

  .site-header { padding: 0.8rem 1.5rem; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--midnight-deep);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(212, 167, 106, 0.2);
  }

  .nav-menu.open { display: flex; }
  .menu-toggle { display: block; }

  .logo img { width: 44px; height: 44px; }
  .logo-text .name { font-size: 1.1rem; }
  .logo-text .tag { font-size: 0.6rem; }

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

  .gallery-item.large { grid-column: span 2; }

  .booking-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-summary { position: static; }

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

  .masonry { column-count: 2; }

  .form-row { grid-template-columns: 1fr; }

  .calendar-wrapper { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

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

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .logo-text .tag { display: none; }
}
