/* =============================================
   MK CARS — Global Reset
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Logo block ── */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__emblem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.navbar__brand-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.navbar__brand-name {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.navbar__phone {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #cc0000;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar__phone:hover {
  color: #ff1a1a;
}

/* ── Nav links ── */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar__link:hover {
  color: #cc0000;
}

.navbar__link--active {
  color: #cc0000;
  border-bottom-color: #cc0000;
}

/* ── Ma Sélection ── */
.navbar__selection {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
  padding-left: 20px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease;
}

.navbar__selection:hover {
  color: #cc0000;
}

/* ── Hamburger (hidden on desktop) ── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X when open */
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MOBILE FULL-SCREEN MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: Arial, sans-serif;
}

.mobile-menu__close:hover {
  color: #cc0000;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mobile-menu__link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: #cc0000;
}

.mobile-menu__selection {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* =============================================
   HERO VIDEO
   ============================================= */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .navbar__links {
    gap: 18px;
  }
  .navbar__link {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__brand-name {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  .navbar__emblem {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .navbar__phone {
    font-size: 11px;
  }
}
