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

html {
  scroll-behavior: smooth;
    overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fffdfa;
  color: #333;
  line-height: 1.6;
    overflow-x: hidden;
  width: 100%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
   transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #bb4e1e;
  border-bottom: 2px solid #bb4e1e;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


nav.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}


/* Responsive Navbar */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #222;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 24px;
    background-color: #fff;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }



nav {
  transition: transform 0.3s ease;
}


  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 0;
  }
}


header {
  position: relative;
  height: 100vh;
  overflow: hidden;
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 30px 40px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: #bb4e1e;
}

section p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
}

.lista-facilitati {
  list-style: none;
  font-size: 18px;
  text-align: center;
  padding: 0;
}

.lista-facilitati li {
  margin: 10px 0;
}

.povestea-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 40px;
}

.povestea-text {
  flex: 1 1 400px;
}

.povestea-imgs {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.povestea-imgs img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.povestea-imgs img:hover {
  transform: scale(1.03);
}

.galerie {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.galerie img {
  width: calc(33% - 14px);
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

  .povestea-wrapper {
    flex-direction: column;
  }
}

.atractii-stil {
  background-color: #0057a3;
  color: white;
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}

.atractii-wrapper {
  max-width: 1200px;
  margin: auto;
}

.atractii-grid-poze {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  margin-top: 40px;
}

.card-atractie img {
  width: 100%;
  max-width: 230px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.card-atractie img:hover {
  transform: scale(1.05);
}

.card-atractie p {
  font-style: italic;
  margin-top: 10px;
  color: #f0f0f0;
}

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

@media (max-width: 600px) {
  .atractii-grid-poze {
    grid-template-columns: 1fr;
  }
}

.rezerva-wrapper {
  text-align: center;
  padding: 20px 20px 60px;
  background: #fff;
}

.btn-rezerva {
  background-color: #2ea44f;
  color: white;
  padding: 14px 30px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-rezerva:hover {
  background-color: #24933e;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  background: #f3f0ee;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
}



.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-container {
  display: flex;
  align-items: flex-start; /* <- aliniere sus */
  gap: 2rem;
  flex-wrap: wrap;
}


.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}

.contact-map {
  flex: 1 1 300px;
  aspect-ratio: 1 / 1;
  min-width: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.btn-rezerva {
  padding: 0.8rem 1.5rem;
  background-color: #2e9d44;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-rezerva:hover {
  background-color: #248037;
}

.contact-map iframe {
  width: 100%;
  max-width: 450px;   /* limitează lățimea pe desktop */
  height: 350px;       /* mai mic decât înainte */
  border: 0;
  border-radius: 8px;
}


.sigle-wrapper {
  width: 100%;
  text-align: center;
}

.sigle-wrapper img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* Spațiu între imagini și text în secțiunea .camera */
.camera .galerie {
  margin-bottom: 20px;
}

/* Spațiu între camere (carduri) */
.camera {
  margin-bottom: 40px;
}

/* Optional – mai mult spațiu pe mobil */
@media (max-width: 768px) {
  .camera {
    margin-bottom: 60px;
  }

  .camera .galerie {
    margin-bottom: 24px;
  }
}




.galerie-grid {
  padding: 50px 20px;
  text-align: center;
   max-width: 95%;       /* în loc de 1200px */
  margin: 0 auto;
  padding: 10px 5%;
}

.grid-poze {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.galerie-grid img {
  width: 100%;
  height: 250px;       /* sau 300px, în funcție de preferință */
  object-fit: cover;   /* taie marginile și păstrează centrul imaginii */
  border-radius: 10px;
}


.grid-poze img:hover {
  transform: scale(1.05);
}

.galerie h2 {
  margin-top: 80px; /* mărește spațiul față de secțiunea anterioară */
}