/* Alternative colors
Highlighter Yellow: #b4f31d
OverDosed Blue: #2286c8 */

:root {
  --primary-accent: #b4f31d; /* High-vis lime */
  --dark-bg: #0a0a0a;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --font-main: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main), Arial, sans-serif;
  background-color: var(--dark-bg);
  color: white;
  overflow-x: hidden;
}

/* Logo Header */
header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
}

.logo {
  display: inline-block;
}

.logo-img {
  max-width: 300px;
}

.logo span {
  color: var(--primary-accent);
}

/* Main Split Screen */
.split-container {
  display: flex;
  height: 73vh;
  width: 100%;
}

.split {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 20px;
}

/* Background Images (Placeholders) */
.retail {
  background-image: linear-gradient(var(--overlay-dark), var(--overlay-dark)),
    url("../images/retail_350Z_2638.jpg");
}

.wholesale {
  background-image: linear-gradient(var(--overlay-dark), var(--overlay-dark)),
    url("../images/shop_wall_wheels.jpg");
}

.split:hover {
  flex: 1.2;
}

.split h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.split p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 400px;
  opacity: 0.9;
}

.btn {
  padding: 15px 40px;
  background-color: var(--primary-accent);
  color: black;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  background-color: white;
}

/* Secondary Links (Fitment & Mechanic) */
.secondary-links {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #111;
  border-top: 2px solid #222;
}

.sec-btn {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  border-right: 1px solid #222;
  transition: background 0.3s;
}

.sec-btn:hover {
  background: #1a1a1a;
}

.sec-btn i {
  font-size: 2.2rem;
  margin-right: 20px;
  color: var(--primary-accent);
}

.ph-tire {
  font-size: 3rem !important;
}

.sec-btn h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
}

.sec-btn p {
  font-size: 0.9rem;
  color: #888;
}

/* Footer */
footer {
  padding: 40px;
  text-align: center;
  background: #000;
}

.socials {
  margin-bottom: 30px;
}

.socials a {
  color: white;
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s;
}

.socials a:hover {
  color: var(--primary-accent);
}

.copyright {
  color: #999999;
  font-size: 0.8rem;
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
    height: 120vh;
  }
  .split h2 {
    font-size: 2rem;
  }
  .secondary-links {
    flex-direction: column;
  }
  .sec-btn {
    border-right: none;
    border-bottom: 1px solid #222;
  }
  header {
    position: relative;
    top: 0;
    padding: 20px 0;
    background: #000;
    width: 100%;
    transform: none;
    left: 0;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-width: 200px;
  }
}
