/* ==================== RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==================== FONTURI GLOBALE ==================== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  background: #000;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Spatiu pentru sticky buttons */
body::after {
  content: "";
  display: block;
  height: 80px;
}

/* ==================== TITLURI ==================== */
h1, h2, h3 {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 20px;
}
h1 { font-size: 32px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.nav-logo {
  background: none;
  object-fit: contain;
  height: 115px;
  max-width: 160px;
  margin-left: -40px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin-right: 20px;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.navbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0px;
  margin-right: -40px;
}

/* Hamburger (final = combinat: display none by default + stilurile finale) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  z-index: 1100;
  transition: color 0.2s;
}
.hamburger:hover {
  color: #e74c3c;
}

.navbar-social {
  display: flex;
  gap: 32px;
}

.navbar-social a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: invert(100%);
  transition: transform 0.2s;
}

.navbar-social a img:hover {
  transform: scale(1.1);
}

/* ==================== LANGUAGE SWITCHER (final) ==================== */
.language-switcher {
  display: flex;
  flex-direction: column; /* final: suprapuse */
  margin-left: 60px;
  gap: 6px;
  margin-bottom: 10px; /* distanta fata de social icons (ramane ca in CSS-ul tau) */
}

.language-switcher button {
  padding: 5px 10px;
  border: 1px solid #fff;
  background: none;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.language-switcher button.active {
  background: #fff;
  color: #000;
  font-weight: 600;
}

/* ==================== MOBILE NAV ==================== */
@media (max-width: 768px) {
  .hamburger { display: block; z-index: 1002; }

  .nav-links {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 16px; margin: 10px 0; }
  .navbar-right { align-items: center; }
}

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

.hero-video, .section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before, .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content, .section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  color: #fff;
}

/* ==================== SECTIUNE DESPRE ==================== */
.hero-section h2 { font-size: 48px; margin-bottom: 20px; }
.hero-section p  { font-size: 22px; max-width: 800px; margin: 0 auto; line-height: 1.8; }

/* ==================== FACILITATI ==================== */
#facilitati {
  padding: 80px 20px;
  background: #000;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#facilitati h2 {
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.facilitati-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  justify-items: center;
  align-items: start;
}

.facilitate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: transform 0.3s ease;
}

.facilitate:hover { transform: translateY(-5px); }

.facilitate img {
  width: 70px;
  height: 70px;
  padding: 5px;
  background: #fff;
  border-radius: 40%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.facilitate:hover img { transform: scale(1.1); }

.facilitate span {
  font-family: 'Fira Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #e6e6e6;
  text-align: center;
  letter-spacing: 1px;
  max-width: 70px;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .facilitati-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}

/* ==================== GALERIE ==================== */
.galerie {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.swiper-slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

/* ==================== BUTOANE STICKY ==================== */
.sticky-book, .sticky-whatsapp {
  position: fixed;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-book {
  bottom: 20px;
  background: #000;
  color: #fff;
  padding: 16px 28px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.sticky-book:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  text-decoration: none;
}

.sticky-book:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.sticky-whatsapp {
  bottom: 80px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sticky-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  pointer-events: none;
}

/* ==================== VOUCHER ==================== */
#voucher {
  max-width: 700px;
  margin: 80px auto;
  padding: 40px 20px;
  background: #111;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#voucher h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

#voucher form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#voucher form label {
  font-weight: 500;
  font-size: 15px;
}

#voucher form input,
#voucher form select,
#voucher form button {
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
}

#voucher form input,
#voucher form select {
  background: #222;
  color: #fff;
}

#voucher form button {
  background: #c0392b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#voucher form button:hover { background: #e74c3c; }

/* Mesaj voucher */
#voucherMessage {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-top: 20px;
  min-height: 40px;
  line-height: 1.4;
  transition: all 0.3s ease;
  z-index: 10;
}

/* ==================== CONTACT SOCIAL ==================== */
.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  z-index: 10;
  position: relative;
}

.contact-social img {
  width: 32px;
  height: 32px;
  filter: invert(1);
  transition: transform 0.2s;
}

.contact-social img:hover { transform: scale(1.1); }

/* ==================== RECENZII ==================== */
#recenzii-google {
  padding: 80px 20px;
  background: #000;
  color: #fff;
}

#recenzii-google h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 28px;
}

.recenzii-swiper { padding: 20px 0; }

.swiper-slide.review-card {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 600px;
  margin: auto;
  transition: transform 0.3s ease;
}

.swiper-slide.review-card:hover { transform: translateY(-5px); }

.review-header img.review-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-top: 10px;
}

.review-icon { width: 24px; height: 24px; }

.stars { color: #f1c40f; font-size: 16px; }

.review-card p {
  color: #ddd;
  font-style: italic;
  margin-bottom: 15px;
}

.review-link {
  color: #1abc9c;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-link:hover { text-decoration: underline; }

.review-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Navigatie recenzii (final) */
.recenzii-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.recenzii-nav .swiper-button-prev,
.recenzii-nav .swiper-button-next {
  position: relative;
  color: #2c5f2d;
}

/* Ascunde sagetile default din swiper in recenzii */
.recenzii-swiper .swiper-button-prev,
.recenzii-swiper .swiper-button-next {
  display: none;
}

/* ==================== CALENDAR (pastreaza look-ul final) ==================== */
#calendar {
  max-width: 520px;
  width: 100%;
  margin: 40px auto;
  font-size: 13px;
  min-height: 500px;

  /* final overrides */
  background: #0f0f0f;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.fc-toolbar-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;

  /* ramane ca in CSS-ul tau (chiar daca fontul nu e incarcat) */
  font-family: 'Playfair Display', serif;
}

.fc-button {
  background: #1f1f1f !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  font-size: 13px !important;
}

.fc-button:hover { background: #c0392b !important; }

.fc-col-header-cell {
  background: #161616;
  color: #fff;
  padding: 10px 0;
  font-weight: 500;
  font-size: 13px;
}

.fc-daygrid-day-number {
  color: #fff;
  font-size: 13px;
  padding: 6px;
}

.fc-daygrid-event {
  background-color: #b91c1c;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  padding: 2px 3px;
  text-align: center;
}

.fc-day-today {
  background: rgba(192,57,43,0.15) !important;
}

@media (max-width: 768px) {
  #calendar { max-width: 90%; min-height: 550px; }
  .fc-toolbar-title { font-size: 14px; }
  .fc-button { font-size: 11px !important; padding: 3px 5px !important; }
  .fc-daygrid-day-number { font-size: 11px; }
  .fc-daygrid-event { font-size: 10px; padding: 1px 2px; }
}

header h1{
  font-size: 28px; /* ajusteaza daca vrei si mai mic */
  font-weight: 500;
  line-height: 1.3;
}

.hero-description{
  display: none;
}
header.section-bg{
  margin-top: 90px; /* ajusteaza in functie de inaltimea reala a navbarului */
}
.poi-img{
  width:100%;
  height:auto;
  border-radius:12px;
  display:block;
  margin: 10px 0 12px;
}
.toc-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.toc-buttons a{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  letter-spacing:0.3px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.04);
  transition:all 0.25s ease;
}

.toc-buttons a:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.35);
  transform:translateY(-2px);
}

.toc-buttons a:active{
  transform:translateY(0);
}
/* Cuprins - butoane */
.toc-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:0;
}

.toc-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  text-decoration:none;
  font-weight:600;
  line-height:1;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.toc-links a:hover{
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

.toc-links a:active{
  transform: translateY(0);
}

.toc-links a:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 2px;
}