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

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.website {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: auto;
  min-height: 100vh;
}

/* Menu Bar / Header */
.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 1);
}

.logo-container {
  display: flex;
  align-items: center;
  padding: 0 30px;
  width: 100%;
  max-width: 473px;
  height: 55px;
  justify-content: space-between;
  background-color: #fff;
}

.logo-wrapper {
  display: flex;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  height: 100%;
  width: 70px;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-name {
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.brand-name-bold {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 25px;
  color: #000;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-name-regular {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: #000;
  text-transform: uppercase;
  line-height: 1.2;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: none;
}

.main-nav {
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  display: flex;
}

.nav-item {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
}

.nav-home {
  color: #121212;
  transition: color 0.3s ease;
}

.nav-home:hover {
  color: #121212;
}

.nav-text {
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-text:hover {
  color: #fa6600;
}

.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}

.lang-btn {
  padding: 5px 10px;
  border: 1px solid #fa6600;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.lang-de {
  background: #fa6600;
  color: white;
}

.lang-btn:hover {
  background: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  background-image: url(img/hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 75px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
}

.text-box {
  position: absolute;
  top: 50%;
  left: 75px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 757px;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-welcome {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 10px;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 85px;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.97);
  width: 100%;
  font-size: 54px;
  line-height: 60px;
}

.hero-description {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 27px;
  font-weight: 300;
  padding-right: 25px;
}

.cta-button {
  padding: 16px 21px;
  border: 1px solid white;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  color: white;
  text-align: center;
  cursor: pointer;
  width: auto;
  align-self: start;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  display: inline-block;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: rgba(250, 102, 0, 0.9);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
  background-color: rgba(250, 102, 0, 1);
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
  font-size: 24px;
}

/* Features Section */
.features {
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
  background-image: url(img/features.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.features-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.motorcycle-image {
  width: 100%;
  height: 643px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 15px;
  padding-right: 23px;
}

.service-items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 800px;
  color: rgba(255, 255, 255, 1);
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 350px;
  height: 355px;
  padding: 25px 20px;
  border-top: 5px solid #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.11);
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #000;
}


.service-button {
  margin-top: 10px;
  padding: 12px 45px;
  background-color: #fa6600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.service-button:hover {
  background-color: #fa6600;
}

.icon-container {
  position: absolute;
  top: 2px;
  left: 135px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  border-radius: 10px;
  border: 4px solid #fa6600;
  position: absolute;
  left: -10px;
  top: -17px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.icon-box i {
  transform: rotate(-45deg);
  font-size: 29px;
  color: #121212;
}

.service-title {
  margin-top: 112px;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}

.service-description {
  margin-top: 20px;
  width: 286px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  line-height: 1.7;
}

/* Gallery Section */
.gallery {
  padding: 100px 50px;
  background: #ffffff;
  position: relative;
  padding-top: 20px;
  padding-bottom: 70px;
  background-color: rgba(0, 0, 0, 1);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 1);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: rgb(0, 0, 0);
}


.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
  position: relative;
}

.carousel-image {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
}

.prev-btn {
  left: 20px;
}

.prev-btn:hover {
  background: white;
}

.next-btn {
  right: 20px;
}

.next-btn:hover {
  background: white;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: white;
}

/* Location Section */
.location {
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-top: 20px;
  padding-bottom: 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  background-repeat: no-repeat;
  background-image: url(img/gallery05.jpg);
}

.location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.location .section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  position: relative;
  z-index: 2;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.map-container iframe {
  border: 0;
}

/* Footer */
.footer {
  color: rgba(255, 255, 255, 1);
  padding: 60px 50px 30px;
  background-color: #000;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info {
  gap: 5px;
  display: flex;
  flex-direction: column;
  margin-top: -3px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-language-switcher {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 20px;
  flex-direction: row;
}

.footer-lang-btn {
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 20px;
  padding-right: 20px;
  background: transparent;
  color: #fff;
}

.footer-lang-de {
  background: #fff;
  color: #000;
}

.footer-lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-link {
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline-block;
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  color: #fa6600;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

/* Media Queries */
@media (max-width: 991px) {
  .website {
    max-width: 991px;
  }

  .menu-bar {
    padding: 10px 20px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background-color: white;
    flex-direction: column;
    padding: 80px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .brand-name-bold,
  .brand-name-regular {
    line-height: 30px;
    letter-spacing: 0px;
  }

  .hero {
    display: flex;
  }

  .overlay {
    display: flex;
  }

  .text-box {
    width: 80%;
    padding: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-description {
    font-size: 18px;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 25px;
  }

  .features {
    padding: 60px 30px;
    background-attachment: scroll;
  }

  .features-container {
    max-width: 991px;
    flex-direction: column;
    padding: 20px;
  }

  .motorcycle-image {
    width: 100%;
    height: 500px;
  }

  .service-items {
    margin-top: 30px;
    gap: 25px;
    max-width: 100%;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .service-item {
    margin-bottom: 20px;
  }

  .service-title {
    font-size: 20px;
    margin-top: 95px;
  }

  .service-description {
    font-size: 16px;
    width: 100%;
  }

  .gallery {
    padding: 60px 30px;
  }

  .location {
    padding: 60px 30px;
    background-attachment: scroll;
  }

  .map-container {
    height: 400px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .website {
    max-width: 640px;
  }

  .menu-bar {
    padding: 10px 20px;
  }

  .logo-container {
    padding: 0 15px;
    height: 75px;
  }

  .logo-wrapper {
    width: 90px;
  }

  .brand-name {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .brand-name-bold,
  .brand-name-regular {
    font-size: 18px;
    line-height: 18px;
  }

  .hero {
    background-image: url(img/hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
  }

  .overlay {
    display: flex;
  }

  .text-box {
    gap: 20px;
    padding: 0;
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-title {
    font-size: 36px;
    line-height: 0px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 15px;
  }

  .cta-button {
    font-size: 16px;
    width: auto;
    align-self: start;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top i {
    font-size: 20px;
  }

  .features {
    padding: 40px 20px;
    background-attachment: scroll;
  }

  .features-container {
    max-width: 640px;
    padding: 10px;
  }

  .motorcycle-image {
    width: 100%;
    height: 375px;
    margin-left: auto;
    display: block;
    margin-right: auto;
  }

  .service-items {
    margin-left: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    max-width: 100%;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    justify-items: center;
  }

  .service-item {
    width: 100%;
    max-width: 300px;
  }

  .service-title {
    font-size: 18px;
    margin-top: 85px;
  }

  .service-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .gallery {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .location {
    padding: 40px 20px;
    background-attachment: scroll;
  }

  .location .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .map-container {
    height: 300px;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Add this to your styles.css file */
.privacy-policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 50px;
  text-align: center;
  background-color: #f9f9f9; /* Optional: Add a background color */
  min-height: 100vh; /* Ensure it takes up the full viewport height */
}

.privacy-policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff; /* Optional: Add a white background for the text box */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
  border-radius: 8px; /* Optional: Add rounded corners */
}

/* Add this to your styles.css file */
.privacy-policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 50px;
  text-align: center;
  background-color: #f9f9f9; /* Optional: Add a background color */
  min-height: 100vh; /* Ensure it takes up the full viewport height */
}

.privacy-policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff; /* Optional: Add a white background for the text box */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
  border-radius: 8px; /* Optional: Add rounded corners */
}