/* ---------- Global Styles ---------- */
body {
  margin: 0;
  font-family: "Comic Neue", cursive, sans-serif;
  background-color: #111;
  color: #f2f2f2;
  line-height: 1.6;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* ---------- Header ---------- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 10px 20px;
  border-bottom: 1px solid #333;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  margin-right: 10px;
}

.brand-text h1 {
  font-size: 1.2rem;
  margin: 0;
  color: #f2f2f2;
}

.brand-text p {
  font-size: 0.9rem;
  margin: 2px 0;
  color: #ccc;
}

/* ---------- Language Toggle ---------- */
.lang-toggle button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px 12px;
  margin-left: 6px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.2s;
}

.lang-toggle button.active {
  background-color: #e53935;
  color: white;
}

.lang-toggle button:not(.active) {
  background-color: #2b2b2b;
  color: white;
}

/* ---------- Hero Section ---------- */
.hero {
  background-color: #111;
  padding: 20px 10px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero-left img {
  width: 330px;
  border-radius: 15px;
}

.hero-right {
  max-width: 380px;
  text-align: left;
}

.hero-right h2 {
  color: #33b5e5;
  font-size: 1.4rem;
}

.hero-right p {
  color: #b2ff59;
  font-size: 1rem;
}

.hero-ctas {
  margin-top: 12px;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 4px;
}

.btn.primary {
  background-color: #e53935;
  color: #fff;
}

.btn.whats {
  background-color: #25d366;
  color: #000;
}

/* ---------- Description / Features ---------- */
.description {
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-top: 15px;
  padding: 20px;
  text-align: left;
}

.description p {
  margin: 0 0 10px 0;
}

.description ul {
  list-style: none;
  padding: 0;
}

.description ul li::before {
  content: "• ";
  color: #ffcc00;
}

.description ul li {
  margin: 4px 0;
}

/* ---------- Section Headings ---------- */
h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

/* ---------- Car Segments ---------- */
.segments img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}

.muted {
  color: #aaa;
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.card {
  background-color: #1a1a1a;
  border-radius: 12px;
  width: 260px;
  padding: 12px;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h4 {
  color: #fff;
  margin: 8px 0 5px 0;
  font-size: 1.05rem;
}

.card p {
  color: #ccc;
  font-size: 0.9rem;
}

/* ---------- Contact Section ---------- */
.contact {
  margin-top: 25px;
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
}

.contact p {
  margin: 6px 0;
}

.map-link {
  display: inline-block;
  background-color: #e53935;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
}

/* ---------- Footer ---------- */
.footer {
  background-color: #000;
  padding: 12px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #333;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
  }

  .hero-right {
    text-align: center;
  }

  .card {
    width: 90%;
  }
}