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;
}
/* ============================= */
/* MAINTENANCE TRAFFIC LIGHT */
/* ============================= */

.maintenance-area {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ============================= */
/* TRAFIK ISIGI - YATAY */
/* ============================= */

.traffic-light.horizontal {
  display: flex;
  gap: 22px;
  padding: 22px 28px;
  background: #0e0e0e;
  border-radius: 40px;
  box-shadow: 0 0 45px rgba(255,204,0,0.25);
}

/* ISIKLAR */
.traffic-light .light {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #222;
  opacity: 0.2;
}

/* SARI UYARI MODU */
.traffic-light .yellow {
  background: #ffcc00;
  animation: yellowBlink 1.4s infinite;
}

.traffic-light .yellow:nth-child(2) {
  animation-delay: 0.2s;
}

.traffic-light .yellow:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes yellowBlink {
  0%, 100% {
    opacity: 0.25;
    box-shadow: none;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px rgba(255,204,0,0.9);
  }
}

/* ============================= */
/* PARLAYAN YAZI */
/* ============================= */

.maintenance-text-glow {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffcc00;
  text-transform: uppercase;
  animation: glowText 1.6s infinite;
}

@keyframes glowText {
  0%, 100% {
    opacity: 0.4;
    text-shadow: none;
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 8px rgba(255,204,0,0.8),
      0 0 18px rgba(255,204,0,0.6);
  }
}
