.hero {
  height: 100vh;
  position: relative;
  color: var(--first-color);
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/gallery-header.png') no-repeat center center / cover;
  transform: scale(1.1) translateY(40px);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
  z-index: 1;
}

.hero.animate::before {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 5;
  position: relative;
}

.hero-content h1 {
  font-family: var(--font-header);
  margin-top: 4rem;
  font-size: var(--hero-header-size);
  line-height: 1.2;
}

.hero-content span {
  font-weight: bold;
}

.hero-content p {
  font-family: var(--font-body);
  margin: 1rem 0;
  font-size: var(--hero-body-size);
}


.hero-content h1,
.hero-content p{
  opacity: 0;
  transform: translateY(40px);
}


.hero.animate .hero-content h1 {
  animation: heroTextFade 1s ease forwards;
  animation-delay: 0.6s;
}

.hero.animate .hero-content p {
  animation: heroTextFade 1s ease forwards;
  animation-delay: 0.9s;
}

@keyframes heroTextFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.highlights {
  min-height: 100vh;
  padding: 6rem 2rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-header);
  font-size: var(--header-section-size);
  color: var(--third-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-desc {
  line-height: 35px;
  font-size: var(--body-section-size);
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0 auto 4rem;
  color: var(--third-color);
}

.highlight-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
}

.highlight-card {
  width: 350px;
  height: 550px;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.85);
  opacity: 0.6;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.highlight-card.active {
  transform: scale(1);
  opacity: 1;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.highlights-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG DEFAULT STATE */
.arrow-icon {
  width:50px;
  height: 50px;
  color: var(--third-color);
  opacity: 0.85;
  transition: 
      color 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease;
}

/* HOVER EFFECT — SVG ONLY */
.highlights-btn:hover .arrow-icon {
  opacity: 1;
}

/* DIRECTIONAL MICRO-MOVEMENT (LUXURY FEEL) */
.highlights-btn.next:hover .arrow-icon {
  transform: translateX(7px);
}

.highlights-btn.prev:hover .arrow-icon {
  transform: translateX(-7px);
}


.facilities {
  min-height: 100vh;
  padding: 6rem 2rem;
  text-align: left;
}

.facilities-slider {
  overflow: hidden;
  max-width: 100%;
}

.facilities-track {
  display: flex;
  transition: transform 0.6s ease;
}

.facilities-track img {
  width: 350px;
  height: 550px;
  object-fit: cover;
  margin-right: 1.5rem;
  border-radius: 8px;
}

.facilities-controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.facilities-controls button {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}


/* HOVER EFFECT — SVG ONLY */
.facilities-btn:hover .arrow-icon {
  opacity: 1;
}

/* DIRECTIONAL MICRO-MOVEMENT (LUXURY FEEL) */
.facilities-btn.next:hover .arrow-icon {
  transform: translateX(7px);
}

.facilities-btn.prev:hover .arrow-icon {
  transform: translateX(-7px);
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.dots span.active {
  background: #333;
} 




.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}