/*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 {
  height: 100vh;
  background: url("../img/image2.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-family: Garamond, serif;
  position: relative;
  z-index: 1;
  color: white;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.demo-content {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
}

.hotel-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #c2bfbf;
}

.hotel-title {
  font-family: "Georgia", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #333;
}

.luxury-subtitle {
  font-family: "Georgia", serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #666;
}

.hotel-description {
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.director-signature {
  margin-top: 3rem;
}

.director-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.director-title {
  font-size: 1.25rem;
  color: #777;
}

.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.section-content {
  display: flex;
  align-items: center;
}
.section-content .text {
  max-width: 50%;
  padding: 20px;
}
.section-content .carousel-container {
  max-width: 50%;
}

.about-section {
  padding: 100px 0;
  background-color: #f8f6f3;
}

/* Stars */
.stars {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.star {
  color: #c9a05f;
  font-size: 18px;
}

/* Section Title */
.section-title {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Main Heading */
.main-heading {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.2;
  color: #2c2c2c;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Paragraph Text */
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #7a7a7a;
  margin-bottom: 25px;
}

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  padding: 12px 35px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 10px;
}

.read-more-btn:hover {
  background-color: #000000;
  color: white;
  border: 2px solid #000000;
}

/* Images */
.about-images {
  position: relative;
  height: 100%;
}

.image-left {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 30px;
}

.image-right {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 80px;
}

.image-container {
  position: relative;
  height: 500px;
}

.img-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 350px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-2 {
  position: absolute;
  right: 0;
  top: 100px;
  width: 55%;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Rooms Section */
.rooms-section {
  padding: 80px 0;
  background-color: #f8f6f3;
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #2c2c2c;
  margin-bottom: 50px;
  font-weight: 400;
}

/* Room Card */
.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 30px;
  height: 400px;
  cursor: pointer;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image {
  transform: scale(1.1);
}

/* Book Badge */
.book-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Room Overlay */
.room-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  padding: 30px;
  z-index: 1;
}

.room-price {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a05f;
  margin-bottom: 10px;
  font-weight: 400;
}

.room-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: white;
  font-weight: 400;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: url("../img/background2.jpg") center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 35, 30, 0.85);
  z-index: 1;
}

.testimonials-content {
  position: relative;
  z-index: 2;
}

/* Section Label */
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-weight: 400;
}

/* Main Heading */
.testimonials-heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: white;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 100%;
}

/* Author Section */
.author-section {
  display: flex;
  align-items: center;
  justify-content: center; /* ✅ added */
  gap: 20px;
  margin-bottom: 30px;
}

.author-image {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 5px;
}

.star {
  color: #c9a05f;
  font-size: 14px;
}

.author-name {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  margin: 0;
}

.author-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 2;
}

/* Carousel Indicators */
.carousel-indicators {
  position: relative;
  margin: 0;
  bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: #c9a05f;
  width: 10px;
}

/* Hide default carousel controls */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin: 20px;
}
.service-card i {
  font-size: 40px;
  color: #c49d68;
}
.service-card h5 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
  color: #777;
}
.container {
  padding-top: 50px;
}

.blog-section {
  padding: 60px 0;
}

.blog-card {
  background-color: #f8f6f3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.category {
  font-size: 14px;
  color: black;
  margin-top: 15px;
}

.blog-card h5 {
  font-size: 20px;
  margin-top: 15px;
  font-weight: 600;
}

.blog-card p {
  font-size: 14px;
  color: black;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .main-heading {
    font-size: 42px;
  }

  .img-1,
  .img-2 {
    position: relative;
    width: 100%;
    height: 350px;
    top: 0;
    margin-bottom: 20px;
  }

  .image-container {
    height: auto;
  }
  .section-heading {
    font-size: 40px;
  }

  .room-card {
    height: 350px;
  }

  .room-title {
    font-size: 28px;
  }
  .testimonials-heading {
    font-size: 40px;
  }

  .quote-icon {
    font-size: 150px;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 36px;
    padding: 0 20px;
  }
  .about-section {
    padding: 60px 0;
  }

  .main-heading {
    font-size: 36px;
  }

  .stars {
    justify-content: center;
  }

  .section-title {
    text-align: center;
  }

  .main-heading {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .read-more-btn {
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
  }
  .rooms-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
  }

  .room-card {
    height: 320px;
  }

  .room-title {
    font-size: 26px;
  }
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-heading {
    font-size: 36px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .quote-icon {
    display: none;
  }

  .author-section {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero-text {
    font-size: 28px;
  }
  .hotel-title {
    font-size: 2.5rem;
  }

  .luxury-subtitle {
    font-size: 1.75rem;
  }

  .hotel-description {
    font-size: 1rem;
  }

  .director-name {
    font-size: 1.25rem;
  }

  .director-title {
    font-size: 1rem;
  }
  .main-heading {
    font-size: 32px;
  }
  .section-heading {
    font-size: 32px;
  }

  .room-card {
    height: 300px;
    margin-bottom: 20px;
  }

  .room-title {
    font-size: 24px;
  }

  .room-overlay {
    padding: 20px;
  }
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-heading {
    font-size: 32px;
  }

  .section-label {
    font-size: 10px;
  }

  .author-image {
    width: 60px;
    height: 60px;
  }
}
