html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* TOP BAR */
.topbar {
  height: 60px;
  background: linear-gradient(#111, #000);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #1a1a1a;
}

/* HAMBURGER */
.hamburger {
  width: 30px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #e70700;
  margin: 6px 0;
  border-radius: 2px;
}

/* TEXT LOGO */
.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 6px;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
}

/* VIP */
.vip-text {
  color: #e70700;
}

/* GARAGE */
.garage-text {
  color: #ffffff;
}


/* LANGUAGE BOX */
.lang-box {
  position: relative;
  font-size: 14px;
  user-select: none;
}

/* CURRENT */
.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-current:hover {
  background: #111;
  box-shadow: 0 0 0 1px #e7070022;
}

/* FLAG */
.lang-current img {
  width: 22px;
  border-radius: 4px;
}

/* DROPDOWN ICON */
.lang-current i {
  font-size: 11px;
  opacity: 0.7;
}

/* LIST */
.lang-list {
  position: absolute;
  right: 0;
  top: 48px;
  width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 14px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid #1a1a1a;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* ITEM */
.lang-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* ITEM HOVER */
.lang-list li:hover {
  background: #151515;
  color: #fff;
}

/* FLAG */
.lang-list img {
  width: 20px;
  border-radius: 4px;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #0b0b0b;
  border-right: 1px solid #e70700;
  padding-top: 70px;
  transition: 0.3s ease;
  z-index: 200;
}

.side-menu.active {
  left: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #111;
}

.side-menu li a:hover {
  background: #111;
  color: #e70700;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  display: none;
  z-index: 150;
}

.overlay.active {
  display: block;
}
/* MENU TITLE */
.menu-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #1a1a1a;
}

.menu-title .vip {
  color: #fff;
}

.menu-title .garage {
  color: #e70700;
}
/* FOOTER */
footer {
  background: #0b0b0b;
  border-top: 1px solid #1a1a1a;
  padding: 30px 20px 15px;
  color: #ccc;
  font-size: 14px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* FOOTER SECTION */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* LOGO */
.footer-logo {
  justify-content: center;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
}

/* HEADINGS */
.footer-section h3 {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.footer-section h3::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #e70700;
  display: block;
  margin-top: 5px;
}

/* LINKS */
.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}

.footer-section a:hover {
  color: #e70700;
}

/* FOOTER BOTTOM */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #777;
}

/* SOCIAL BAR */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-bar a {
  color: #fff;
  font-size: 22px;
}

.social-bar a:hover {
  color: #e70700;
}

/* MOBILE */
@media (max-width: 600px) {
  footer {
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .footer-section h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}
footer {
  margin-top: auto;
}
/* Araçlar */
#cars {
  padding: 60px 20px;
}

#cars h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}

#cars h1::after {
  content: "";
  width: 60px;
  height: 3px;
  background: red;
  display: block;
  margin: 10px auto 0;
}

/* Galeri */
.car-gallery {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Kart */
.car-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: transform .3s ease, box-shadow .3s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,0,0,0.25);
}

/* Hover kırmızı şerit */
.car-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: red;
  transition: width .3s ease;
}

.car-card:hover::before {
  width: 100%;
}

/* Resim */
.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* İçerik */
.car-card div {
  padding: 16px;
}

.car-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.car-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

/* Link temizleme */
.car-card a {
  text-decoration: none;
}

/* Alt not */
.cars-note {
  max-width: 1000px;
  margin: 50px auto 0;
  text-align: center;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .car-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .car-gallery {
    grid-template-columns: 1fr;
  }

  .car-card img {
    height: 180px;
  }
}
