/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}


/* ================= HERO ================= */
.hero {
  min-height: 70vh;
  background: url("../../img/vehicle/palidiesl/new_palisade_1120x600.avif") center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  width: 100%;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  max-width: 650px;
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #0a5cff;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
}

.btn-primary:hover {
  background: #0848c9;
}

/* ================= CONTENT ================= */
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}


.feature-box h3 {
  margin-bottom: 8px;
}

/* ======================================================
   INTERNAL NAVIGATION (CSS IMAGE)
====================================================== */

.internal-nav-section {
  width: 100%;
}

/* GRID */
.internal-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* CARD */
.internal-nav-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* IMAGE SOURCE */
.nav-home {
  background-image: url("/assets/img/showroom-bsd.webp");
}

.nav-vehicle {
  background-image: url("../../img/vehicle/all.avif");
}

/* OVERLAY */
.internal-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s ease;
}

/* TEXT */
.internal-nav-content {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 2;
}

.internal-nav-label {
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.internal-nav-title {
  font-size: 32px;
  font-weight: 600;
}

/* HOVER */
.internal-nav-card:hover .internal-nav-overlay {
  background: rgba(0,0,0,0.6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
