:root {
  --maroon: #6b0f1a;
  --gold: #d4af37;
  --gold-light: #ffdf7e;
  --text-dark: #2e2e2e;
  --bg-light: #f8f5f0;
  --bg-dark: #1a1a1a;
  --text-light: #ffffff;
  --accent: #d4af37;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  flex-wrap: wrap;
}

header nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

header nav a {
  text-decoration: none;
  color: var(--text-light);
}

.btn {
  background-color: var(--accent);
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background-color: var(--gold-light);
}

/* Hero Section */
.hero {
  padding: 3rem 5%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(14,14,14,1)),
              url('https://via.placeholder.com/1600x700') center/cover no-repeat;
}
.hero h1 {
  font-size: 3rem;
  max-width: 500px;
}

/* Offer Section */
.offer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 5%;
}
.offer-section .text {
  flex: 1;
  min-width: 280px;
}
.offer-section .cards {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.offer-card {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
}
.offer-card.highlight {
  background: var(--accent);
  color: #000;
}
.offer-card img {
  width: 100%;
  border-radius: 8px;
}

/* Cars */
.cars {
  padding: 3rem 5%;
}
.cars .filters {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.car-card {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 10px;
}
.car-card img {
  width: 100%;
  border-radius: 8px;
}

/* Sell */
.sell {
  background: #222;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 3rem 5%;
}
.sell img {
  max-width: 400px;
  width: 100%;
}

/* Contact */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 5%;
}
.contact .info,
.contact .map {
  flex: 1;
  min-width: 280px;
}
.contact img {
  width: 100%;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #fff;
  color: #000;
  padding: 2rem 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
footer a {
  color: #000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
