* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "SuzukiPRORegular", Arial, sans-serif;
}

.container {
  min-height: 100vh;
  background: url("./assets/bg.png") no-repeat center center/cover;
  position: relative;
}

.overlay {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}

.content-area {
  max-width: 1120px;
  margin: auto;
  padding: 40px 20px;
  overflow: hidden;
}

.header {
  text-align: center;
  color: white;
}

.header .logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#amw-logo {
  width: 200px;
}

#suzuki-logo {
  width: 150px;
}

.header h1 {
  font-family: "SuzukiPROBold";
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 20px;
  line-height: 120%;
  width: 600px;
  margin-inline: auto;
}

.content {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}

.left {
  width: 50%;
  text-align: center;
  color: white;
  align-self: center;
}

.left .main-text {
  font-family: "SuzukiPROHeadline";
  font-size: 25px;
  line-height: 110%;
  margin-bottom: 50px;
}

.note {
  background-color: rgba(0, 51, 153, 0.91);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.hotline {
  font-family: "SuzukiPROBold";
  text-transform: uppercase;
  text-decoration: none;
  background-color: #c50030;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  display: flex;
  justify-content: center;
}

.hotline:hover {
  background-color: #545454;
}

.right {
  width: 50%;
}

.car-grid {
  font-family: "SuzukiPRORegular";
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-size: 14px;
  color: #545454;
}

.full-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #545454;
  font-size: 14px;
}

.car-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  font-size: 14px;
  color: #545454;
  margin-top: 20px;
  font-family: "SuzukiPRORegular";
}

.car-item {
  background-color: white;
  padding: 10px;
  border-radius: 20px;
}

.car-item img {
  width: 100%;
}

.full-row img {
  width: 55%;
}

.car-item h2,
.full-row h2 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "SuzukiPROBold";
}

.car-item .price {
  font-weight: bold;
  font-size: 15px;
}

@media (max-width: 1120px) {
  .content {
    flex-direction: column;
  }
  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .left {
    width: 60%;
    margin: auto;
  }
  .right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header h1 {
    width: 100%;
    font-size: 20px;
  }
  .content {
    margin-top: 30px;
  }
  .left,
  .right {
    width: 100%;
  }

  .right {
    margin-top: 30px;
  }

  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .car-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .car-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .full-row {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .full-row img {
    width: 100%;
  }
  .logos {
    gap: 20px;
  }
  #amw-logo {
    width: 100px;
  }
  #nissan-logo {
    width: 75px;
  }
}
