
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#menubar{
    z-index: 101;
}

.bgblue{
    /* background: linear-gradient(to right, #667eea, #764ba2); */
    background: linear-gradient(to right, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 1));
    
}

.active{
    color: #e3e166 !important;
    font-weight: bold;
    
}

.nav-link:hover {
        color: #667eea !important;
        font-weight: bold !important;
        transition: 3s !important;
    }

.search-container {
    height: 55vh;
    min-height: 200px;
    max-height: 400px;
    background: linear-gradient(to right, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.search-box {
    width: 100%;
    max-width: 500px;
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-box button {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}


.bicchama {
    text-align: center;
}

.toleft{
    text-align: left;
}
.container-fluid{
    max-width: 100vw;
    margin: auto;
    padding: 20px;

}
.container {
    max-width: 1000px;
    display: grid;
    margin: auto;
    padding: 20px;
    justify-content: center;
}
.khojima {
    margin-top: 10px;
    color: #3366cc;
    font-size: 14px;
}
.khojima a {
    margin: 0 8px;
    text-decoration: none;
    color: #3366cc;
}
.khojima a:hover {
    text-decoration: underline;
}
.banner {
    background-color: #005b6b;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 40px 0;
    border-radius: 6px;
}
.banner-text {
    font-size: 20px;
    font-weight: 600;
}
.banner-button {
    background-color: orange;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}
.divider {
    border-top: 1px solid #ddd;
    margin: 40px 0;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
}
.feature img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}
.feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
    text-align: center;
}
.feature-desc {
    font-size: 14px;
    color: #666;
    max-width: 250px;
    margin: auto;
    text-align: justify;
}

/* === rooms.html === */
.room-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 1000px;
    margin: auto;
    background-color: #fff;
    flex-direction: row;
    margin-bottom: 20px;
}

.room-details {
      flex: 1;
}

.room-details h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
    color: #222;
}

.room-details p {
    margin: 8px 0;
    font-size: 16px;
}

.room-details p strong {
    font-weight: bold;
}

.room-image {
    flex: 0 0 35%; /* 35% width for image section */
    text-align: center;
    margin-right: 30px;
}

.room-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.read-more {
    background-color: #005b6b;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    float: right;
    
}

.read-more:hover {
      background-color: #00788c;
}


/* registration page */

.form-wrapper {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

h1 {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
color: #007bff;
}

.form-wrapper label {
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
display: block;
color: #333;
}

.form-wrapper input {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
transition: border-color 0.3s ease;
}

.form-wrapper input:focus {
border-color: #007bff;
outline: none;
}

.form-wrapper .submit-btn {
width: 100%;
padding: 12px;
background-color: #007bff;
border: none;
border-radius: 4px;
font-size: 16px;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}

.form-wrapper .submit-btn:hover {
background-color: #0056b3;
}

.form-wrapper .error {
color: red;
font-size: 12px;
margin-bottom: 10px;
}

/* email checking page */
/* .email-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
}

.email-container h2 {
    margin-bottom: 1rem;
    color: #333;
}

.email-container p {
    color: #666;
    line-height: 1.6;
} */

.email-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}



/* email checking page */


@media (max-width: 600px) {
    
    h1{
        font-size: 20px;
    }
        
    h2{
        font-size: 18px;
    }
    h4{
        font-size: 16px;
    }
    .search-box input,
    .search-box button {
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    }

    .features {
    flex-direction: column;
    align-items: center;
    }

    .room-card {
    flex-direction: column;
    align-items: center;
    
    }
    
    .room-details, .room-image {
    width: 100%;
    }

    .room-details h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    color: #222;
    }

    .room-details h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #222;
    }

    .room-details p {
    margin: 4px 0;
    font-size: 16px;
    }
    
    .read-more {
    position: static;
    margin-top: 20px;
    }

    .form-wrapper {
    padding: 20px;
    max-width: 90%;
    }

}


    /* ======= */



