

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* Button Styles */
button.button {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button.button-primary {
    background-color: #4CAF50;
    color: white;
}

button.button-primary:hover {
    background-color: #45a049;
}

button.button-secondary {
    background-color: #f44336;
    color: white;
}

button.button-secondary:hover {
    background-color: #e53935;
}

button:focus {
    outline: none;
}

/* Header Title */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
/* Style the form container */
.room-booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    
   
   
}

/* Style the form labels */
.room-booking-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}
.room-booking-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f19e1d;
}
/* Style the form inputs */
.room-booking-form input[type="text"],
.room-booking-form input[type="number"],
.room-booking-form input[type="date"],
.room-booking-form input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
}

/* Style the checkboxes */
.room-booking-form input[type="checkbox"] {
    margin-right: 8px;
}

/* Style the buttons */
.room-booking-form button {
    background-color: #f19e1d;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.room-booking-form button:hover {
    background-color: #a76d11;
}
.room-container {
    max-width: 100%;
    margin: auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.room-header{
    height: 400px;
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('http://hotelbest.local/wp-content/uploads/2025/02/Mies-van-der-rohe-Barcelona-chair.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
}

.room-header h2{
    font-size: 50px;
    color: #fff;
}
.room-info1{
    width: 80%;
    display: flex;
    
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
.room-images {
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    
    
}
.room-booking-form {
    
    min-width: 400px;
}
.room-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 450px;
    
}
.room-details {
    width: 80%;
    gap: 20px;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
.icon-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    
    height: 150px;
    border-radius: 10px;
    border: 2px solid rgb(110, 108, 108);
}
.icon-container img{
    width: 100px;
    height: 100px;
}
.icon-container strong{
    margin-top: 10px;
    font-size:20px ;
}
.room-gallery{
    margin-top: 100px;
}
.room-gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
   
}

.gallery-thumbnail {
    width: 300px;
    height: 300px;
    object-fit: cover;
    
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: scale(1.1);
}

.room-info {
    flex: 1;
}
.room-description{
    width: 60%;
    text-align: justify;
}

/* room list */
/* Layout */
.room-list {
    display: flex;
    gap: 20px;
    padding: 20px;
    width: 80%;
}

/* Room Item */
.room-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.room-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Image */
.room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #F19E1D;
}

/* Content */
.room-content {
    padding: 15px;
    text-align: center;
}

.room-title {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.room-price {
    font-size: 16px;
    font-weight: bold;
    color: #F19E1D;
}

.room-description {
    font-size: 14px;
    color: #666;
}

/* Link */
.room-link {
    text-decoration: none;
    color: inherit;
    display: block;
}







