/* main.css */

/* Reset & Base */
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}
/* Navbar logo */
.navbar-brand img {
  height: 60px;
  width: auto;
}
/* Navbar */
.navbar {
  background-color: #f15a24;
}
.navbar-brand img {
  height: 60px;
}
.nav-link, .dropdown-item {
  color: black !important;
}
.dropdown-menu {
  background-color: #f9f9f9;
}
.dropdown-item:hover {
  background-color: #eaeaea;
}
.language-switcher {
  margin-left: auto;
  margin-right: 1rem;
}

/* Hero sections */
.hero-section {
  background: url('images/newbanner.PNG') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.hero-section h1 {
  font-size: 3rem;
}
.hero {
  background:#222; 
  color:#fff; 
  text-align:center; 
  padding:4em 2em;
}
.btn-primary {
  background-color: #000;
  border: none;
}

/* About & Contact content */
.container h2 {
  margin-top: 1em;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  margin-bottom: 1em;
}

/* Team Section */
.team img {
  max-width: 200px;
}

/* Product grid (from styles.css) */
.product-grid {
  padding: 2em 1em;
}
.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2em;
}
.product-card {
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  width: 200px;
  padding: 1em;
  text-align: center;
  border-radius: 8px;
  margin: 0.5em;
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Footer */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2em;
  padding: 2em;
  background-color: #cccccc;
  text-align: center;
}
.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-column h4 {
  margin-bottom: 0.5em;
}
.footer-column a {
  color: #000;
  text-decoration: none;
}
.footer-column form input,
.footer-column form button {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.5em;
  font-size: 1em;
}
.footer-column form button {
  background-color: #f15a24;
  color: #fff;
  border: none;
  cursor: pointer;
}
.footer-social {
  margin-top: 1em;
  font-size: 0.9em;
}
.footer-social a {
  color: #000;
  text-decoration: none;
  margin: 0 0.5em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .contact-form {
    padding: 0 1em;
  }
  .footer-columns {
    flex-direction: column;
    gap: 1em;
  }
  .product-row {
    flex-direction: column;
    align-items: center;
  }
}
/* Standard Hero Section */
.hero {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 5em 2em;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.25rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
}

/* Fullscreen Hero (for index only) */
.hero-section {
  background: url('newbanner.PNG') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1em;
}

.hero-section p {
  font-size: 1.25rem;
  color: #eee;
  max-width: 700px;
  margin: 0 auto;
}
/* Equal height finance partner cards */
.product-card {
  min-height: 200px; /* adjust based on your design */
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Equal height for all product/finance cards */
.product-card {
  min-height: 280px; /* adjust as needed */
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Make all header/nav links consistent */
.navbar .nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 500;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
/* Navbar link styles */
.navbar .nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: #000; /* ensure consistent black text */
  transition: color 0.2s ease, border-bottom 0.2s ease;
}

/* Hover effect: color + underline */
.navbar .nav-link:hover {
  color: #007bff; /* Bootstrap blue (you can customize) */
  border-bottom: 2px solid #007bff;
}

/* Active page link */
.navbar .nav-link.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}
/* Carousel controls: black arrows further outside */
#gasScooterCarousel .carousel-control-prev,
#gasScooterCarousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

/* Position arrows further away from grid */
#gasScooterCarousel .carousel-control-prev {
  left: -80px; /* moves arrow further left */
}

#gasScooterCarousel .carousel-control-next {
  right: -80px; /* moves arrow further right */
}

/* Black chevrons */
#gasScooterCarousel .carousel-control-prev-icon,
#gasScooterCarousel .carousel-control-next-icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#gasScooterCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#gasScooterCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 0 0 .708L9.293 7l-4.647 4.646a.5.5 0 0 0 .708.708l5-5a.5.5 0 0 0 0-.708l-5-5a.5.5 0 0 0-.708 0z'/%3e%3c/svg%3e");
}

/* Carousel controls: black arrows further outside */
#motorcyclesCarousel .carousel-control-prev,
#motorcyclesCarousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

/* Position arrows further away from grid */
#motorcyclesCarousel .carousel-control-prev {
  left: -80px; /* moves arrow further left */
}

#motorcyclesCarousel .carousel-control-next {
  right: -80px; /* moves arrow further right */
}

/* Black chevrons */
#motorcyclesCarousel .carousel-control-prev-icon,
#motorcyclesCarousel .carousel-control-next-icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#motorcyclesCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#motorcyclesCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 0 0 .708L9.293 7l-4.647 4.646a.5.5 0 0 0 .708.708l5-5a.5.5 0 0 0 0-.708l-5-5a.5.5 0 0 0-.708 0z'/%3e%3c/svg%3e");
}

/* Centered modal image */
#imageModal img {
  max-height: 90vh;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
/* Centered modal image */
#imageModal img {
  max-height: 90vh;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
/* Modal image styling */
#imageModal img {
  max-height: 85vh;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

/* Modal nav arrows */
#modalPrev, #modalNext {
  font-size: 2rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.85;
}
#modalPrev:hover, #modalNext:hover {
  opacity: 1;
}

