* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: white;
  overflow-x: hidden;
  background: #dedad3;
  padding-top: 80px;
}

body.no-scroll {
  overflow: hidden;
}

/*FONTS */
.marcellus-regular {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

/* HEADER */

.header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;
}

/* NAV CONTAINER */

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
}

/* LOGO */

.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

/* HAMBURGER */

.hamburger {
  width: 30px;
  height: 22px;

  position: relative;

  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  position: absolute;
  left: 0;

  width: 100%;
  height: 3px;

  background: white;

  border-radius: 2px;

  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
  background-color: #5a421c;
}

.hamburger span:nth-child(2) {
  top: 9px;
  background-color: #5a421c;
}

.hamburger span:nth-child(3) {
  top: 18px;
  background-color: #5a421c;
}

/* HAMBURGER → X */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* MOBILE MENU */

.nav-links {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 20px;

  background: #dedad3;
  backdrop-filter: blur(10px);

  opacity: 0;
  pointer-events: none;

  transition: 0.4s;
}

/* MENU ACTIVE */

.nav-links.active {
  opacity: 1;
  pointer-events: auto;
}

/* LINKS */

.nav-links a {
  color: #5a421c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
}

/* BOOK BUTTON */

.book-btn {
  margin-top: 20px;

  background: white;

  padding: 14px 28px;

  border-radius: 4px;

  font-weight: bold;
}

/* HERO */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.hero-carousel img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 45px;
  margin-bottom: 10px;
  color: #f5dbad;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-btn {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #f5dbad;
  color: #4a5a3b;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/*REVIEWS*/

/* === General === */
.reviews {
  padding: 80px 20px;
  background: #dedad3;
}
.reviews-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* === Wrapper and Buttons === */
.reviews-wrapper {
  position: relative;
}

.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 22px;
  z-index: 5;
}

.review-prev {
  left: -10px;
}
.review-next {
  right: -10px;
}

.review-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

/* === Slider Mobile === */
.reviews-slider {
  display: flex;
  gap: 20px;

  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* ASCUNDEM scrollbar */
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.reviews-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.reviews-track {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-left: calc((100% - 90%) / 2); /* centrare card */
  padding-right: calc((100% - 90%) / 2);
}

.review-card {
  scroll-snap-align: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  gap: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; /* centrarea conținutului pe orizontală */
}

.reviews-track::-webkit-scrollbar {
  display: none;
}
.reviews-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* === Stars, text, author === */
.review-stars {
  color: #f5a623;
}
.review-text {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
  line-height: 1.7;
  font-size: 16px;
  margin: 10px 0;
}
.review-ratings {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
}
.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
}
.review-source {
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}
.reviews-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* corporate & retreats SECTION */
.corporate-section {
  padding: 20px 20px;
}

.corporate-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLU */
.corporate-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #5a421c;
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

/* CARDS */
.corporate-cards {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #5a421c;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CARD */
.corporate-card {
  background-color: #eee;
  border: 1px solid #4a5a3b;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

/* HOVER (subtil premium) */
.corporate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ICON */
.corporate-icon {
  margin-bottom: 15px;
}

.corporate-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: #4a5a3b;
}

/* TEXT */
.corporate-card h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #5a421c;
  margin-bottom: 10px;
  font-size: 32px;
}

.corporate-card p {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.corporate-btn {
  font-family: "Marcellus", serif;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #0a6f3c;
  color: #4a5a3b;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: white;
}

.corporate-btn:hover {
  background: #f5dbad;
  color: #4a5a3b;
}

/*ROOMS SECTION*/

.rooms-section {
  padding: 80px 20px;
  background: #dedad3;
}

/* Text */
.rooms-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #5a421c;
}

.rooms-content h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  margin-bottom: 15px;
}

.rooms-content p {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #5a421c;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 24px;
}

/* Button */
.rooms-btn {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #5a421c;
  color: #f5dbad;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.rooms-btn:hover {
  background: #4a5a3b;
}

/* Gallery */

.rooms-gallery {
  display: grid;
  gap: 15px;
}

/* Images */
.rooms-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.rooms-gallery img:hover {
  transform: scale(1.05);
}

.room-features {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}

.room-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.room-feature span {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.room-feature svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
  color: #4a5a3b; /* culoarea brandului */
}

/* buyout SECTION */
/* SECTION */
.buyout-section {
  padding: 20px 20px;
}

.buyout-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLU + DESCRIERE */
.buyout-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #5a421c;
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}

.buyout-description {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #5a421c;
  font-size: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* SPLIT */
.buyout-split {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CARD */
.buyout-option {
  width: 100%;
}

/* IMAGE */
.buyout-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.buyout-image img {
  width: 100%;
  max-height: 220px; /* 👈 mai mic pe mobile */
  object-fit: cover;
  display: block;
}

/* TEXT TOP (Chalet / Villa) */
.buyout-overlay-top {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #f5dbad;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 20px;
  font-weight: 500;

  padding: 6px 12px;
  background-color: #4a5a3b;
  border-radius: 6px;
}

/* TEXT BOTTOM (capacitate) */
.buyout-overlay-bottom {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #f5dbad;
  background-color: #4a5a3b;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  font-size: 15px;
}

/* ABOUT SECTION */

/* SECTION */
.about-section {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  padding: 60px 20px;

  color: #5a421c;
  margin: auto;
}

/* MOBILE FIRST */
.moodboard-3 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

/* IMAGES */
.moodboard-3 img {
  width: 100%;
  height: auto; /* 🔥 păstrează proporția reală */
  max-height: 500px; /* 🔥 limitează să nu fie prea mari */
  object-fit: cover;
}

/* TEXT */
.about-text h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 32px;
}

.about-text p {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 24px;
}

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* EXPERIENCES SECTION */

.experiences {
  padding: 20px 20px;

  background: #dedad3;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.experience-page {
  padding: 100px 20px 60px;
  max-width: 1100px;
  margin: auto;
}

.experience-content {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
}

.experience-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.experience-content p {
  color: #555;
  line-height: 1.6;
}

.section-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;

  font-size: 32px;
  color: #5a421c;

  margin-bottom: 40px;
}

/* GRID */

.experiences-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 20px;
}

/* CARD */

.experience-card {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;

  height: 260px;

  overflow: hidden;

  border-radius: 8px;

  cursor: pointer;
}

/* IMAGE */

.experience-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

/* OVERLAY */

.experience-overlay {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;

  padding: 20px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));

  color: white;
}

.experience-overlay h3 {
  font-size: 20px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

/* Adventures Page */
.adventures-page {
  padding: 60px 20px 40px;
  max-width: 1100px;
  margin: auto;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

/* Moodboard */
.adventures-moodboard {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.adventures-moodboard img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.adventure-icon svg {
  width: 50px;
  height: 50px;
  stroke: #4a5a3b;
  fill: none;
}

.adventure-icon img {
  width: 50px;
  height: 50px;
  stroke: #4a5a3b;
  fill: none;
}

/* Fade-in effect */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Adventure list */
.adventures-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.adventure-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.adventure-icon {
  flex-shrink: 0;
}

.adventure-text {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  color: #5a421c;
}

.adventure-text strong {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-bottom: 6px;
  font-size: 30px;
}

/*whatsapp float*/

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation: pulse 10s infinite;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*FOOTER*/

.footer-chalet {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  color: #5a421c;
  text-align: center;
  padding: 50px 20px 20px 20px;
}

/* Social media centered */
.footer-social {
  margin-bottom: 20px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.footer-social .social-icon {
  display: inline-block;
  margin: 0 12px;
  transition:
    transform 0.3s,
    color 0.3s;
  color: #ccc; /* culoarea implicită */
}

.footer-social .social-icon:hover {
  transform: scale(1.2);
  color: #f5a623; /* culoarea la hover */
}

/* Icon-urile SVG iau culoarea din currentColor */
.footer-social svg {
  width: 30px;
  height: 30px;
  fill: #4a5a3b;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s;
}
.footer-social a img {
  width: 30px;
  height: 30px;
}
.footer-social a:hover {
  transform: scale(1.2);
}

/* Contact rezervari */
.footer-contact {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 30px;
  font-size: 20px;
}
.footer-contact a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
  text-decoration: none;
}

.footer-contact p {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* Two columns */
.footer-links-columns {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-column h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #5a421c;
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-column ul {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 8px;
}
.footer-column ul li a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: #5a421c;
}

/* Copyright */
.footer-bottom {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #777;
}

/* Container social in hamburger */
.mobile-menu-social {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.mobile-menu-social .social-icon {
  display: inline-block;
  transition:
    transform 0.3s,
    color 0.3s;
  color: #5a421c; /* culoare implicită */
}

.mobile-menu-social .social-icon:hover {
  transform: scale(1.2);
  color: #4a5a3b; /* culoare la hover */
}

.mobile-menu-social svg {
  width: 30px; /* aceeasi dimensiune ca in footer */
  height: 30px;
  fill: currentColor;
}

.terms-page {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
  text-decoration: none;
  font-size: 7px;
  padding: 60px;
}

.gdpr-page {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
  text-decoration: none;
  font-size: 7px;
  padding: 60px;
}

.cookies-page {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #4a5a3b;
  text-decoration: none;
  font-size: 7px;
  padding: 60px;
}

/* CUSTOM 5STARDESK */


/* Responsive */
@media (min-width: 900px) {
  .corporate-cards {
    flex-direction: row;
    gap: 40px;
  }

  .corporate-card {
    width: 50%;
    text-align: left;
  }

  .corporate-title {
    font-size: 36px;
  }

  .buyout-title {
    font-size: 36px;
  }

  .buyout-split {
    flex-direction: row;
    gap: 40px;
  }

  .buyout-option {
    width: 50%;
  }

  .buyout-overlay-top {
    font-size: 24px;
  }

  .buyout-overlay-bottom {
    font-size: 16px;
  }

  /* DESKTOP */
  @media (min-width: 900px) {
    .buyout-overlay-top {
      font-size: 24px;
    }

    .buyout-overlay-bottom {
      font-size: 16px;
    }
  }

  .moodboard-3 {
    display: flex;
    flex-direction: row; /* 🔥 FORȚĂM row (important) */
    justify-content: center;
    align-items: center;
    gap: 0px;
  }

  .moodboard-3 img {
    width: 34%; /* 🔥 nu 100% */
    max-width: 600px;
    height: auto;
    padding: 4px;
  }

  .adventures-moodboard {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  .adventures-moodboard img {
    max-width: 1500px;
    max-height: 1080px;
  }

  .adventure-item {
    gap: 25px;
  }

  .adventure-text {
    font-size: 18px;
  }

  .room-feature svg {
    width: 36px;
    height: 36px;
  }

  .room-feature {
    font-size: 15px;
  }

  .room-features {
    justify-content: flex-start; /* 👈 aliniere stânga */
  }
}

/*DESKTOP QUERY*/

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .mobile-menu-social {
    display: contents;
  }

  .nav-links {
    position: static;

    flex-direction: row;

    height: auto;
    width: auto;

    background: none;
    backdrop-filter: none;

    opacity: 1;
    pointer-events: auto;

    gap: 30px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .book-btn {
    display: contents;
    margin-left: 20px;
    border: 1px solid #0a6f3c;
  }

  .nav-container {
    padding: 25px 60px;
  }

  .hero-content h1 {
    font-size: 85px;
  }

  .hero-content .corporate-btn {
    font-size: 30px;
  }

  .experiences-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-card:hover img {
    transform: scale(1.1);
  }

  .rooms-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 50px;
    max-width: 1600px;
    margin: auto;
  }

  .rooms-content {
    text-align: left;
    margin: 0;
  }

  .rooms-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .rooms-gallery img {
    height: 300px;
  }

  /*about si moodboard*/

  .reviews-slider {
    overflow: hidden;
    padding: 0 calc(50% - ((100% - 40px) / 3) / 2); /* padding pentru centrare card mijloc */
  }

  .reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s linear;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer-links ul li {
    margin-bottom: 5px;
  }
  .footer-social a {
    margin-right: 15px;
  }

  .footer-links-columns {
    flex-direction: column;
    gap: 20px;
  }

  .review-card {
    justify-content: space-between; /* distribuie conținutul uniform */
  }

  .reviews-track {
    align-items: stretch; /* toate cardurile iau înălțimea maximă */
  }

  .review-text {
    flex-grow: 1; /* ocupă spațiul liber dintre stele și ratings */
  }
}

@media (max-width: 768px) {
  .review-card {
    justify-content: space-between; /* distribuie conținutul uniform */
  }

  .reviews-track {
    align-items: stretch; /* toate cardurile iau înălțimea maximă */
  }

  .review-text {
    flex-grow: 1; /* ocupă spațiul liber dintre stele și ratings */
  }
}

/* Performance optimizations */
.hero-carousel img {
  will-change: opacity;
}
.reviews-track {
  will-change: transform;
}
img {
  max-width: 100%;
  height: auto;
}
