/* Hotel Info & */
.hotel-info {
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

h1.title {
    text-align: center;
    font-size: 36px;
    color: #2b2b2b;
    margin-bottom: 20px;
}

/* Info Container */
.info-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Gallery Styling */
.gallery {
    flex: 1;
}

.jumbo {
    width: 90%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.thumbnail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    max-width: 90%;
}

.thumb {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.more-images {
    grid-column: span 3;
    text-align: center;
    font-size: 16px;
    color: #007bff;
    cursor: pointer;
    margin-top: 10px;
}

/* Booking Info */
.hotel-search-form {
    width: 300px;
    height: 470px; 
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.473);
    padding: 25px; 
}

.booking-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

.info-1 {
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.info-2 {
    font-size: 16px;
    color: #000000;
    text-align: right;
}

.info-price1 {
    font-size: 20px;
    font-weight: bold;
    color: #ff0066;
    text-align: right;
    transform: translateY(-3px);
}

.info-price2 {
    color: #ff0066;
    margin-left: 20px;
}

/* Stars */
.stars {
    text-align: center;
    margin-bottom: 15px;
}

.star {
    font-size: 25px;
    color: gold;
}

/* Hotel Features */
.hotel-features {
    font-size: 15px;
    justify-items: left;
}

.hotel-features h3 {
    color: #0093bf;
    margin-bottom: 15px;
    margin-left: 25px;
}

.hotel-features ul {
    list-style: none;
    padding-left: 0;
}

.hotel-features ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px; 
    color: #000;
    list-style: none;
    line-height: 1.2;
    align-self: center;
}

.hotel-features ul li::before {
    content: "✓";
    color: red;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

/* Button Styles */
.btn-check-now {
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
    height: 40px; 
    background-color: #ff6203;
    border: none;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-check-now:hover {
    border: 2px solid #ff6203;
    background-color: #ff640375;
}

/* Media Box Styles */
.media-box {
    position: relative;
}

.media-icons {
    margin-top: 7px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 35px;
    padding: 7px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.media-box.active .media-icons {
    opacity: 1;
    pointer-events: auto;
}

.media-icons::before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    left: 50%;
    top: -9px;
    background: #ffffff;
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
}

.media-icons a {
    transition: transform 0.3s ease;
}

.icon-image {
    width: 30px;
    height: 30px;
}

.icon-image:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

/* Hotel Description */
.description-container {
    position: relative;
}

.hotel-description {
    padding-top: 10px;
    font-size: 15px;
    width: 70%;
    margin-top: 10px;
    margin-bottom: 10px;
    max-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
    line-height: 1.3;
}

.hotel-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(224, 0, 0, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.read-more {
    display: block;
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: 2px solid #0093bf;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #0093bf;
    color: white;
}

.description-expanded .hotel-description {
    max-height: none;
}

.description-expanded .hotel-description::after {
    background: none;
}

.description-expanded .read-more {
    display: none;
}