/* ===== VARIABILE ===== */
:root {
  --color-anthracite: #2C3140;
  --color-wood-warm:  #8B5E3C;
  --color-forest:     #2D5016;
  --color-cream:      #F7F3ED;
  --color-gold-warm:  #C9A84C;
  --color-white:      #FFFFFF;
  --color-text-dark:  #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-border:     #E2DDD6;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', Arial, sans-serif;
  --font-accent:  'Dancing Script', cursive;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: .25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-text-dark); background: var(--color-white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TIPOGRAFIE ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== BUTOANE ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn--gold {
  background: var(--color-gold-warm);
  color: var(--color-anthracite);
}
.btn--gold:hover {
  background: #b8962e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--anthracite {
  background: var(--color-anthracite);
  color: var(--color-white);
}
.btn--anthracite:hover {
  background: #1e2330;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--color-anthracite);
  border: 2px solid var(--color-anthracite);
}
.btn--outline:hover {
  background: var(--color-anthracite);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--large { padding: 16px 40px; font-size: 1.1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--color-anthracite);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar__logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar__logo-text {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  white-space: nowrap;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__nav a {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: .02em;
}
.navbar__nav a:hover { color: var(--color-gold-warm); }
.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switcher {
  display: flex;
  gap: 6px;
}
.lang-switcher a {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lang-switcher a:hover, .lang-switcher a.active {
  color: var(--color-gold-warm);
  background: rgba(255,255,255,.1);
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.7));
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-anthracite);
  z-index: 1001; /* peste navbar (1000) ca X-ul să fie apăsabil */
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 88px 24px 40px;
  overflow-y: auto;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  transition: color var(--transition);
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--color-gold-warm); }
.mobile-menu .btn--gold {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  border-bottom: none;
  font-family: var(--font-body);
}
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--color-white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  z-index: 1;
}
.mobile-menu__lang {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  width: 100%;
  justify-content: center;
}
.mobile-menu__lang a {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.mobile-menu__lang a:hover { color: var(--color-gold-warm); background: rgba(255,255,255,.08); }
.mobile-menu__lang a.active { color: var(--color-gold-warm); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/cabana-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 49, 64, 0.45);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 24px;
  max-width: 800px;
}
.hero__logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 24px;
  object-fit: cover;
  mix-blend-mode: multiply;
  background: rgba(255,255,255,.9);
}
.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp .8s ease .2s forwards;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0;
  animation: fadeInUp .8s ease .5s forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  margin-bottom: 32px;
  color: rgba(255,255,255,.9);
}
.hero__cta {
  opacity: 0;
  animation: fadeInUp .8s ease .8s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECȚIUNI GENERALE ===== */
.section { padding: 80px 0; }
.section--cream { background: var(--color-cream); }
.section--anthracite { background: var(--color-anthracite); color: var(--color-white); }
.section--forest { background: var(--color-forest); color: var(--color-white); }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-gold-warm);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.section--anthracite .section-lead { color: rgba(255,255,255,.7); }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* Fade-in la scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STORY ===== */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story__text p { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.8; }
.story__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ===== FACILITĂȚI ===== */
.facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.facility-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.facility-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.facility-item__icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.facility-item__text {
  font-size: .95rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ===== CAMERE ===== */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.room-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-cream);
}
.room-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.room-card:hover .room-card__image img { transform: scale(1.04); }
.room-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  color: var(--color-text-muted);
  font-size: .9rem;
  text-align: center;
  padding: 16px;
}
.room-card__body { padding: 24px; }
.room-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.room-card__meta {
  display: flex;
  gap: 16px;
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.room-card__meta span { display: flex; align-items: center; gap: 4px; }
.room-card__price {
  font-size: 1rem;
  color: var(--color-wood-warm);
  font-weight: 600;
  margin-bottom: 16px;
}
.room-card__desc {
  font-size: .9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== FOIȘOR ===== */
.gazebo {
  position: relative;
  overflow: hidden;
}
.gazebo__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/foisor.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.gazebo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 49, 64, 0.72);
}
.gazebo__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
  padding: 80px 24px;
}
.gazebo__content h2 { color: var(--color-gold-warm); margin-bottom: 24px; }
.gazebo__content p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.8; }
.gazebo__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: 400px;
}
.gazebo__images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== ACTIVITĂȚI ===== */
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.activity-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.activity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.activity-card__icon { font-size: 2rem; margin-bottom: 12px; }
.activity-card__name { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 6px; }
.activity-card__dist { font-size: .85rem; color: var(--color-gold-warm); font-weight: 600; }

/* ===== GALERIE PREVIEW ===== */
.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 32px;
}
.gallery-preview__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.gallery-preview__grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

/* ===== HARTĂ & CONTACT ===== */
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info__icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-text-muted); margin-bottom: 2px; }
.contact-info__value { font-size: 1rem; font-weight: 500; }
.distances__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.distance-item {
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
}
.distance-item__name { font-weight: 500; }
.distance-item__km { color: var(--color-gold-warm); font-weight: 600; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-embed iframe { width: 100%; height: 400px; border: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-anthracite);
  color: rgba(255,255,255,.8);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer__logo img { width: 48px; height: 48px; border-radius: 50%; mix-blend-mode: multiply; background: rgba(255,255,255,.9); }
.footer__logo-text { font-family: var(--font-accent); font-size: 1.3rem; color: var(--color-white); }
.footer__tagline { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.6; }
.footer__heading {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-gold-warm);
  margin-bottom: 16px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--color-gold-warm); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__gdpr a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__gdpr a:hover { color: rgba(255,255,255,.7); }
.footer__lang-switch { display: flex; gap: 10px; }
.footer__lang-switch a { color: rgba(255,255,255,.4); font-size: .82rem; font-weight: 600; text-transform: uppercase; transition: color var(--transition); }
.footer__lang-switch a:hover, .footer__lang-switch a.active { color: var(--color-gold-warm); }

/* ===== GALERIE COMPLETĂ ===== */
.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__masonry a {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.gallery__masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery__masonry a:hover img { transform: scale(1.03); }
@media (max-width: 768px) {
  .gallery__masonry { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery__masonry { grid-template-columns: 1fr; }
}

/* ===== PAGINA REZERVARE ===== */
.booking-page { padding-top: 100px; }
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.booking-step {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  background: var(--color-cream);
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-right: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}
.booking-step:last-child { border-right: none; }
.booking-step.active { background: var(--color-anthracite); color: var(--color-white); }
.booking-step.completed { background: var(--color-forest); color: var(--color-white); }
.booking-step__num {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.booking-panel { display: none; }
.booking-panel.active { display: block; }

.booking-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.booking-grid > aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.booking-form-wrap { background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); padding: 40px; }
.booking-summary { background: var(--color-cream); border-radius: var(--radius-md); padding: 28px; }
.booking-summary__title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: .9rem; }
.summary-row:last-child { border-bottom: none; }
.summary-row--total { font-weight: 700; font-size: 1rem; color: var(--color-wood-warm); }

/* Disponibilitate calendar — puncte flatpickr */
.flatpickr-day { position: relative; }
.avail-dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.avail-dot--free    { background: #4ade80; }
.avail-dot--pending { background: #fbbf24; }
.avail-dot--full    { background: #f87171; }

/* Legendă sidebar */
.avail-legend {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-top: 16px;
  font-size: .85rem;
}
.avail-legend__title { font-weight: 600; margin-bottom: 12px; color: var(--color-text-dark); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; }
.avail-legend__item { display: flex; align-items: center; gap: 10px; padding: 5px 0; color: var(--color-text); }
.avail-legend__item .avail-dot { position: static; transform: none; flex-shrink: 0; }

/* Form elements */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 8px; color: var(--color-text-dark); }
.form-label .required { color: #e53e3e; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--color-gold-warm); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.form-control.error { border-color: #e53e3e; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-error { display: none; font-size: .8rem; color: #e53e3e; margin-top: 4px; }
.form-error.visible { display: block; }
.form-hint { font-size: .8rem; color: var(--color-text-muted); margin-top: 4px; }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-gold-warm); cursor: pointer; }
.form-check label { font-size: .9rem; cursor: pointer; }
.form-check label a { color: var(--color-wood-warm); text-decoration: underline; }

.booking-nav { display: flex; justify-content: space-between; margin-top: 32px; }

.type-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.type-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}
.type-card:hover { border-color: var(--color-gold-warm); }
.type-card.selected { border-color: var(--color-gold-warm); background: #fffbf0; }
.type-card input { display: none; }
.type-card__icon { font-size: 2.4rem; margin-bottom: 8px; }
.type-card__title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 4px; }
.type-card__desc { font-size: .85rem; color: var(--color-text-muted); }

/* Price display */
.price-breakdown {
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  font-size: .9rem;
}
.price-breakdown__row { display: flex; justify-content: space-between; padding: 4px 0; }
.price-breakdown__total { font-weight: 700; font-size: 1.05rem; color: var(--color-wood-warm); border-top: 1px solid var(--color-border); padding-top: 8px; margin-top: 4px; }

/* ===== ROOM PICK CARDS (step 2 booking) ===== */
.room-pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.room-pick-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  transition: border-color .2s, box-shadow .2s;
}
.room-pick-card:hover:not(.room-pick-card--unavail) {
  border-color: var(--color-gold-warm);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.room-pick-card.selected {
  border-color: var(--color-gold-warm);
  box-shadow: 0 0 0 1px var(--color-gold-warm), var(--shadow-md);
}
.room-pick-card--unavail {
  cursor: not-allowed;
  filter: grayscale(75%);
  opacity: .5;
}
.room-pick-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-pick-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  padding: 36px 12px 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.room-pick-card__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  font-family: var(--font-body);
  opacity: .9;
}
.room-pick-card__badge--sel {
  color: var(--color-gold-warm);
  font-weight: 700;
  opacity: 1;
}

/* submit disabled */
#submit-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ===== CONFIRMARE ===== */
.confirm-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}
.confirm-box {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
}
.confirm-box__icon { font-size: 4rem; margin-bottom: 16px; }
.confirm-box h1 { color: var(--color-forest); margin-bottom: 8px; }
.confirm-box__code {
  display: inline-block;
  background: var(--color-cream);
  border: 2px solid var(--color-gold-warm);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-wood-warm);
  font-weight: 700;
  margin: 16px 0;
}
.confirm-box__notice { color: var(--color-text-muted); font-size: .95rem; margin: 12px 0; }

/* ===== ACTIVITĂȚI PAGINA ===== */
.activities-full__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.activity-full-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 32px;
  margin-bottom: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.activity-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.activity-full-card__header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 16px; }
.activity-full-card__icon { font-size: 2.5rem; flex-shrink: 0; }
.activity-full-card__dist { color: var(--color-gold-warm); font-weight: 700; font-size: .9rem; }
.activity-full-card__body { color: var(--color-text-muted); font-size: .95rem; line-height: 1.7; }
.activity-full-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { background: var(--color-cream); border-radius: 20px; padding: 4px 12px; font-size: .8rem; color: var(--color-text-muted); }

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.season-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--color-border);
}
.season-card__icon { font-size: 2rem; margin-bottom: 8px; }
.season-card__name { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 12px; color: var(--color-wood-warm); }
.season-card__list { font-size: .85rem; color: var(--color-text-muted); line-height: 1.8; }

/* ===== POLITICI ===== */
.policy-page { padding-top: 100px; }
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.policy-content h2 { margin: 32px 0 12px; font-size: 1.3rem; }
.policy-content h3 { margin: 24px 0 8px; font-size: 1.1rem; }
.policy-content p, .policy-content li { color: var(--color-text-muted); font-size: .95rem; line-height: 1.75; margin-bottom: .75em; }
.policy-content ul { padding-left: 20px; list-style: disc; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding-top: 100px; }
.contact-full__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 40px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 0 60px;
  background: var(--color-anthracite);
  text-align: center;
}
.page-header h1 { color: var(--color-white); }
.page-header p { color: rgba(255,255,255,.65); margin-top: 12px; }

/* ===== COOKIES BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(44, 49, 64, 0.97);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  border-top: 1px solid rgba(201,168,76,.4);
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }
.cookie-banner p a { color: var(--color-gold-warm); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn--cookie-secondary {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.25);
  font-size: .85rem;
  padding: 10px 18px;
}
.btn--cookie-secondary:hover {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}

/* ===== ALERT/NOTICE ===== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert--info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert--warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ===== UTILITY ===== */
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-gold   { color: var(--color-gold-warm); }
.text-wood   { color: var(--color-wood-warm); }
.text-forest { color: var(--color-forest); }
.text-muted  { color: var(--color-text-muted); }
.d-none { display: none; }
.w-100  { width: 100%; }
