/* Custom CSS for Twenty Twenty-Five Child Theme */
/* This file contains the styles extracted from the original HTML's <style> block */

/* General Body */
body {
  background-color: #fafafa;
  font-family: "Poppins", sans-serif, Arial, sans-serif;
}

/* Header Styles */
.navbar {
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-brand img {
  height: 32px;
  user-select: none;
}
.navbar-nav .nav-link {
  color: #212529;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff5722;
  font-weight: 700;
}
.navbar-text {
  color: #212529;
  font-weight: 500;
  cursor: pointer;
  margin-right: 1.5rem;
}
.btn-register {
  background-color: #ff5722;
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgb(255 87 34 / 0.55);
  transition: background 0.3s ease;
  cursor: pointer;
  user-select: none;
}
.btn-register:hover {
  background-color: #e64a19;
}

/* Banner Section */
.banner-section {
  padding: 40px 0;
  background-color: #fafafa;
  position: relative;
  overflow: visible;
}
.banner-content {
  max-width: 600px;
}
.banner-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.banner-content h1 {
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.banner-content h1 .highlight {
  color: #ff5722;
}
.banner-content p {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 450px;
}
.btn-book {
  background: #ff5722;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(255, 87, 34, 0.4);
  transition: background 0.3s ease;
  border: none;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}
.btn-book:hover {
  background: #e64a19;
  box-shadow: 0 8px 20px rgba(230, 74, 25, 0.6);
}
.btn-learn {
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  transition: background 0.3s ease;
  cursor: pointer;
  user-select: none;
}
.btn-learn:hover {
  background: #333;
  color: #ff5722;
}
.car-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.2));
  user-select: none;
}

/* Form Section Styles */
.form-section {
  background: #fff;
  padding: 50px 0;
  box-shadow: 0 4px 40px rgb(0 0 0 / 0.1);
  border-radius: 12px;
  max-width: 1100px;
  margin: -80px auto 80px; /* overlaps a bit with banner */
  position: relative;
  z-index: 10;
}
.form-card {
  padding: 1.5rem;
}
.form-control {
  border-radius: 0.375rem;
  height: 50px;
  padding-left: 2.8rem;
}
.form-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  font-size: 1.1rem;
}
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}
.btn-submit {
  background-color: #ff5722;
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px 0;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgb(255 87 34 / 0.55);
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}
.btn-submit:hover {
  background-color: #e64a19;
}

/* Responsive */
@media (max-width: 991.98px) {
  .form-section {
    margin: 0 15px 60px;
  }
}
@media (max-width: 767.98px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }
  .banner-section {
    padding-bottom: 40px;
  }
  .car-image {
    margin-top: 3rem;
    max-width: 90%;
  }
}
