.main-content {
    padding: 90px 0;
}

.hotel-container {
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Main Content Styles */
.hotel-content {
    display: flex;
    flex-wrap: wrap;
}

.hotel-image {
    flex: 1 1 60%;
    min-width: 0;
    overflow: hidden;
    padding: 20px;
    border: "2px solid red"
}


.about {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 20px;
    text-align: justify;
}

.hotel-info {
    flex: 1 1 40%;
    padding: 20px;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 20px;
    text-align: justify;
}

.hotel-info h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.hotel-info p {
    margin-bottom: 20px;
    color: #555;
}

/* Services Section */
.hotel-services {
    margin-bottom: 20px;
}

.hotel-services h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.service-item i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 3px;
}

.service-hours {
    margin-top: 15px;
}

.always-open {
    color: #4CAF50;
    font-weight: bold;
}



/* Social Links */
.hotel-social {
    display: flex;
    margin-bottom: 20px;
}

.social-link {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
}

/* Buttons */
.hotel-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 15px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #f7f7f7;
}

.apropos {
    text-align: justify;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-location,
    .hotel-rating,
    .hotel-phone {
        margin: 5px 0;
    }

    .hotel-content {
        flex-direction: column;
    }

    .hotel-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}


.reviews-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviews-header h2 {
    font-size: 1.5rem;
    margin-right: 10px;
}

.info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.review-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.avatar-1 {
    background-color: #F8D5B2;
    color: #333;
}

.avatar-2 {
    background-color: #F5A9CB;
    color: #333;
}

.avatar-3 {
    background-color: #E74C3C;
    color: white;
}

.avatar-4 {
    background-color: #8E44AD;
    color: white;
}

.user-info {
    flex-grow: 1;
}

.username {
    font-weight: bold;
    margin-bottom: 3px;
}

.review-date {
    font-size: 0.9rem;
    color: #777;
}

.review-content {
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


.thumbnail-container {
    width: 100%;
    overflow: auto;
}

.thumbnail-wrapper {
    display: block;
    gap: 12px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    white-space: nowrap;
}

.thumbnail-wrapper::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.thumbnail-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.thumbnail-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.thumbnail-img {
    flex: 0 0 auto;
    transition: border 0.3s ease;
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.thumbnail-img:hover {
    transform: scale(1.05);
    border: 2px solid #0d6efd;
}

.reviews-section .review-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:16px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.reviews-section .review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.1);
}

.reviews-section .avatar-circle{
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:#fff; letter-spacing:.5px;
  box-shadow: 0 6px 14px rgba(0,0,0,.12) inset, 0 2px 6px rgba(0,0,0,.06);
}

/* Gradient palette for avatars */
.avatar-1{ background:linear-gradient(135deg,#6a11cb,#2575fc);}
.avatar-2{ background:linear-gradient(135deg,#ff9966,#ff5e62);}
.avatar-3{ background:linear-gradient(135deg,#00b09b,#96c93d);}
.avatar-4{ background:linear-gradient(135deg,#f7971e,#ffd200);}
.avatar-5{ background:linear-gradient(135deg,#8e2de2,#4a00e0);}
.avatar-6{ background:linear-gradient(135deg,#fc5c7d,#6a82fb);}

.reviews-section .rating i.bi-star-fill{ color:#f5c518; } /* gold */
.reviews-section .rating i.bi-star{ color:#d6d6d6; }

.clamp-4{
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

#reviewsCarousel .carousel-indicators [data-bs-target]{
  width:10px;height:10px;border-radius:50%;
}
#reviewsCarousel .carousel-indicators .active{
  background-color:#0d6efd;
}

/* Responsive */
@media (min-width: 992px) {
    .thumbnail-wrapper {
        overflow-x: visible; 
        flex-wrap: wrap; 
    }
}
@media (max-width: 768px) {
    .thumbnail-img {
        width: 70px;
        height: 50px;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .thumbnail-img {
        width: 60px;
        height: 45px;
        min-width: 60px;
    }
}