/*
 Theme Name: Prodrive Rental
 Description: Car Rental Theme 
Author: Anurag Kumar
Version: 1.0
*/

/* REMOVE LEFT-RIGHT GAP (GLOBAL FIX) */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Elementor full width real fix */
.elementor-section.elementor-section-stretched {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Archive Cars Page */

.cars-archive-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.cars-archive-header {
  text-align: center;
  margin-bottom: 40px;
}

.cars-archive-header h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cars-archive-header p {
  color: #666;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.car-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.car-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.car-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.car-card-body {
  padding: 15px;
  text-align: center;
}

.car-name {
  font-size: 18px;
  margin-bottom: 8px;
}

.car-price {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.btn-view {
  display: inline-block;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.btn-view:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .cars-archive-header h1 {
    font-size: 26px;
  }
}
/* ===== HEADER (FINAL CLEAN) ===== */
/* HEADER OVER HERO */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0,0,0,0.55);
}

body.admin-bar .site-header {
  top: 32px; /* WordPress admin bar */
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.site-logo a,
.site-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.site-logo img {
  max-height: 40px;
  width: auto;
}


/* NAV CENTER */
.primary-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* MENU */
.primary-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 28px;
}

.primary-navigation ul li {
  margin: 0;
}

.primary-navigation ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.primary-navigation ul li a:hover {
  color: #facc15;
}

/* USER RIGHT */
.header-user a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
/* ===============================
   HERO SECTION – PRODRIVE STYLE
================================ */

.hero-prodrive {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70')
    center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  min-height: 100vh;
  padding: 160px 40px 60px;
}

/* TEXT */
.hero-content {
  max-width: 900px;
  color: #fff;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  max-width: 720px;
  color: #eaeaea;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
}

.hero-buttons a {
  display: inline-block;
  background: #f5c400;
  color: #000;
  padding: 14px 28px;
  margin-right: 15px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.hero-buttons a:hover {
  background: #e0b000;
}

/* BOOKING BAR */
.booking-bar {
  margin-top: 55px;
  background: rgba(0,0,0,0.75);
  padding: 25px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) 60px;
  gap: 12px;
}

.booking-bar .field {
  display: flex;
  flex-direction: column;
}

.booking-bar label {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 6px;
}

.booking-bar input,
.booking-bar select {
  padding: 12px;
  border-radius: 4px;
  border: none;
}

.booking-bar button {
  background: #f5c400;
  border: none;
  font-size: 22px;
  border-radius: 4px;
  cursor: pointer;
}

.booking-bar button:hover {
  background: #e0b000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .booking-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-bar button {
    grid-column: span 2;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}
.hero-prodrive {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70')
    center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  min-height: 100vh;
  padding: 160px 40px 60px;
}

.hero-content {
  max-width: 900px;
  color: #fff;
}

.hero-buttons a {
  background: #f5c400;
  color: #000;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
}

