/* Basic styles for the page */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

h2 {
    margin: 20px;
    font-size: 32px;
    text-align: center;
    color: #333;
    text-transform: uppercase;
}

.hotel-detail {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hotel-slider {
    width: 100%;
    max-width: 400px;
    margin-right: 20px;
}

.hotel-slider img {
    width: 100%;
    border-radius: 15px;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    overflow-x: auto; /* Allow horizontal scrolling if needed */
}

.thumbnail {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.thumbnail:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.active-thumbnail {
    border-color: #007bff;
}

.hotel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.hotel-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hotel-info-label {
    width: 150px;
    font-weight: bold;
    color: #555;
}

.hotel-info-value {
    flex: 1;
    color: #777;
}

.book-now-button {
    padding: 15px;
    text-align: center;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.book-now-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.video-container {
    margin-top: 20px;
    text-align: center;
}

iframe {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* Responsive design adjustments */
@media (max-width: 768px) {
    .hotel-detail {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .hotel-slider {
        margin-right: 0;
        max-width: 100%;
    }
}
