/* =====================================
   VG RENTALS - MAIN STYLESHEET
===================================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:'Poppins',sans-serif;
    color:#111;
    overflow-x:hidden;

}


html{

    scroll-behavior:smooth;

}



/* =====================================
TOP BAR
===================================== */


.top-bar{

    background:#ff9800;
    color:white;
    padding:10px 0;
    font-size:14px;
    position:relative;
    z-index:9999;

}




/* =====================================
NAVBAR
===================================== */


.navbar{

    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(15px);
    padding:18px 0;
    transition:.3s;

}


.navbar-brand{

    color:white!important;
    letter-spacing:1px;

}


.navbar-brand span{

    color:#ff9800;

}



.nav-link{

    color:white!important;
    font-weight:500;
    margin:0 8px;
    transition:.3s;

}


.nav-link:hover{

    color:#ff9800!important;

}



.dropdown-menu{

    border-radius:15px;
    padding:10px;

}


.dropdown-item{

    padding:10px 20px;

}


.dropdown-item:hover{

    background:#ff9800;
    color:white;

}






/* =====================================
HERO SECTION
===================================== */


.hero{


height:100vh;

background:

url("image\ copy.png")

center/cover no-repeat;


display:flex;

align-items:center;

position:relative;


}



.overlay{


position:absolute;

inset:0;

background:

linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.55)
);


}




.hero-content{


position:relative;

z-index:2;

color:white;

padding-top:80px;


}



.hero-content h1{


font-size:65px;

font-weight:800;

line-height:1.1;


}



.hero-content p{


font-size:20px;

margin:25px 0;

max-width:650px;


}





/* =====================================
BOOKING BOX
===================================== */


.booking-box{


background:white;

padding:30px;

border-radius:25px;

color:#111;

box-shadow:

0 20px 60px rgba(0,0,0,.35);


}



.booking-box label{


font-weight:600;

margin-bottom:8px;


}



.booking-box .form-control{


height:50px;

border-radius:12px;

border:1px solid #ddd;


}



.btn-warning{


background:#ff9800;

border:none;

color:white;

font-weight:600;

padding:12px 25px;

border-radius:30px;


}



.btn-warning:hover{


background:#e68900;

color:white;


}






/* =====================================
SECTION HEADINGS
===================================== */


section h2{


font-size:40px;

font-weight:800;


}



section p{


color:#666;

}





/* =====================================
CATEGORY CARDS
===================================== */


.category-card{


background:white;

padding:40px 20px;

text-align:center;

border-radius:20px;

box-shadow:

0 10px 35px rgba(0,0,0,.1);


transition:.4s;


}



.category-card i{


font-size:45px;

color:#ff9800;

margin-bottom:20px;


}



.category-card:hover{


transform:translateY(-10px);

background:#111;

color:white;


}



.category-card:hover p{

color:white;

}







/* =====================================
BIKE CARDS
===================================== */


.bike-card{


background:white;

border-radius:20px;

overflow:hidden;

box-shadow:

0 15px 40px rgba(0,0,0,.12);


transition:.4s;


}



.bike-card:hover{


transform:translateY(-12px);


box-shadow:

0 25px 50px rgba(0,0,0,.25);


}



.bike-card img{


width:100%;

height:270px;

object-fit:cover;


}



.bike-card h4{


font-weight:700;


}



.bike-card h5{


color:#ff9800;

font-size:22px;


}






/* =====================================
WHY SECTION
===================================== */


.why{


background:#050505;

padding:90px 0;


}




.feature{


background:

rgba(255,255,255,.08);


padding:35px 20px;

text-align:center;

color:white;

border-radius:20px;


backdrop-filter:blur(10px);


transition:.3s;


}



.feature:hover{


transform:translateY(-10px);

background:

rgba(255,152,0,.15);


}



.feature i{


font-size:45px;

color:#ff9800;

margin-bottom:20px;


}



.feature h5{


font-size:22px;


}






/* =====================================
FOOTER
===================================== */


footer{


background:#050505;

color:#aaa;

padding:70px 0 20px;


}



footer h3{


color:white;

font-size:35px;

font-weight:800;


}



footer h5{


color:#ff9800;

margin-bottom:20px;


}



footer p{


color:#aaa;

}


footer hr{


border-color:#444;


}







/* =====================================
BUTTON EFFECT
===================================== */


.btn{


transition:.3s;


}



.btn:hover{


transform:translateY(-3px);


}






/* =====================================
RESPONSIVE DESIGN
===================================== */



@media(max-width:992px){



.hero{


height:auto;

padding:150px 0 80px;


}



.hero-content h1{


font-size:45px;


}



.navbar{


background:#000;


}



.booking-box{


margin-top:30px;


}



}




@media(max-width:576px){



.top-bar{


font-size:11px;


}



.hero-content h1{


font-size:32px;


}



.hero-content p{


font-size:16px;


}



section h2{


font-size:30px;


}



.bike-card img{


height:220px;


}


.booking-box{


padding:20px;


}


}
/* Bikes Page */


.bike-banner{

height:60vh;

background:
linear-gradient(
rgba(0,0,0,.7),
rgba(0,0,0,.7)
),
url("https://images.unsplash.com/photo-1525160354320-d8e92641c563");

background-size:cover;
background-position:center;

display:flex;
align-items:center;

}



.bike-banner h1{

font-size:60px;
font-weight:800;

}




.filter-box{

background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,.15);

}



@media(max-width:768px){

.bike-banner h1{

font-size:35px;

}

}