@charset "utf-8";
/* CSS Document */
a{ color:#FF6600; text-decoration:none;}
a:hover{ color:#000; text-decoration:none;}
   
    .carousel-item {
      position: relative;
      overflow: hidden;
      height:600px;
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 4s ease;
    }

    .carousel-item.active img {
      transform: scale(1.1); /* Zoom effect */
    }

    .carousel-caption {
      background: rgba(0, 0, 0, 0.5);
      padding: 1rem;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .carousel-item {
        height: 300px;
      }
    }

    body {
      font-family: 'Poppins', sans-serif;
    }

    .welcome-section {
      background: url('https://source.unsplash.com/1600x900/?hotel,building') center center/cover no-repeat;
      background-color: #f8f8f8;
      position: relative;
      padding:40px 20px;
      text-align: center;
      color: #333;
    }

    .welcome-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(255, 255, 255, 0.85);
      z-index: 0;
    }

    .welcome-section .container {
      position: relative;
      z-index: 1;
      max-width:1200px;
    }

    .welcome-subtitle {
      font-size: 0.95rem;
      font-weight: 600;
      color: #00695c;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      margin-bottom: 10px;
    }

    .welcome-subtitle::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background-color: #bfa76f;
      margin: 8px auto 0;
      border-radius: 3px;
    }

    .welcome-section h2 {
      color: #004d40;
      font-weight: 700;
      font-size: 2.2rem;
      margin-bottom: 25px;
    }

    .welcome-section p {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .read-more-btn {
      background-color: #00695c;
      color: #fff;
      padding: 10px 25px;
      border-radius: 5px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .read-more-btn:hover {
      background-color: #004d40;
      color: #fff;
    }

    @media (max-width: 768px) {
      .welcome-section {
        padding:20px 20px;
      }

      .welcome-section h2 {
        font-size: 1.7rem;
      }
    }

    body {
      font-family: 'Poppins', sans-serif;

    }

    .amenities-section {
      background: linear-gradient(to right, #d4ecd9, #ffe8cc);
      padding: 80px 20px;
      text-align: center;
    }

    .amenities-section h6 {
      font-weight: 600;
      color: #00695c;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
      margin-bottom: 10px;
    }

    .amenities-section h6::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background-color: #bfa76f;
      margin: 8px auto 0;
      border-radius: 2px;
    }

    .amenities-section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #004d40;
      margin-bottom: 15px;
    }

    .amenities-section p.lead {
      color: #444;
      max-width: 850px;
      margin: 0 auto 50px;
    }

    .amenity-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      padding: 30px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .amenity-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }

    .amenity-icon {
      font-size: 40px;
      color: #007e6a;
      margin-bottom: 20px;
    }

    .amenity-title {
      font-weight: 700;
      color: #004d40;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .amenity-desc {
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .arrow-icon {
      color: #004d40;
      font-size: 1.2rem;
      transition: margin-left 0.3s;
    }

    .amenity-card:hover .arrow-icon {
      margin-left: 8px;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fdf8ee;
    }

    .attractions-section {
      padding:20px 20px;
      text-align: center;
    }

    .attractions-section h6 {
      text-transform: uppercase;
      font-size: 0.9rem;
      font-weight: 600;
      color: #806c5c;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
      margin-bottom: 10px;
    }

    .attractions-section h6::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background-color: #bfa76f;
      margin: 8px auto 0;
      border-radius: 3px;
    }

    .attractions-section h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #004d40;
      margin-bottom: 40px;
    }

    .main-image-container {
      position: relative;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .main-image {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .main-caption {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(0, 77, 64, 0.85);
      color: #fff;
      padding: 20px;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }

    .main-caption h5 {
      font-weight: 700;
      margin-bottom: 5px;
    }

    .main-caption p {
      margin-bottom: 0;
      font-size: 0.9rem;
    }

    .thumbnail-gallery {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .thumbnail {
      cursor: pointer;
      transition: transform 0.2s ease;
      border-radius: 6px;
      overflow: hidden;
      border: 2px solid transparent;
    }

    .thumbnail img {
      width:200px;
      height:150px;
      object-fit: cover;
      border-radius: 6px;
    }

    .thumbnail:hover {
      transform: scale(1.05);
      border-color: #007e6a;
    }

    .thumbnail.active {
      border-color: #007e6a;
    }

    .thumb-caption {
      font-size:16px;
      margin-top: 5px;
      color: #004d40;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fdfaf4;
    }

    .gallery-section {
      padding:20px 20px;
      text-align: center;
    }

    .gallery-section h6 {
      text-transform: uppercase;
      font-size: 0.9rem;
      font-weight: 600;
      color: #7c684e;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }

    .gallery-section h6::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #bfa76f;
      margin: 8px auto 0;
      border-radius: 3px;
    }

    .gallery-section h2 {
      font-weight: 700;
      color: #004d40;
      margin-bottom: 50px;
    }

    .gallery-box {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
    }

    .gallery-box img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .gallery-box:hover img {
      transform: scale(1.05);
    }

    .label-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: #007e6a;
      color: #fff;
      padding: 5px 12px;
      font-size: 0.8rem;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 500;
    }

    /* Lightbox Modal */
    .modal-img {
      max-width: 100%;
      height: auto;
    }

    .modal-content {
      background-color: transparent;
      border: none;
      text-align: center;
    }

    .modal-caption {
      font-size: 1rem;
      color: #fff;
      margin-top: 15px;
    }

    .modal-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: #fff;
      background: rgba(0, 0, 0, 0.4);
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
    }

    .modal-nav-btn:hover {
      background: rgba(0, 0, 0, 0.6);
    }

    .modal-prev {
      left: 20px;
    }

    .modal-next {
      right: 20px;
    }

    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
    }
.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #ffc107;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #ffc107 !important;
  color: #000 !important;
}

.back-to-top {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

  .reservation-box {
    background: linear-gradient(135deg, #fdf6e3, #f8e6b3); /* Light gold gradient */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .reservation-box label {
    font-weight: 600;
  }

  .btn-brand {
    background-color: #006c4b; /* Dark green from Quality Inn logo */
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .btn-brand:hover {
    background-color: #004f35;
  }

  .call-btn {
    background-color: #f7931e; /* Orange color */
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .call-btn:hover {
    background-color: #d56b00; /* Darker orange on hover */
    color: #fff;
    transform: scale(1.05);
    text-decoration: none;
  }

  .call-btn i {
    margin-right: 8px;
  }

