:root {
  --official-black: #000000;
  --silver-gray: #D1D2D4;
  --soft-white: #F5F6F7;
  --midnight-blue: #003B73;
  --lifts-blue: #3A6EA5;
  --reps-red: #B12228;
  --carmine-red: #A31621;

  --font-header: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

body {
  background: var(--soft-white);
  font-family: var(--font-body);
  color: #000;
}

/* NAVIGATION */
header {
  background: var(--soft-white);
  padding: 25px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left img {
  height: 45px;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center img {
  height: 40px;
}

.nav-right a {
  color: var(--midnight-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* HERO */
.hero-outer {
  width: 100%;
  background: var(--reps-red);
}

.hero-img {
  width: 100%;
}

.hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* CTA Button */
.hero-cta {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 36px;
  background: white;
  color: black;
  text-decoration: none;
  font-family: var(--font-header);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: black;
  color: white;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 650px;
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-text h1 {
  font-family: var(--font-header);
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--soft-white);
}

.hero-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--soft-white);
}

.hero-side-image {
  flex-shrink: 0;
}

.hero-side-image img {
  width: 300px;
  height: 400px;
  object-fit: cover;
}

/* PRODUCTS */
.product-section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.product-section:nth-child(3) {
    background: var(--silver-gray);
}
.product-section h2 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}

.product-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.product-image {
  width: 400px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product-info {
  max-width: 300px;
}

.product-color {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-price-large {
  font-size: 24px;
  font-weight: 600;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: 0.3s ease;
}

.carousel-arrow:hover {
  background: #000;
  color: #fff;
}

.carousel-arrow.left { left: -70px; }
.carousel-arrow.right { right: -70px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--official-black);
}

/* FORM */
.form-section {
  padding: 40px 20px;
  background: var(--midnight-blue);
  max-width: 1400px;
  margin: 40px auto;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--soft-white);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 12px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 13px;
}

textarea {
  height: 80px;
  resize: vertical;
}

.checkbox {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--soft-white);
}

button[type="submit"] {
  padding: 12px;
  background: var(--silver-gray);
  color: var(--midnight-blue);
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: var(--soft-white);
}

/* FAQ */
.faq {
  padding: 40px 20px;
  background: var(--soft-white);
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

details {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}

/* FOOTER */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 40px;
  background: var(--soft-white);
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--reps-red);
  font-size: 24px;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-copyright {
  font-size: 12px;
  color: #999;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 20px;
  }

  .hero-img {
    width: 100%;
    order: -1;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-side-image img {
    width: 100%;
    height: auto;
  }

  /* CAROUSEL ARROWS */
  .carousel-arrow.left {
    left: 10px;
  }

  .carousel-arrow.right {
    right: 10px;
  }

  /* PRODUCT CONTAINER */
  .product-container {
    flex-direction: column;
    gap: 20px;
    background: var(--soft-white);
  }
  .product-section {
    max-width: 100%;
    margin: 0;
}

  .product-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}