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

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

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

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


/* HERO */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* SECTION */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f5f5f5;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-box h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.text-box h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.text-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: normal;
}

.text-box p {
  font-size: 16px;
  max-width: 520px;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================================================
   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) {
  .grid-two {
    grid-template-columns: 1fr;
  }

  .text-box h1 {
    font-size: 34px;
  }
}
