* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Circular Std Book", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--Generic-White, #f9f8f8);
    color: #111827;
}


/* header section */
.header-section{
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 112px;
}

/* .rdg-logo{
    width: 224px;
height: 64px;
} */

.nav-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    /* align-self: stretch; */
    list-style-type:none ;
}

.nav-links a{
    text-decoration: none;
    color: black;
    text-transform: capitalize;
}

.nav-links .fa-whatsapp{
    color: #25D366;
    width: 24px;
}

/* hero section */

.hero-section{
    background: linear-gradient(0deg, rgba(9, 59, 168, 0.40) 0%, rgba(9, 59, 168, 0.40) 100%), url('../images/background-all-hotels.png'), lightgray 50%;
background-blend-mode: multiply, normal;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
padding: 320px 240px 72px;
align-items: center;
}

.hero-section h1, .hero-section p {
    text-align: center;
    color: #fff;
}

.hero-section h1 {
font-size: 3rem;
font-weight: 500;
line-height: 60px;
letter-spacing: -0.96px;
margin-bottom: 16px;
}

.hero-section p {
font-size: 1rem;
font-style: normal;
font-weight: 450;
line-height: 30px; /* 150% */
}

/* hotel list section */
.hotel-list-section{
    padding: 64px 112px;

}

.all-hotels-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
    column-gap: 32px;
}

.each-hotel-box{
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    justify-content: space-between;
    gap: 6px;
}

.each-hotel-box img {
      max-width: 100%;
      height: 100%;
      border-radius: 8px;
    }

    .each-hotel-box h2, .each-hotel-box p, .each-hotel-box .book-now-btn {
      margin: 5px 0;
      /* align-self: start; */
    }
.each-hotel-box h2{
    font-family: 'Circular Std Book', Arial, Helvetica, sans-serif;
  font-size: 20px;
line-height: 30.36px;
text-align: left;
}

.each-hotel-box p{
    font-size: 1rem;
font-weight: 450;
line-height: 20px;
text-align: left;
}

.each-hotel-box i {
    margin-right: 5px;
}

.each-hotel-box .book-now-btn{
    padding: 8px 20px;
    background-color: #093BA8;
    width: fit-content;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}
.each-hotel-box a {
    text-decoration: none;
    color: #fff;   
    font-size: 16px;
}


/* FOOTER

footer {
    padding: 0 112px;
}

.footer-container {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    row-gap: 64px;
}

.footer-container-content-block1{
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-right: 168px;
}

.link-blocks{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.link-blocks h5{
    color:#9CA3AF;
;
}
.footer-links{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.footer-links a{
    text-decoration: none;
    color: #6B7280;
    font-size: 1rem;
}

.footer-icons{
    display: flex;
    column-gap: 16px;
}

.footer-icons a {
    width: 24px;
height: 23.85px;

}


.footer-container-content-block2{
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.newsletter, .logo-copyright{
    display: flex;
    column-gap: 32px;
    justify-content: space-between;
    align-items: center;
    border-top: solid 1px #E5E7EB;
    padding-top: 30px;
}

.newsletter-text{
    text-align: left;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.newsletter-text h5{
    text-transform: uppercase;
    color: #6B7280;
font-size: 12px;
line-height: 20px;
letter-spacing: 1px;
}

.newsletter-text p{
font-size: 16px;
font-weight: 450;
line-height: 24px;
letter-spacing: 0em;
text-align: left;

}

.newsletter-form form{
    display: flex;
    column-gap: 8px;
}

.newsletter-form input{
    padding: 10px 12px;
border-radius: 6px;
border: solid 1px #D1D5DB;
gap: 12px;
width: 372px;
height: 40px;
font-size: 12px;
}

.newsletter-form button{
    width: 113px;
height:40px;
padding: 8px, 20px, 8px, 20px;
border: none;
border-radius: 6px;
gap: 10px;
background-color: #093BA8;
color: #fff;
line-height: 24px;
}

.logo-copyright p{
line-height: 24px;
letter-spacing: 0em;
text-align: left;
color: #9CA3AF;

} */

@media screen and (max-width: 768px) {
    .header-section {
        padding: 16px 24px;
    }

    .hero-section {
        padding: 224px 24px 36px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 40px;
        margin-bottom: 12px;
    }
    
    .hero-section p {
        font-size: 0.875rem;
        line-height: 24px;
    }

    .hotel-list-section {
        padding: 64px 24px;
    }
    
    .all-hotels-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        row-gap: 48px;
        column-gap: 32px;
    }
    
    .each-hotel-box {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        gap: 6px;
        
    }
    
    .each-hotel-box img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .each-hotel-box h2,
    .each-hotel-box p,
    .each-hotel-box .book-now-btn {
        margin: 5px 0;
    }
    
    .each-hotel-box h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .each-hotel-box p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .each-hotel-box .book-now-btn {
        padding: 8px 20px;
        
    }
    
    
}