/*Animations*/
.fadeinleft {
  opacity: 0;
  transform: translateX(200px);
  transition: all 1.3s ease-out;
}

.fadeinright {
  opacity: 0;
  transform: translateX(-200px);
  transition: all 0.8s ease-out;
}

.fadeindown {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-out;
}

.fade-in {
  opacity: 0;
  transition: all 1.3s ease-in;
}

.active-left,
.active,
.active-right,
.active-down {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
}

.fadein {
  opacity: 0;
}

/* End Animations*/

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url("../img/background10.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-title-line1 {
  display: block;
  margin-bottom: 10px;
}

.hero-title-line2 {
  display: block;
  font-size: 2rem;
}
.book-now {
  background: white;
  color: black;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 8px;
}

.book-now:hover {
  background: rgb(190, 187, 187);
  color: black;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 8px;
}

/* About section */

.luxury-section {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.text-content {
  padding-right: 40px;
}

.description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
}

.learn-more-btn::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover {
  color: #2c2c2c;
  text-decoration: none;
}

.learn-more-btn:hover::after {
  transform: translateX(5px);
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.image-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

.image-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.image-top {
  grid-column: 2;
  grid-row: 1;
}

.image-bottom {
  grid-column: 2;
  grid-row: 2;
}

/* Carousel Gallery */

.rooms-section {
  background-color: #596562;
  color: white;
  position: relative;
  overflow: hidden;
  padding-bottom: 5%;
  height: 100%;
}

.section-header {
  padding: 60px 0 0 0;
  position: relative;
  z-index: 10;
}

.explore-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.section-title-carousel {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.see-all-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.see-all-btn::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.see-all-btn:hover {
  color: white;
  text-decoration: none;
}

.see-all-btn:hover::after {
  transform: translateX(5px);
}

.carousel-container {
  position: relative;
  margin-top: 40px;
}

.carousel-slide {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 60px 40px 40px 40px;
  color: white;
}

.room-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}

.room-details {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Facilities */

.facilities {
  font-family: "Playfair Display", serif;
  background-color: #fdfbf7;
}

/* Testimonials */

.custom-testimonials-container {
  padding: 60px 15px;
  background-color: #fdfbf7;
}

.custom-testimonials-title {
  font-family: "Georgia", serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-row {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.custom-card {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  background-color: #fff;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.custom-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.custom-name {
  font-family: "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.custom-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.custom-logo {
  width: 120px;
  margin-top: 20px;
  opacity: 0.9;
}

/* Social media */

.social-section {
  padding-bottom: 100px;
  padding-top: 50px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: #2c2c2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon i {
  color: white;
  font-size: 1.3rem;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover i {
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

/* Responsive Design */

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .text-content {
    padding-right: 0;
    text-align: center;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }

  .images-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-large {
    grid-row: span 1;
    height: 300px;
  }

  .image-top,
  .image-bottom {
    grid-column: 1;
    height: 250px;
  }
  .section-title {
    font-size: 2.8rem;
  }

  .see-all-btn {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 20px;
  }

  .carousel-slide {
    height: 70vh;
  }

  .slide-content {
    padding: 40px 30px 30px 30px;
  }

  .room-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-section {
    background-attachment: scroll;
  }
  .luxury-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .images-grid {
    gap: 15px;
  }
  .section-header {
    padding: 40px 0 0 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .carousel-slide {
    height: 350px;
  }

  .slide-content {
    padding: 30px 20px 25px 20px;
  }

  .room-title {
    font-size: 1.5rem;
  }

  .room-details {
    font-size: 0.85rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 45%;
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .social-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .social-icons {
    margin-bottom: 40px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon i {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  .section-title {
    font-size: 1.8rem;
  }

  .learn-more-btn {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .section-title {
    font-size: 1.8rem;
  }

  .explore-label {
    font-size: 0.8rem;
  }

  .see-all-btn {
    font-size: 0.8rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    top: 45%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    gap: 10px;
  }

  .social-icon i {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
