@font-face {
  font-family: 'ArialRounded';
  src: url('../fonts/arialroundedmtbold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'ArialRounded', sans-serif;
}

/* HEADER */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 40px;
}

/* NAVIGATION */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: flex-end;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* MENU LINKS */
.menu a {
  font-family: 'ArialRounded', sans-serif;
  text-decoration: none;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.menu a:hover,
.menu a.active {
  color: #F48420;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  text-align: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 150px;
  top: 30px;
  z-index: 1;
  padding: 10px 0;
}

.dropdown-content a {
  display: block;
  padding: 8px 15px;
  color: white;
  font-size: 14px;
  white-space: nowrap;
}

.dropdown.active .dropdown-content {
  display: block;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  position: absolute;
  top: 10px;
}

.hamburger div {
  width: 25px;
  height: 2px;
  background: white;
}

.dealer-button {
  background: linear-gradient(90deg, #F48420, #FF5800);
  padding: 15px;
  border-radius: 15px;
  font-weight: bold;
}

.dealer-button:hover {
  color: white !important;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hamburger {
    display: flex;
    align-self: flex-end;
    margin-top: 10px;
    margin-right: 20px;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000;
    padding: 20px 0;
    border-top: 1px solid #222;
  }

  .menu.show {
    display: flex;
  }

  .menu a {
    padding: 10px 20px;
    /* width: 100%; */
  }

  .dropdown-content {
    position: static;
    background: transparent;
    padding: 0;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown .dropdown-content a {
    padding-left: 40px;
  }

  .dropdown>a::after {
    content: ' ▼';
    font-size: 12px;
  }

  .logo img {
    height: 30px;
  }
}