* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}

body::-webkit-scrollbar {
  display: none;
}

section {
  background-color: rgb(235, 233, 243);
  background-image: url("/Assets/BG_IP\ 05.jpeg");
}

/* Navigation Bar */
header {
  width: 100%;
  /* height: 15vh; */
  align-items: center;
  background-color: #333;
  padding: 0 5px;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  /* position: fixed; */
  box-shadow: 1px 1px 10px white;
  position: fixed;
  z-index: 2;
}

.img-close {
  width: 100%;
  height: 30px;

}
nav{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  width: 100%;
  height: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


header nav ul .box1 {
  display: flex;
}

header nav ul .box1 li {
  /* margin: 0 10px; */
  display: flex;
  justify-content: center;
  align-items: center;
}


header nav ul .back {
  margin-left: 0px;
  font-size: 30px;
  font-weight: bold;
}

header nav ul .back:hover {
  background-color: none;
  cursor: pointer;
}




nav a {
  color: #faf9f9;
  display: inline-block;
  text-decoration: none;
  padding: 10px 12px;
  font-weight: bold;
}

nav a:hover {
  background-color: #f6f6f6;
  color: black;
  border-radius: 5px;
}

/* Register Button */
.register-btn {
  background-color: #faf9f9;
  color: black;
  margin: 10px;
  border-radius: 5px;
}

.register-btn:hover {
  background-color: gray;
  color: #fff;
  transition: 0.2s;
}

/* About Button */
.about-btn {
  color: #faf9f9;
  border-radius: 5px;

}

.about-btn:hover {
  background-color: #f6f6f6;
}

/* Nav end */

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(5, 5, 5, 0.196), rgba(0, 0, 0, 0.146));
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.hero h1 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  color: white;
  text-shadow: 1px 1px 20px rgb(212, 165, 165);
  
}

.hero p {
  font-size: 30px;
  font-weight: bold;
  margin: 20px;
  color: white;
  text-shadow: 1px 1px 10px rgb(212, 165, 165);

}

.backv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: rgb(206, 203, 221);
  background-image: url("/Assets/BG_IP\ 05.jpeg");
}


#car-evolution {
  padding: 50px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #001233cf;
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #171515;
  border-radius: 10px;
}

.car {
  flex-basis: calc(33.33% - 20px);
  margin-bottom: 40px;
  background-color: #f9f0b4f6;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 500px;
  border: 2px solid #333;
  border-radius: 25px;
  
}

.car:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.car img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  border-bottom-left-radius: 0%;
  border-bottom-right-radius: 0%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.car-info {
  padding: 20px;
}

h2 {
  margin: 0 0 10px 0;
  text-align: center;
  color: black;
  text-shadow: 1px 1px 20px rgb(151, 53, 53);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

p {
  margin: 0;
  text-align: center;
  color: black;
  font-family:Georgia, 'Times New Roman', Times, serif
}


.footer {
  background-color: #333;
  text-align: center;
  color: #faf9f9;
  padding: 25px;
  height: fit-content;
  box-shadow: 0px 0px 10px rgb(218, 209, 249);
}
.footer p {
  font-size: 15px;
  color: #faf9f9;
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
