
/* ==============================================
   BASE STYLES
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0 5rem 0 5rem;
  @media (max-width: 460px) {
    overflow-x: hidden;
    padding: 0 3rem;
  }
}

* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}


.hidden {
  opacity: 0;
  pointer-events: none;
}


/* ==============================================
   HEADER & LOGO SECTION
   ============================================== */

.header {
  width: 100%;
  margin: 0;
  padding: 0;
}

.centerLogo {
  height: 80vh;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.logoHead {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50vw;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}

.logoVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
  object-fit: cover;
  aspect-ratio: 42/9;
}

.triangleDownHeaderMain {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 10rem;
}

.triangleDownHeader {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #999999;
  animation: fadeIn 1s ease-in-out 2s forwards;
}

a .triangleDownHeader {
  text-decoration: none;
  display: inline-block;
}


/* ==============================================
   NAVIGATION
   ============================================== */

.topnav {
  position: sticky;
  top: 20px;
  left: 0;
  display: flex;
  align-items: center;
  height: 50px;
  z-index: 1000;
  padding-left: 10px;
}

.icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 101;
  width: 28px;
  height: 22px;
  @media (max-width: 400px) {
    width: 18px;
    height: 14px;
  }
}

.icon span {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  @media (max-width: 400px) {
    height: 2px;
  }
}

.icon.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.icon.open span:nth-child(2) {
  opacity: 0;
}

.icon.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#navLinks {
  display: none;
  position: absolute;
  left: 10px;
  top: 60px;
  background-color: white;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: visible;
  min-width: 180px;
  animation: fadeIn 0.3s ease;
}

#navLinks a {
  padding: 12px 18px;
  text-decoration: none;
  color: #222;
  display: block;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

#navLinks a:hover {
  background-color: #f7f7f7;
  padding-left: 24px;
}

.navWeAre {
  display: none;
  @media (min-width: 960px) {
    display: block !important;
  }
  @media (max-width: 959px) {
    display: none !important;
  }
}

.navWeArePhone {
  display: none;
  @media (min-width: 960px) {
    display: none !important;
  }
  @media (max-width: 959px) {
    display: block !important;
  }
}

.dropdown-wrapper {
  position: relative;
  display: block;
}

.dropdown-trigger {
  padding: 12px 18px;
  text-decoration: none;
  color: #222;
  display: block;
  transition: background 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

.dropdown-trigger:after {
  content: " ▶";
  font-size: 0.8em;
  margin-left: 8px;
  color: #888;
  @media (max-width: 959px) {
    display: none;
  }
}

.dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1002;
  margin-left: -1px;
  @media (max-width: 959px) {
    display: none !important;
  }
}

.dropdown-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 100%;
  background: transparent;
  z-index: 1001;
  @media (max-width: 959px) {
    display: none;
  }
}

.dropdown-submenu a {
  color: #222;
  padding: 12px 18px;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease, padding-left 0.2s ease;
  margin-right: 0;
}

.dropdown-submenu a:hover {
  background-color: #f7f7f7;
  padding-left: 24px;
}

.dropdown-wrapper:hover .dropdown-submenu {
  display: block;
  animation: fadeIn 0.3s ease;
  @media (max-width: 959px) {
    display: none !important;
  }
}

.dropdown-wrapper:hover .dropdown-trigger {
  background-color: #f7f7f7;
  padding-left: 24px;
}


/* ==============================================
   TÄTIGKEITEN SECTION
   ============================================== */

.doMain {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  @media (max-width: 1150px) {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  @media (max-width: 500px) {
    gap: 12px;
  }
}

.box {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.box:hover .boxTextHeader {
  background-color: #61927E;
  color: white;
  border-bottom-color: #61927E;
}

.boxTextHeader {
  padding: 25px 30px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #e9ecef;
  background-color: #f8f9fa;
  margin: 0;
  transition: all 0.3s ease;
  @media (max-width: 1150px) {
    color: #61927E;
  }
  @media (max-width: 768px) {
    padding: 20px;
    font-size: 1.1rem;
  }
  @media (max-width: 500px) {
    padding: 15px;
    font-size: 1rem;
  }
  @media (max-width: 350px) {
    padding: 12px;
    font-size: 0.95rem;
  }
}

.boxText {
  text-align: justify;
  text-justify: inter-character;
  hyphens: auto;
  padding: 25px 30px;
  background-color: #fafafa;
  color: #555;
  line-height: 1.7;
  margin: 0;
  @media (max-width: 768px) {
    padding: 20px;
    font-size: 0.95rem;
  }
  @media (max-width: 500px) {
    padding: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  @media (max-width: 350px) {
    padding: 12px;
    font-size: 0.85rem;
  }
}

.link-wwd {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #61927E;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.link-wwd:hover {
  color: #1db750;
  border-bottom-color: #1db750;
}


/* ==============================================
   WE-ARE SECTION
   ============================================== */

.weAreLogo {
  width: 100%;
  margin-top: 50%;
  margin-bottom: 1rem;
}

.numbers {
  display: flex;
  justify-content: center;
  gap: 3vw;
  position: relative;
  @media (max-width: 960px) {
    margin-top: auto;
  }
}

.num {
  font-weight: 1000;
  margin-bottom: 0;
  font-size: 2rem;
}

.numText {
  margin-top: 0.7vw;
}

.numClass {
  margin-left: 0;
  text-align: center;
}

.weAre {
  display: flex;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 10rem;
  height: 150vh;
  padding: 5vh 10vw;
  gap: 5vw;
  @media (max-width: 960px) {
    display: none;
  }
}

.weAreLeft {
  flex: 1;
  margin-bottom: 20%;
}

.weAreRight {
  margin-top: 50%;
  flex: 2;
}

.weAreHeader {
  position: sticky;
  top: 40%;
  color: #61927E;
  font-weight: 1000;
  line-height: 0.8;
  font-size: 5rem;
}

.weAreText {
  text-align: justify;
  hyphens: auto;
  line-height: 1.5;
}


.weArePhone {
  display: block;
  @media (min-width: 960px) {
    display: none;
  }
}

.weAreHeaderPhone {
  margin-top: 10rem;
  color: #61927E;
  font-weight: 1000;
  font-size: 3rem;
  line-height: 0.8;
  text-align: center;
}

.weAreTextPhone {
  text-align: justify;
  hyphens: auto;
  line-height: 1.5;
}


/* ==============================================
   FUHRPARK SECTION
   ============================================== */

.fuhrparkMain {
  margin-top: 10rem;
}

.fuhrparkContent {
  @media (max-width: 960px) {
    justify-content: center;
  }
}

.a {
  @media (max-width: 960px) {
    justify-content: center;
    text-align: center;
  }
  @media (max-width: 600px) {
    text-align: center;
    font-size: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.fuhrparkHeader {
  top: 40%;
  color: #61927E;
  font-weight: 1000;
  line-height: 0.8;
  font-size: 5rem;
  @media (max-width: 960px) {
    font-size: 12vw;
    margin-bottom: 2rem;
    margin-top: 20rem;
    text-align: center;
  }
  @media (max-width: 600px) {
    font-size: 15vw;
    line-height: 1;
    text-align: center;
  }
  @media (max-width: 400px) {
    font-size: 2.5rem;
    text-align: center;
  }
}

.vehicles-section {
  margin-top: 3rem;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.vehicle-item {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.vehicle-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.vehicle-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #495057;
  user-select: none;
  border-bottom: 2px solid #e9ecef;
  transition: all 0.3s ease;
  @media (max-width: 550px) {
      font-size: 0.8rem;
  }
}

.vehicle-header:hover {
  background-color: #f8f9fa;
}

.vehicle-header.active {
  background-color: #61927E;
  color: white;
  border-bottom-color: #61927E;
}

.vehicle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #fafafa;
}

.vehicle-content.active {
  max-height: 500px;
  padding: 25px 30px;
}

.vehicle-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.detail-item {
  background: white;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #61927E;
}

.detail-item h4 {
  color: #2c3e50;
  margin-bottom: 8px;
}

.detail-item p {
  color: #6c757d;
  font-size: 0.95rem;
}


/* ==============================================
   BESONDERS SECTION
   ============================================== */

.besondersMain {
  margin-top: 10rem;
}

.besondersBox {
  display: flex;
  gap: 10rem;
  justify-content: center;
  align-items: center;
  @media (max-width: 1000px) {
    text-align: center;
    display: block;
  }
}

.besondersHeader {
  color: rgb(153, 153, 153);
  font-weight: 1000;
  line-height: 0.8;
  font-size: 5rem;
  padding-bottom: 0;
  margin-bottom: 0;
  @media (max-width: 700px) {
    font-size: 3rem;
  }
  @media (max-width: 400px) {
    font-size: 2rem;
  }
}

.besondersHeaderfont {
  color: #61927E;
  font-weight: 1000;
  line-height: 0.8;
  font-size: 5rem;
  @media (max-width: 700px) {
    font-size: 3rem;
  }
  @media (max-width: 400px) {
    font-size: 2rem;
  }
}

.besondersList {
  padding-top: 0;
  margin-top: 2rem;
  list-style: square;
  font-size: 1.3rem;
  color: rgb(153, 153, 153);
  line-height: 1.5;
  @media (max-width: 1000px) {
    list-style: none;
    line-height: 1.7;
    padding-left: 0;
  }
}

.besondersList li::marker {
  color: #61927E; 
  font-size: 2rem;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  height: 80vh;
  min-height: 600px;
  @media (max-width: 1000px) {
    display: none;
  }
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.sailboat {
  grid-column: 1;
  grid-row: 1;
  @media (max-width: 1200px) {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
  }
}

.gas-meter {
  grid-column: 2;
  grid-row: 1;
  @media (max-width: 1200px) {
    display: none;
  }
}

.wohnmobil {
  grid-column: 1;
  grid-row: 2;
  @media (max-width: 1200px) {
    display: none;
  }
}

.wheel {
  grid-column: 2;
  grid-row: 2;
  @media (max-width: 1200px) {
    display: none;
  }
}


/* ==============================================
   PARALLAX IMAGE
   ============================================== */

.parallax_img {
  background: url("images/streetview_screen.jpg") center / cover no-repeat fixed;
  min-height: 300px;
  width: calc(100% + 10rem);
  margin: 10rem -5rem;
  padding: 0;
  overflow-x: hidden;
}


/* ==============================================
   FAQ SECTION
   ============================================== */

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-headers {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header {
  font-size: 5vw;
  color: #61927E;
  font-weight: 1000;
  margin-bottom: 1rem;
  white-space: nowrap;
  @media (max-width: 1200px) {
      white-space: normal;
  }
}


.faq-subheader {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.faq-item {
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #495057;
  user-select: none;
  transition: background-color 0.3s ease;
  @media (max-width: 768px) {
    padding: 20px;
    font-size: 1rem;
    height: auto;
  }
}

.faq-question:hover {
  background-color: #dee2e6;
}

.faq-question.active {
  background-color: #61927E;
  color: white;
}

.chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.chevron::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-question.active .chevron::before {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: white;
}

.faq-answer.active {
  max-height: 500px;
  padding: 10px 30px 10px 30px;
  @media (max-width: 768px) {
    padding: 10px 30px 10px 30px;
  }
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}


/* ==============================================
   KONTAKT SECTION
   ============================================== */

.kontakt {
  display: flex;
  gap: 40px;
  margin-top: 100px;
  overflow: hidden;
  @media (max-width: 1133px) {
    display: block;
    width: 100%;
  }
}

.kontaktHeader {
  font-size: 5vw;
  color: #61927E;
  font-weight: 1000;
  margin-bottom: 0;
}

.kontaktInfo {
  margin-top: 0;
  margin-bottom: 3vw;
}

.kontakttext {
  line-height: 2.5;
}

.fa-solid {
  color: #61927E;
  margin-right: 10px;
  display: inline-block;
}

.kontaktLeft {
  flex: 1;
  padding-left: 20px;
}

.kontaktRight {
  @media (max-width: 1133px) {
    margin-top: 5rem;
  }
  @media (max-width: 600px) {
    display: none;
  }
}


/* ==============================================
   FOOTER
   ============================================== */

footer {
  width: 100%;
  margin-top: 100px;
  padding: 20px;
  border-top: #61927E 2px solid;
  background-color: white;
  @media (max-width: 800px) {
    padding: 20px 15px;
    margin-top: 50px;
    text-align: center;
  }
  @media (max-width: 600px) {
    padding: 25px 10px 15px;
    margin-top: 100px;
  }
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  @media (max-width: 800px) {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  @media (max-width: 480px) {
    gap: 25px;
  }
  @media (min-width: 801px) and (max-width: 1024px) {
    gap: 30px;
  }
}

.footer-logo-div {
  display: flex;
  align-items: center;
  flex: 1;
  @media (max-width: 800px) {
    order: 1;
    width: 100%;
    justify-content: center;
  }
}

.logoFooter {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  @media (max-width: 800px) {
    max-width: 200px;
    margin: 0 auto;
  }
  @media (max-width: 480px) {
    max-width: 150px;
  }
  @media (min-width: 801px) and (max-width: 1024px) {
    max-width: 250px;
  }
}

.footer-column {
  flex: 0 0 auto;
  text-align: right;
  @media (max-width: 800px) {
    order: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer-column h3 {
  color: #61927E;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: bold;
  @media (max-width: 800px) {
    font-size: 1.5rem;
    text-align: center;
  }
  @media (max-width: 480px) {
    font-size: 0.95rem;
  }
}

.footer-column ul {
  padding-left: 0;
  list-style: none;
  @media (max-width: 800px) {
    text-align: center;
    display: inline-block;
  }
}

.footer-column ul li {
  margin-bottom: 5px;
  @media (max-width: 800px) {
    text-align: center;
  }
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  @media (max-width: 800px) {
    font-size: 0.9rem;
  }
  @media (max-width: 480px) {
    font-size: 0.85rem;
  }
}

.footer-column ul li a:hover {
  color: #61927E;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #aaa;
  margin: 30px auto 0;
  color: #666;
  font-size: 0.9rem;
  max-width: 800px;
  @media (max-width: 800px) {
    margin-top: 25px;
    padding-top: 15px;
    font-size: 0.85rem;
  }
  @media (max-width: 480px) {
    font-size: 0.8rem;
  }
}


/* ==============================================
   BUTTONS
   ============================================== */

.buttonMain {
  margin-top: 3rem;
  display: block;
  text-align: center;
}

.button {
  font-size: 1.2rem;
  background-color: #61927E;
  color: white;
  border: none;
  height: 2em;
  width: auto;
  padding: 0 1rem;
  border-radius: 2px;
  @media (max-width: 500px) {
    font-size: 1rem;
  }
  @media (max-width: 400px) {
    height: 3em;
  }
}

.button:hover {
  background-color: #1db750;
  cursor: pointer;
}

.buttonMain2 {
  margin-top: 3rem;
  display: block;
}

.button2 {
  font-size: 1.2rem;
  background-color: #61927E;
  color: white;
  border: none;
  height: 2em;
  width: auto;
  padding: 0 0.5em;
}

.button2:hover {
  background-color: #1db750;
  cursor: pointer;
}