/* ==== SLIDESHOW ==== */
.slideshow-container {
  position: relative;
  margin: 15px auto;
  width: 75%;
  max-width: 1200px;
}

.mySlides {
  display: none;
}

.slideshow-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 4px;
  background-color: #bbb;
  display: inline-block;
  border-radius: 50%;
  transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
  background-color: #717171;
}

/* ==== ABOUT HOTEL ==== */
.about-hotel {
  width: 85%;
  max-width: 1100px;
  text-align: left;
  margin: 40px auto 100px auto;
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-hotel-text {
  flex: 1 1 400px;
  min-width: 280px;
}

.about-hotel h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-hotel p {
  margin-top: 20px;
  font-weight: 300;
  font-size: 18px;
  color: #333;
}

/* ==== ABOUT IMAGES ==== */
.about-hotel-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin: 40px auto 100px auto;
}

.about-hotel-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* ==== HISTORY SECTION ==== */
.history {
  width: 100%;
  background-color: #1E1D1D;
  padding: 80px 0;
}

.history-content {
  margin: 0 auto;
  width: 85%;
  max-width: 900px;
  line-height: 1.6;
  text-align: left;
}

.history h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
}

.history p {
  font-family: "Nunito Sans", 'Roboto', sans-serif;
  color: #eee;
  font-weight: 300;
  font-size: 18px;
}

/* ==== GALLERY SECTION ==== */
.gallery {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9;
}

.gallery-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  width: 85%;
  margin: auto;
  text-align: center;
}

.gallery-title {
  flex: 1 1 300px;
  max-width: 500px;
}

.gallery-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.gallery-title p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.gallery-images-container {
  width: 85%;
  margin: 40px auto 0 auto;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  justify-content: center;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-img:hover img {
  transform: scale(1.05);
}

.gallery-img:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 1024px) {
  .about-hotel {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-hotel-text {
    width: 100%;
  }

  .about-hotel h1 {
    font-size: 36px;
  }

  .gallery-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .slideshow-container {
    width: 95%;
  }

  .about-hotel {
    width: 90%;
  }

  .history-content {
    width: 90%;
    padding: 40px 20px;
  }

  .history h1 {
    font-size: 32px;
  }

  .gallery-title p {
    font-size: 16px;
  }

  .gallery-img img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .about-hotel h1,
  .history h1,
  .gallery-title h2 {
    font-size: 26px;
  }

  .about-hotel p,
  .gallery-title p,
  .history p {
    font-size: 15px;
  }

  .dot {
    height: 10px;
    width: 10px;
  }

  .gallery-images {
    grid-template-columns: 1fr;
  }
}
