/* ================================================
   CULORI PRINCIPALE
   Schimbă valorile de mai jos pentru a recolora site-ul
================================================ */
:root {
  --culoare-fundal:       #faf8f4;   /* fundal pagină (crem deschis) */
  --culoare-text:         #2c3e30;   /* text principal (verde închis) */
  --culoare-primar:       #2c3e30;   /* verde pădure – titluri */
  --culoare-accent:       #c9813a;   /* portocaliu-lemn – accente */
  --culoare-secundar:     #f0e8d8;   /* crem cald – fundaluri secțiuni */
  --culoare-inchis:       #1c2820;   /* fundal întunecat */
  --font-titlu:           'Playfair Display', Georgia, serif;
  --font-text:            'Inter', Arial, sans-serif;
  --raza:                 12px;
}

/* ================================================
   RESET & BAZA
================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  background: var(--culoare-fundal);
  color: var(--culoare-text);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ================================================
   NAVIGATIE
================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);
  color: white;
  transition: background 0.4s;
}

#navbar.scrolled {
  background: rgba(28, 40, 32, 0.96);
  padding: 1rem 2.5rem;
}

.nav-logo {
  font-family: var(--font-titlu);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--culoare-accent); transition: color 0.2s; }

.btn-rezerva {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-rezerva:hover { background: white; color: #1c2820; }

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

.hero-img-wrap {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1rem;
  max-width: 860px;
  margin-top: 5rem;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-titlu);
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.15;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ================================================
   SECTIUNI GENERALE
================================================ */
.section { padding: 6rem 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bg-secondary { background: var(--culoare-secundar); }
.bg-dark { background: var(--culoare-inchis); }
.text-light { color: rgba(255,255,255,0.92); }
.text-center { text-align: center; }

.serif-title {
  font-family: var(--font-titlu);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--culoare-primar);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.bg-dark .serif-title { color: white; }

.text-body {
  font-size: 1.05rem;
  line-height: 1.85;
  opacity: 0.82;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

/* ================================================
   GRID 2 COLOANE
================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { display: none; }
  #navbar { padding: 1.2rem 1.5rem; }
}

/* ================================================
   STACK DE IMAGINI (doua poze suprapuse)
================================================ */
.img-stack { position: relative; }

.img-main {
  border-radius: var(--raza);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.img-secondary {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--raza);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border: 6px solid var(--culoare-fundal);
}

.img-secondary-right {
  left: auto;
  right: -3rem;
  bottom: auto;
  top: 25%;
}

@media (max-width: 768px) {
  .img-secondary { display: none; }
  .img-main { aspect-ratio: 4/3; }
}

/* ================================================
   FEATURI (4 iconite)
================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44,62,48,0.12);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-icon { font-size: 1.2rem; }

/* ================================================
   BANNER POZA LATA
================================================ */
.img-banner {
  border-radius: var(--raza);
  overflow: hidden;
  height: 200px;
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.banner-full {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.banner-full img {
  transform: scale(1.05);
  transition: transform 6s ease;
}

.banner-full:hover img { transform: scale(1); }

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,48,0.15);
}

/* ================================================
   CARDURI CABANE
================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--culoare-fundal);
  border-radius: var(--raza);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.4s, transform 0.4s;
}

.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transform: translateY(-4px);
}

.card-elevated { transform: translateY(-2rem); }
.card-elevated:hover { transform: translateY(-2.25rem); }

@media (max-width: 1024px) { .card-elevated { transform: none; } }

.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { transition: transform 0.6s; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 1.4rem; }
.card-body h3 {
  font-family: var(--font-titlu);
  font-size: 1.15rem;
  color: var(--culoare-primar);
  margin-bottom: 0.5rem;
}
.card-body p { font-size: 0.875rem; opacity: 0.7; line-height: 1.7; font-weight: 300; }

/* ================================================
   EXPERIENȚE — SECTIUNEA INCHISA
================================================ */
.activitati { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.activitate {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.activitate-nr {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,129,58,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-titlu);
  font-size: 1.2rem;
  color: var(--culoare-accent);
  flex-shrink: 0;
}

.activitate h4 {
  font-family: var(--font-titlu);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.activitate p { font-size: 0.875rem; opacity: 0.65; font-weight: 300; }

.exp-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.exp-photo-tall {
  aspect-ratio: 3/4;
  border-radius: var(--raza);
  overflow: hidden;
  margin-top: 3rem;
}

.exp-photo-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exp-photo-col img {
  border-radius: var(--raza);
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .exp-photos { grid-template-columns: 1fr; }
  .exp-photo-tall { margin-top: 0; }
}

/* ================================================
   EVENIMENTE
================================================ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 640px) { .events-grid { grid-template-columns: 1fr; } }

.event-card {
  position: relative;
  border-radius: var(--raza);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.event-card img { transition: transform 0.6s; }
.event-card:hover img { transform: scale(1.05); }

.event-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: white;
  font-family: var(--font-titlu);
  font-size: 1.3rem;
}

/* ================================================
   CONTACT
================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 640px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--raza);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.contact-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.contact-card h4 {
  font-family: var(--font-titlu);
  font-size: 1.05rem;
  color: white;
}

.contact-card p { font-size: 0.9rem; opacity: 0.7; }
.contact-card span { font-size: 0.8rem; opacity: 0.5; }
.contact-card a { color: var(--culoare-accent); font-weight: 500; font-size: 0.95rem; }
.contact-card a:hover { color: white; }

.btn-call {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--culoare-accent);
  color: white;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
}

.btn-call:hover { background: #b06c28; transform: translateY(-2px); }

/* ================================================
   FOOTER
================================================ */
footer {
  background: #111;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
}

/* ================================================
   GALERIE CAMERE
================================================ */
.gallery-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.gallery-cell {
  border-radius: var(--raza);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-cell img {
  transition: transform 0.6s;
}

.gallery-cell:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .gallery-top  { grid-template-columns: 1fr; }
  .gallery-bottom { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
}

/* ================================================
   CĂSUȚE RUSTICE
================================================ */
.casute-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.casute-card {
  background: var(--culoare-secundar);
  border-radius: var(--raza);
  padding: 2.5rem;
}

.casute-card h3 {
  font-family: var(--font-titlu);
  font-size: 1.5rem;
  color: var(--culoare-primar);
  margin-bottom: 1rem;
}

.casute-intro {
  font-size: 0.9rem;
  color: var(--culoare-text);
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.casute-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.casute-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--culoare-text);
}

.casute-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--culoare-accent);
  flex-shrink: 0;
}

.casute-banner {
  background: var(--culoare-primar);
  color: #fff;
  border-radius: var(--raza);
  padding: 3rem 2.5rem;
  text-align: center;
}

.casute-banner h3 {
  font-family: var(--font-titlu);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.casute-banner p {
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .casute-grid { grid-template-columns: 1fr; }
}

/* ================================================
   ANIMATII FADE IN LA SCROLL
================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   HARTA
================================================ */
.map-wrap {
  width: 100%;
  border-radius: var(--raza);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* ================================================
   WHATSAPP BUTON FLOTANT
================================================ */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  color: white;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37,211,102,0.6); }
.wa-fab svg { width: 32px; height: 32px; fill: white; }
.wa-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ================================================
   FORMULAR REZERVARE
================================================ */
#rezervare { background: var(--culoare-secundar); }

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--culoare-fundal);
  padding: 3rem 2.5rem;
  border-radius: var(--raza);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--culoare-primar);
  opacity: 0.75;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-text);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(44,62,48,0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--culoare-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--culoare-accent);
  box-shadow: 0 0 0 3px rgba(201,129,58,0.15);
}

.btn-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--culoare-primar);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-submit:hover { background: var(--culoare-accent); transform: translateY(-2px); }

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  text-align: center;
  opacity: 0.65;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.25rem; }
}

/* ================================================
   ATRACTII ZONA BUZAU
================================================ */
.atractii-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .atractii-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .atractii-grid { grid-template-columns: 1fr; } }

.atractie-card {
  background: var(--culoare-fundal);
  border: 1px solid rgba(44,62,48,0.08);
  border-radius: var(--raza);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.atractie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  border-color: var(--culoare-accent);
}
.atractie-distanta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--culoare-accent);
}
.atractie-card h3 {
  font-family: var(--font-titlu);
  font-size: 1.25rem;
  color: var(--culoare-primar);
  line-height: 1.3;
}
.atractie-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.75;
}

/* ================================================
   TARIFE
================================================ */
#tarife { background: var(--culoare-secundar); }

.pret-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 720px) { .pret-grid { grid-template-columns: 1fr; } }

.pret-card {
  background: var(--culoare-fundal);
  border-radius: var(--raza);
  padding: 2.25rem 2rem;
  border-top: 4px solid var(--culoare-accent);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.pret-card.featured {
  background: var(--culoare-primar);
  color: #fff;
  border-top-color: #fff;
}
.pret-card.featured .pret-label,
.pret-card.featured h3 { color: #fff; }
.pret-card.featured .pret-note { color: rgba(255,255,255,0.7); }

.pret-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--culoare-accent);
}
.pret-card h3 {
  font-family: var(--font-titlu);
  font-size: 1.3rem;
  color: var(--culoare-primar);
  margin-bottom: 0.3rem;
}
.pret-suma {
  font-family: var(--font-titlu);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}
.pret-suma span { font-size: 1rem; font-weight: 400; opacity: 0.7; margin-left: 0.3rem; }
.pret-note { font-size: 0.88rem; opacity: 0.7; line-height: 1.55; margin-top: 0.4rem; }

.pet-friendly-banner {
  margin-top: 2.5rem;
  background: var(--culoare-primar);
  color: #fff;
  border-radius: var(--raza);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  text-align: left;
}
.pet-friendly-banner .pet-icon { font-size: 2.4rem; }
.pet-friendly-banner h4 {
  font-family: var(--font-titlu);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.pet-friendly-banner p { font-size: 0.9rem; opacity: 0.85; }

@media (max-width: 560px) {
  .pet-friendly-banner { flex-direction: column; text-align: center; }
}
