.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"
}

.hotel-image img {
    max-height: 400px;
}

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

.about .apropos {
    width: 100%;
    box-sizing: border-box;
}

.about .apropos p {
    margin-bottom: 10px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.about .apropos strong,
.about .apropos em,
.about .apropos span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about img {
    width: 100%;
    height: 600px;
    display: block;
}

.hotel-info {
    flex: 1 1 40%;
    padding: 20px;
}

.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-image img {
        max-height: 400px;
    }

    .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-img {
    transition: border 0.3s ease;
}

.thumbnail-img:hover {
    border: 2px solid #0d6efd;
}