:root {
  --wood-dark: #2b1d14;
  --wood: #5c3a24;
  --wood-light: #a97c50;
  --gold: #c8922a;
  --cream: #faf5ee;
  --cream-dim: #f0e6d8;
  --ink: #2a221c;
  --ink-soft: #6b5c4d;
  --radius: 10px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-head); margin: 0 0 .5em; color: var(--wood-dark); }

/* ── Header ───────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-dim);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wood-dark);
  text-decoration: none;
  margin-right: auto;
}
.logo span { color: var(--gold); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  transition: color .15s;
}
.main-nav a:hover { color: var(--gold); }

.ig-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--wood-dark);
  border: 1px solid var(--wood-light);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.ig-btn:hover { background: var(--wood-dark); color: var(--cream); border-color: var(--wood-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--wood-dark); }

/* ── Hero ─────────────────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('pictures/1X2A1975.JPG');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,13,8,.55) 0%, rgba(20,13,8,.65) 55%, rgba(20,13,8,.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  padding: 0 24px;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 16px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  color: #ecdfcd;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--wood-dark); }
.btn-primary:hover { background: #dba33a; }
.btn-outline { border: 1px solid rgba(250,245,238,.6); color: var(--cream); }
.btn-outline:hover { background: rgba(250,245,238,.12); }

/* ── Sections ─────────────────────── */
.section { padding: 88px 24px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-sub { color: var(--ink-soft); margin-top: -8px; margin-bottom: 36px; max-width: 560px; }

.despre { background: var(--cream); text-align: center; }
.despre p { max-width: 680px; margin: 0 auto 48px; color: var(--ink-soft); }
.despre-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.point {
  background: var(--cream-dim);
  border-radius: var(--radius);
  padding: 28px;
}
.point h3 { font-size: 1.1rem; margin-bottom: 8px; }
.point p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.galerie { background: var(--cream-dim); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  position: relative;
  background: var(--cream);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }

.video-section { background: var(--cream); text-align: center; }
.video-placeholder {
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--wood-dark);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
}
.video-placeholder-inner svg { color: var(--gold); }

.contact { background: var(--cream-dim); text-align: center; }
.contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-decoration: none;
  color: var(--ink);
  min-width: 220px;
  text-align: left;
  transition: transform .15s;
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card svg { color: var(--gold); flex-shrink: 0; }
.contact-card strong { display: block; font-size: .95rem; }
.contact-card span { color: var(--ink-soft); font-size: .88rem; }
.contact-card-static { cursor: default; }
.contact-card-static:hover { transform: none; }

/* ── Footer ───────────────────────── */
.site-footer { background: var(--wood-dark); color: #d9c9b4; padding: 28px 24px; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
}
.footer-inner a { text-decoration: none; color: var(--gold); }

/* ── Lightbox ─────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 6, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: 4px;
}
.lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 16px;
  line-height: 1;
}
.lightbox-close { top: 16px; right: 16px; font-size: 2.4rem; }
.lightbox-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 8px; top: 50%; transform: translateY(-50%); }

/* ── Responsive ───────────────────── */
@media (max-width: 860px) {
  .despre-points { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .ig-btn span { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 20px; }
}
