:root {
  --cream: #EAD8C4;
  --sand: #CBBBAA;
  --taupe: #BDAFA1;
  --gray-warm: #B1A39C;
  --brown-muted: #958880;
}

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

body,
html {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Playfair Display', serif;
  color: var(--brown-muted);
}

header {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.logo-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.logo-bar img {
  height: 100px;
  width: auto;
}

.nav-bar {
  position: fixed;
  top: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 12px 30px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 999;
}

nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  padding-bottom: 6px;
  font-weight: 500;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease;
}

nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.booking-btn {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background-color: white;
  color: black;
}

.hero-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
  width: 100%;
}


.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1rem;
}

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

.site-footer {
  background-color: #958880;
  border-top: 1px solid white;
  color: white;
  padding: 40px 20px 20px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact-with-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.footer-logo img {
  height: 150px;
  width: auto;
}

.footer-contact {
  text-align: left;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-contact p,
.footer-contact a {
  margin: 4px 0;
  color: white;
  text-decoration: none;
}

.footer-picto {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-picto img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  text-align: center;
  width: 100%;
}

.content.about-page {
  max-width: 800px;
  margin: 200px auto 100px;
  padding: 0 20px;
  color: var(--brown-muted);
  text-align: center;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

body.inner-page .logo-bar {
  background-color: var(--sand);
  backdrop-filter: none;
}

body.inner-page .nav-bar {
  background-color: var(--taupe);
  backdrop-filter: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

#map {
  width: 100%;
  height: 550px;
  max-width: 950px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.content.about-page {
  max-width: 1200px;
  margin: 160px auto 80px;
  padding: 0 20px;
}

.about-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  text-align: left;
  min-width: 300px;

}

.about-video {
  flex: 1;
  min-width: 300px;
}

.about-video video {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.distante-attractii {
  margin: 60px auto;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
  color: var(--brown-muted);
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.distante-attractii h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.distante-attractii ul {
  list-style: none;
  padding-left: 0;
}

.distante-attractii li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.whatsapp-simple {
  display: inline-block;
  background-color: #CBBBAA;
  color: white;
  border: none;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  transition: background-color 0.3s ease;
}

.whatsapp-simple:hover {
  background-color: var(--gray-warm);
}

.pachete-section {
  padding: 40px;
  background: #fff;
  text-align: center;
}

.pachet-titlu {
  font-size: 1.8rem;
  margin: 0 0 20px;
  color: var(--brown-muted);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pachete-grup {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pachet {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.pachet:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.pachet h2 {
  color: var(--brown-muted);
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pachet h3,
.pachet h4 {
  color: var(--brown-muted);
  margin: 10px 0 5px;
}

.pachet ul {
  padding: 0;
  list-style: none;
  margin: 0 0 10px;
}

.whatsapp-simple {
  display: inline-block;
  background-color: #958880;
  color: white;
  border: none;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  transition: background-color 0.3s ease;
}

.whatsapp-simple:hover {
  background-color: #B1A39C;
}

@media (max-width: 768px) {
  .logo-bar img {
    height: 100px;
    width: auto;
  }

  .nav-bar {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  .booking-btn {
    margin-top: 10px;
  }

  .pachet {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.menu-toggle {
  display: center;
  font-size: 2rem;
  color: white;
  position: fixed;
  top: 24px;
  left: 20px;
  z-index: 1001;
  cursor: pointer;
}

.mobile-menu-slide {
  position: fixed;
  top: 90px;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 20px 20px;
  gap: 20px;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-menu-slide a {
  color: white;
  top: 0px;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 0;
  display: inline-block;
  position: relative;
}

.mobile-menu-slide a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease;
}

.mobile-menu-slide a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu-slide a.booking-btn::after {
  display: none;
}

.mobile-menu-slide .booking-btn {
  background-color: transparent;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid white;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-slide .booking-btn:hover {
  background-color: white;
  color: black;
}

body.despre-page .mobile-menu-slide {
  background-color: rgba(203, 187, 170, 0.95);
  backdrop-filter: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-bar {
    display: none;
  }

  .mobile-menu nav a {
    display: inline-block;
    position: relative;
  }

  .mobile-menu .booking-btn {
    border: none;
  }
}

.contact-section {
  background-color: white;
  padding: 50px 20px;
  color: white;
  font-family: 'Playfair Display', serif;
}

.contact-top {

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 950px;
  margin: 150px auto 40px auto;
  gap: 50px;
  text-align: center;
  flex-direction: row;
}

.contact-info h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--brown-muted);
}

.contact-info p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 10px 0;
  color: var(--brown-muted);
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  color: var(--brown-muted);
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-button .whatsapp-btn {
  background-color: #958880;
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.3rem;
  transition: background-color 0.3s ease;
}

.contact-button .whatsapp-btn:hover {
  background-color: #BDAFA1;
}

.map-inside-contact {
  display: flex;
  justify-content: center;
}

#map-contact {
  width: 100%;
  max-width: 950px;
  height: 500px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .contact-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info h3 {
    font-size: 1.8rem;
  }

  .contact-info p {
    font-size: 1.1rem;
  }

  .contact-button .whatsapp-btn {
    font-size: 1.1rem;
    padding: 14px 14px;
  }
}

.contact-info h3,
.contact-info p,
.contact-info a {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.leaflet-top.leaflet-left {
  top: auto;
  bottom: 20px;
  left: 20px;
}

.camere-container {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 0;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .camera-slideshow {
    height: 300px;
  }

  .camera-slideshow img {
    height: 300px;
  }
}

.camere-prezentare {
  background-color: white;
  color: #fff;
  padding: 180px 20px 40px;
  font-family: 'Playfair Display', serif;
  text-align: center;

}

.camere-prezentare .container {
  max-width: 960px;
  margin: 0 auto;
}

.camere-prezentare h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--brown-muted);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.camere-prezentare p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--brown-muted);
}

/* lista de dotari */
.dotari-lista {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  color: var(--brown-muted);
}

.dotari-lista li {
  background-color: rgba(255, 255, 255, 0.1);
  /* 🔁 schimbă aici */
  border: 1px solid black;
  border-radius: 20px;
  padding: 20px;
  width: 160px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1rem;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
  margin: 10px;
}


.dotari-lista li:hover {
  transform: scale(1.05);
}

.dotari-lista img {
  width: 60px;
  height: 60px;

  filter: brightness(0) invert(0);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .dotari-lista {
    gap: 20px;
  }

  .dotari-lista li {
    width: 45%;
    padding: 15px;
  }

  .dotari-lista img {
    width: 40px;
    height: 40px;
  }
}

.slideshow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
  /* adaugă spațiu sub imagine */
}

.slideshow {
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
}

.slide.active {
  opacity: 1;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #999;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .slideshow {
    height: 300px;
  }
}

.cantonament-sectiune {
  scroll-margin-top: 180px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cantonament-text {
  flex: 1;
  min-width: 300px;
  color: var(--brown-muted);
}

.cantonament-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--brown-muted);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cantonament-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  flex-direction: column;
  margin-bottom: 20px;
}

.cantonament-slideshow {
  width: 100%;
  max-width: 800px;
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.cantonament-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.cantonament-slideshow img.active {
  opacity: 1;
}

.cantonament-slideshow .dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cantonament-slideshow .dot {
  width: 10px;
  height: 10px;
  background-color: #999;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cantonament-slideshow .dot.active {
  background-color: #333;
}

.cantonament-sectiune.reverse {
  flex-direction: row-reverse;
}

.main-content {
  padding-top: 170px;
}

@media (max-width: 768px) {

  .cantonament-sectiune,
  .cantonament-sectiune.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cantonament-text p:last-of-type {
    margin-bottom: 0px;
  }

  .cantonament-sectiune {
    margin-bottom: 20px;
  }

  .cantonament-slideshow {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .cantonament-slideshow {
    height: auto;
    aspect-ratio: 4 / 3;
    position: relative;
  }

  .cantonament-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
}

.politica-page .politica-content {
  max-width: 1200px;
  margin: 160px auto 80px;
  padding: 0 20px;
  color: var(--brown-muted);
  background: transparent;

}

.politica-page .politica-article {
  max-width: 880px;
  margin: 0 auto;
}

.politica-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.politica-page h2 {
  font-size: 1.4rem;
  margin: 24px 0 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.politica-page p {
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.politica-page ul {
  margin: 0 0 14px 1.2rem;
  line-height: 1.7;
}

.politica-page .contact {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid #2c6ed5;
  border-radius: 10px;
  background: #F6F2EE;
}

body.politica-page .mobile-menu-slide {
  background-color: rgba(203, 187, 170, 0.95);
  backdrop-filter: none;
  background-attachment: scroll !important;
}


@media (max-width: 768px) {
  .politica-page .politica-content {
    margin: 140px auto 70px;
    background-attachment: scroll !important;

  }
}
.cantonament-text {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  color: var(--brown-muted);
}
.cantonament-text-wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .cantonament-text-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cantonament-text {
    max-width: 100%;
  }

  .cantonament-slideshow {
    max-width: 100%;
    height: auto;
  }
}

