/* about-style.css */

.main-heading {
  font-weight: 700;
  color: #0056b3;
  letter-spacing: 1px;
  font-size: 32px;
}

.divider {
  width: 300px;
  border: 1px solid #000000;
  margin: 20px auto;
}

.subheading {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.subheading .highlight {
  color: #0056b3;
  font-weight: 700;
}

.about-paragraph {
  font-size: 17px;
  color: #000000;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-intro {
  margin-top: 30px;
  font-style: italic;
  font-size: 20px;
  color: #444;
}

.mission-statement {
  font-family: 'Brush Script MT', cursive;
  color: #a0332a;
  font-size: 29px;
  font-weight: bold;
}

/* slider-style.css */

.hotel-slider {
  background: #fff;
  padding: 60px 0;
}

.slider-heading {
  font-weight: bold;
  font-size: 24px;
  color: #222;
  letter-spacing: 0.5px;
}

.slider-heading .highlight-blue {
  color: #0056b3;
}

.slider-divider {
  width: 80px;
  border: 1.5px solid #ccc;
  margin: 15px auto 40px auto;
}

.carousel-image-wrapper {
  position: relative;
}

.grayscale-img {
  filter: grayscale(100%);
}

.carousel-caption {
  bottom: 30px;
  color: #111;
  font-family: 'Georgia', serif;
  text-shadow: none;
}

.slide-quote {
  font-style: italic;
  font-size: 18px;
  color: #111;
}

.slide-footer {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Brush Script MT', cursive;
  color: #000;
  margin-top: 10px;
}

.play-button {
  display: inline-block;
  background: rgba(0, 86, 179, 0.8);
  color: #fff;
  font-size: 24px;
  padding: 18px 20px;
  border-radius: 50%;
  text-decoration: none;
  margin-top: 20px;
}

.play-button i {
  margin-left: 2px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  padding: 15px;
}


/* Play button style on carousel image */
.video-slide-img {
  filter: brightness(75%);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 86, 179, 0.85);
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.video-play-button:hover {
  background: #004c9a;
  transform: translate(-50%, -50%) scale(1.1);
}

.carousel-image-wrapper {
  position: relative;
}

.slider-heading {
  font-weight: bold;
  font-size: 34px;
  color: #222;
  letter-spacing: 0.5px;
}

.slider-heading .highlight-blue {
  color: #0056b3;
}

.slider-divider {
  width: 600px;
  border: 1px solid #000000;
  margin: 15px auto 40px auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 3px;
}

/* Limit carousel width and center it */
.slider-boxed {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Fix the height of the slider image */
.carousel-image-wrapper img,
.video-slide-img {
  height: 480px;
  object-fit: cover;
  width: 100%;
  filter: brightness(75%);
  display: block;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .carousel-image-wrapper img,
  .video-slide-img {
    height: 280px;
  }
}


.happiness-card {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.happiness-card img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}

.happiness-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.happiness-card h6 {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* Business Hotels Section */
.business-hotels {
  background: #fff;
}

.business-hotels .section-title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

.business-hotels .section-title span {
  color: #0056B3; /* Bootstrap blue */
}

.business-hotels p {
  max-width: 1000px;
  margin: 0 auto;
  color: #000000;
  font-size: 18px;
  line-height: 1.7;
}

.business-hotels .btn {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 4px;
}

.business-hotels .carousel-inner img {
  max-height: 400px;
  object-fit: cover;
}

/* Hotel logo overlay (top-right corner) */
.business-hotels .hotel-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  max-height: 60px;
  background: rgba(255,255,255,0.9);
  padding: 5px 10px;
  border-radius: 4px;
}

/* Slider arrows styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 20px 20px;
}

.carousel-control-prev-icon.bg-dark,
.carousel-control-next-icon.bg-dark {
  background-color: rgba(0,0,0,0.7) !important;
}

.wedding-section {
  background: #fff;
  color: #000;
}

.wedding-section h2 {
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

.wedding-section h2 .highlight,
.wedding-section .subheading .highlight {
  color: #0056B3; /* Blue color */
}

.wedding-section .subheading {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

.wedding-section p {
  font-size: 17px;
  max-width: 1000px;
  margin: 0 auto;
  color: #000000;
  line-height: 1.7;
}

.wedding-section img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.wedding-section img:hover {
  transform: scale(1.02);
}

.events-section {
  background: #fff;
  color: #000;
}

.events-section h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

.events-section h2 .highlight,
.events-section .subheading .highlight {
  color: #0056B3; /* Blue color */
}

.events-section .subheading {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

.events-section p {
  font-size: 17px;
  max-width: 1000px;
  margin: 0 auto;
  color: #000000;
  line-height: 1.7;
}

.events-section img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.events-section img:hover {
  transform: scale(1.02);
}

