/* ==========================================
   RESPONSIVE.CSS
========================================== */

/* =========================
   LARGE LAPTOP
========================= */

@media(max-width:1200px){

.hero-content h1{

font-size:70px;

}

.booking-card{

grid-template-columns:repeat(2,1fr);

}

.counter-section{

grid-template-columns:repeat(2,1fr);

}

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

nav{

width:95%;

}

.menu-btn{

display:block;

color:white;

}

.nav-links{

position:fixed;

top:85px;

left:-100%;

width:280px;

height:calc(100vh - 85px);

background:#081224;

display:flex;

flex-direction:column;

align-items:center;

justify-content:flex-start;

padding-top:50px;

gap:35px;

transition:.4s;

z-index:999;

}

.nav-links.active{

left:0;

}

.hero{

padding:0 30px;

}

.hero-content h1{

font-size:58px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.about-container{

grid-template-columns:1fr;

}

.contact-container{

grid-template-columns:1fr;

}

.features{

grid-template-columns:repeat(2,1fr);

}

.car-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

section{

padding:70px 20px;

}

.hero{

height:100vh;

}

.hero-content h3{

font-size:18px;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;

line-height:1.7;

}

.hero-buttons{

gap:15px;

}

.hero-buttons button{

width:220px;

}

.booking-card{

grid-template-columns:1fr;

padding:25px;

}

.search-btn{

width:100%;

}

.features{

grid-template-columns:1fr;

}

.car-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.counter-section{

grid-template-columns:1fr;

}

.testimonial-container{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

}

.contact-form,

.contact-info{

padding:25px;

}

.map iframe{

height:300px;

}

.logo{

font-size:22px;

}

.logo i{

font-size:28px;

}

.book-btn{

display:none;

}

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

.hero-content h1{

font-size:34px;

}

.hero-content h3{

font-size:15px;

letter-spacing:3px;

}

.hero-content p{

font-size:15px;

}

.section-title h2{

font-size:32px;

}

.about-text h3{

font-size:30px;

}

.counter-box h2{

font-size:40px;

}

.cta h2{

font-size:32px;

}

.whatsapp{

width:55px;

height:55px;

font-size:28px;

}

#topBtn{

width:50px;

height:50px;

}

}