html {
  overflow-x: hidden;
  height: 100%; 
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/Image-7.jpeg') center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-family: serif;
  font-size: 3rem;
}

.hero .btn-hero {
  background-color: #8b7355;
  color: white;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero .btn-hero:hover {
  background-color: #7a654a;
  color: white;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  margin: 0 auto;
}

/* Welcome Section */
.welcome h2 {
  font-family: serif;
  font-size: 2.5rem;
}

/* Amenities cards */
.amenity-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  transition: all 0.3s;
}

/* Room cards */
.room-card img {
  transition: transform 0.7s;
}

.room-card:hover img {
  transform: scale(1.05);
}

.room-card h5:hover {
  color: #8b7355;
  transition: color 0.3s;
}

/* Testimonial */
.testimonial {
  position: relative;
  background: #1a1a1a;
  color: white;
  overflow: hidden;
  padding: 6rem 1rem;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(139, 115, 85, 0.1);
  filter: blur(120px);
  border-radius: 50%;
}

.testimonial h2 {
  font-family: serif;
  font-style: italic;
}

.anim-zoom {
  transition: transform 0.7s !important;
}

.anim-zoom:hover {
  transform: scale(1.025) !important;
}

/* Custom ratios for images */
.ratio-4x5 {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ratio-3x4 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero .btn-hero {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

/* Welcome Section */
.welcome h2 {
  font-size: 2rem;
}

.welcome p {
  font-size: 0.95rem;
}

/* Amenities Section */
.amenity-card h5 {
  font-size: 1rem;
}

.amenity-card small {
  font-size: 0.7rem;
}

/* Rooms Section */
.room-card h5 {
  font-size: 1rem;
}

.room-card small {
  font-size: 0.65rem;
}

/* Testimonial Section */
.testimonial h2 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Media Queries for tablets and mobiles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .welcome h2 {
    font-size: 1.75rem;
  }

  .room-card h5 {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .btn-hero {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .welcome h2 {
    font-size: 1.5rem;
  }

  .welcome p {
    font-size: 0.85rem;
  }

  .amenity-card h5 {
    font-size: 0.9rem;
  }

  .amenity-card small {
    font-size: 0.6rem;
  }

  .room-card h5 {
    font-size: 0.85rem;
  }

  .room-card small {
    font-size: 0.6rem;
  }

  .testimonial h2 {
    font-size: 1.25rem;
  }

  /* Hero Content center for mobile */
  .hero-content {
    padding: 0 1rem;
  }

  /* Adjust position of the "Years of Excellence" box */
  .welcome .position-absolute {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .welcome h2 {
    font-size: 1.3rem;
  }

  .testimonial h2 {
    font-size: 1rem;
  }
}