/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style the page cover */
.page-cover {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ccc;
}

/* Style the innerpage wrapper */
.innerpage-wrapper {
    padding: 50px 0;
    background-color: #f8f9fa;
}

/* Ensure the container takes full width */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hide the booking form */
.col-12.col-md-12.col-lg-4.col-xl-4 .space-left {
    display: none !important;
}

/* Style the selected room block */
.selected-room-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.selected-room-img {
    flex: 1 1 100%;
    max-width: 100%;
}

.selected-room-img img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.selected-room-detail {
    flex: 1 1 100%;
    padding: 20px;
}

.rating {
    margin-bottom: 15px;
}

.rating i.fa-star {
    color: #ffc107;
}

.selected-room-detail p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.selected-room-detail h2 {
    font-size: 1.8rem;
    margin: 20px 0;
    color: #333;
}

/* Style the include/exclude lists */
.selected-room-features {
    list-style: none;
    padding: 0;
}

.selected-room-features li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.selected-room-features i.fa-check {
    color: #28a745;
    margin-right: 10px;
}

.selected-room-features i.fa-times {
    color: #dc3545;
    margin-right: 10px;
}

/* Style the related tours section */
#menu .dish-category {
    margin-bottom: 30px;
}

#menu .dish-category h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Target the specific row in related tours to enforce three-column layout */
#menu .dish-category .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override Bootstrap column classes for related tours */
#menu .dish-category .row .col-md-3 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Style for each tour item */
.dish-type {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dish-type:hover {
    transform: translateY(-5px);
}

.dish-name {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.dish-type a:not(.dish-name) {
    font-size: 1rem;
    color: #28a745;
    text-decoration: none;
}

.dish-type a:not(.dish-name):hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
    }

    .selected-room-detail h2 {
        font-size: 1.6rem;
    }

    #menu .dish-category .row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .selected-room-detail p {
        font-size: 1rem;
    }

    .selected-room-features li {
        font-size: 0.9rem;
    }

    #menu .dish-category h3 {
        font-size: 1.8rem;
    }

    .dish-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.6rem;
    }

    .selected-room-detail h2 {
        font-size: 1.4rem;
    }

    .selected-room-detail p {
        font-size: 0.9rem;
    }

    #menu .dish-category .row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }

    .dish-name {
        font-size: 1rem;
    }

    .dish-type a:not(.dish-name) {
        font-size: 0.9rem;
    }
}

/* ===== Selected room image block ===== */
.selected-room-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.selected-room-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.selected-room-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.selected-room-img:hover img {
  transform: scale(1.05);
}

/* ===== Sidebar special-offer block ===== */
.side-bar-block.special-offer {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.side-bar-block.special-offer #offer-text {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #111827;
  margin-bottom: 1rem;
}

.side-bar-block.special-offer #offer-text span {
  font-size: 25px;
  font-weight: 600;
  display: block;
  color: #0b5f4a;
  margin-bottom: 6px;
}

.side-bar-block.special-offer #offer-text strong {
  color: #0b5f4a;
}

/* Buttons */
.side-bar-block.special-offer .btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #0b5f4a;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(11, 95, 74, 0.15);
}

.side-bar-block.special-offer .btn:hover {
  background-color: #094d3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 95, 74, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .side-bar-block.special-offer {
    padding: 1rem;
  }
  .side-bar-block.special-offer #offer-text span {
    font-size: 20px;
  }
  .side-bar-block.special-offer .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}



