
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(56, 153, 222);
}

header {
    background-color: #08004f; 
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons button {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-buttons button:hover {
    background-color:rgb(56, 153, 222);;
    color: #000000;
    border-color: #08004f;
}
.content {
    text-align: center;
    margin-top: 40px;
}

.first {
    font-size: 40px;
    font-weight: bold;
}

.highlight {
    color: #ffffff; 
}

p {
    font-size: 17px;
    max-width: 600px;
    margin: auto;
    color: #2b2929; }

.imgstyle {
    display: flex;            
    justify-content: space-between; 
  }

.imgstyle img{
    display: block;    
    margin: 50px; 
    margin-left: 60px;       
    max-width: 20%;          
    height:auto;        
    border-radius: 30px;     
}

#gif{
    display: block;    
    margin: 50px;   
    max-width: 40%;          
    height:auto;        
    border-radius: 30px; 
}
.popular-hotels {
    text-align: center;
    padding: 50px 20px;
    background-color: rgb(56, 153, 222);
}

.section-title {
    font-size: 32px;
    color: black;
    margin-bottom: 40px;
}

.hotel-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
}

.hotel-img {
    width: 100%;
    height: auto;
}

.hotel-info {
    padding: 15px;
    text-align: left;
}

.hotel-info h3 {
    font-size: 20px;
    color: #08004f;
    margin: 10px 0;
}

.hotel-info p {
    font-size: 14px;
    color: #555;
}

.hotel-info ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

.hotel-info ul li {
    margin: 5px 0;
}

.price {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 24px;
    color: #08004f;
}

.stat p {
    font-size: 14px;
    color: #555;
}
/*footer */
footer {
    background-color: rgb(125, 176, 210);
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.newsletter {
    text-align: center;
    margin-bottom: 20px;
}

.newsletter h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.subscribe-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.subscribe-box input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
}

.subscribe-box button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #08004f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe-box button:hover {
    background-color: #4a4dff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: #333;
}

.social-icons a:hover {
    color: #08004f;
}

.footer-images img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 5px;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}



/* singin form */

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.signin-form h2 {
    margin-bottom: 20px;
}

.signin-form label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
}

.signin-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
}

.signin-form button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.signin-form button:hover {
    background: #0056b3;
}

.container {
    background: white;
    margin: auto;
    margin-top:100px; 
    padding: 50px; 
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 25%;
    
}

 .second {
    text-align: center;
} 
 
 .input-group {
    margin-bottom: 15px;
} 

label {

    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 35px;
}
#sign1 {
    width: 70%;
    padding: 10px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 35px;
    cursor: pointer;
}

#sign1:hover {
    background: #06305c;
}

.error-message {
    color: red;
    text-align: center;
    font-size: 14px;
}
.show-password {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-right: 210px;
    white-space: nowrap;


}

.show-password input[type="checkbox"] {
    margin-right: 10px;
}


 /*about */
 .container2 {
    display: flex;
   align-items: center;
   margin-left: -180px;
   gap: 50px;

}
 .about-section {
    padding: 50px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-img {
    width: 320px;
    border-radius: 20px;
    
}

.paragraph1{
    font-size: 19px;
    margin-bottom: 20px;
}
.paragraph2{
    font-size: 15px;
    margin-top:10px;
}
.subheading {
    color: rgb(42, 41, 41);
    font-size: 18px;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    font-size: 16px;
    margin: 5px 0;
}

.btn {
    display: inline-block;
    background: blue;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* cookie notification */

.cookie-notification {
    position: fixed;
    margin-left: 35%;
    margin-bottom: 40px;
    border-radius: 17px;
    left: 0;
    bottom:0 ;
    width: 32%;
    background-color: rgba(218, 214, 214, 0.85);
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none; 
}

.cookie-notification p {
    margin: 0;
    font-size: 16px;

}

.cookie-notification button {
    margin-left: 10px;
    margin-top: 8px;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #5ca45f;
    color: white;
    cursor: pointer;
    font-size: 14px;
}


/* SCROOL TO TOP */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
}

#scrollToTopBtn:hover {
    background-color: #413e3e;
}
