/* GLOBAL */

body{
margin:0;
font-family:Arial, sans-serif;
background:#111;
color:white;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:black;
position:relative;
}

.logo{
color:gold;
font-weight:bold;
font-size:22px;
letter-spacing:1px;
text-decoration: none;
}

/* DESKTOP MENU */

nav ul{
display:flex;
list-style:none;
gap:20px;
margin:0;
padding:0;
}

nav ul li a{
text-decoration:none;
color:white;
font-weight:bold;
}

.book-btn{
background:gold;
color:black;
padding:10px 15px;
border-radius:5px;
font-weight:bold;
cursor:pointer;
}

/* HAMBURGER */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* HERO */

.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

background-image:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");

background-size:cover;
background-position:center;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero p{
font-size:20px;
margin-bottom:20px;
}

.explore{
padding:12px 25px;
background:red;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

/* CAR SECTION */

.cars-section{
padding:40px 20px;
text-align:center;
}

.car-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.car-card{
background:#222;
padding:15px;
width:220px;
border-radius:10px;
}

.car-card img{
width:100%;
border-radius:10px;
}

.car-card button{
background:gold;
border:none;
padding:10px;
cursor:pointer;
width:100%;
}

/* PDF BUTTON */

.pdf-btn{
display:inline-block;
margin-top:20px;
padding:12px 20px;
background:gold;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}

/* ABOUT */

.ABOUTS{
text-align:center;
}

.about-info{
max-width:600px;
margin:20px auto;
line-height:1.6;
}

/* CONTACT */

.contact{
background:black;
padding:40px;
text-align:center;
}

/* WHATSAPP BUTTON */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:30px;
height:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:100;
}

/* FORM SECTION */

.buy-now-sections{
border:2px solid #444;
margin:60px auto;
padding:25px;
max-width:500px;
width:90%;
border-radius:10px;
box-sizing:border-box;
}

.ready{
text-align:center;
padding-top:50px;
}

.search{
text-align:center;
padding:10px;
}

.bar{
width:100%;
padding:14px;
border-radius:25px;
border:none;
margin-bottom:15px;
box-sizing:border-box;
font-size:16px;
}

.submit-btn{
padding:12px 25px;
background:gold;
border:none;
font-weight:bold;
cursor:pointer;
border-radius:20px;
}

/* BUTTON CONTAINER */

.buttons{
display:flex;
justify-content:center;
margin-top:20px;
margin-bottom:20px;
}

/* EMAIL BUTTON */

.eml-btn{
padding:12px 25px;
background:gold;
border:none;
font-weight:bold;
cursor:pointer;
border-radius:20px;
margin-bottom:30px;
}

.eml-buttons{
display:flex;
justify-content:center;
margin-top:20px;
margin-bottom:30px;
}
.touch{
text-align:center;
}
/* SOCIALS */

.socials{
text-align:center;
margin-bottom:50px;
}

/* FOOTER */

.footer{
background:black;
padding:20px;
text-align:center;
}

/* MOBILE */

@media (max-width:768px){

.menu-toggle{
display:block;
}

nav ul{
display:none;
flex-direction:column;
background:black;
width:100%;
position:absolute;
top:70px;
left:0;
padding:20px;
}

nav ul.active{
display:flex;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

.car-grid{
flex-direction:column;
align-items:center;
}

}