.nav {
  background-color: #2A2E33;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}
.nav-links a {
  color: #F0EBC5;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #EA5A31;
}
.contact-button {
  background-color: #EA5A31;
  color: #F0EBC5;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s ease;
}
.contact-button:hover {
  background-color: #ef7f5f;
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #F0EBC5;
  margin: 5px 0;
  transition: transform 0.3s ease;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2A2E33;
  border: 1px solid rgba(240, 235, 197, 0.1);
  border-radius: 8px;
  min-width: 250px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #F0EBC5;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #EA5A31;
  padding-left: 30px;
}
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 30px;
    margin-top: 10px;
  }
  .dropdown-menu a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media (max-width: 992px) {
  .navigation .nav-brand img {
    height: 45px;
  }
  .navigation .nav-content {
    gap: 30px;
  }
  .navigation .nav-content .nav-links {
    gap: 20px;
    font-size: 14px;
  }
  .navigation .nav-content .contact-button {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 100px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2A2E33;
    padding: 20px;
    gap: 15px;
  }
  .nav-content {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }
  .mobile-nav-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .navigation .nav-brand img {
    height: 40px;
  }
  .navigation .nav-content {
    gap: 20px;
  }
  .navigation .nav-content .nav-links {
    gap: 15px;
    font-size: 12px;
  }
  .navigation .nav-content .contact-button {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 80px;
  }
}
@media (max-width: 480px) {
  .contact-button {
    display: none;
  }
}
@media (max-width: 1200px) {
  .nav-links {
    gap: 20px;
  }
}
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #2A2E33;
  border-top: 1px solid rgba(240, 235, 197, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.mobile-nav-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}
.mobile-nav-menu .mobile-nav-links li {
  border-bottom: 1px solid rgba(240, 235, 197, 0.1);
}
.mobile-nav-menu .mobile-nav-links li:last-child {
  border-bottom: none;
}
.mobile-nav-menu .mobile-nav-links li > a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  transition: all 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links li > a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #F0EBC5;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li {
  border-bottom: none;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 20px;
  transition: all 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #F0EBC5;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-logo a {
  display: block;
  transition: transform 0.3s ease;
}
.nav-logo a:hover {
  transform: scale(1.05);
}
.nav-logo a img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Maven Pro', sans-serif;
  background-color: #111519;
  color: #F0EBC5;
  line-height: 1.6;
  overflow-x: hidden;
}
body .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-section {
  position: relative;
  background-color: #2A2E33;
  padding-top: 145px;
  height: 814px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-section .hero-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-section .hero-container h1 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #F0EBC5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero-section .hero-container h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.hero-section .hero-container .hero-description {
  max-width: 1130px;
  margin: 0 auto;
}
.hero-section .hero-container .hero-description p {
  font-size: 18px;
  line-height: 36px;
  color: #F0EBC5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}
.hero-section .hero-container .hero-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-description p {
    font-size: 16px;
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-container .hero-description p {
    font-size: 14px;
    line-height: 28px;
  }
}
.hero-section .forest-line-background {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: auto;
  z-index: 1;
}
.hero-section .forest-line-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mietwelt-angebote-section {
  background-color: #111519;
  padding: 80px 0;
}
.mietwelt-angebote-section .angebote-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.mietwelt-angebote-section .angebote-container h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  color: #F0EBC5;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .mietwelt-angebote-section .angebote-container h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .mietwelt-angebote-section .angebote-container h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.mietwelt-angebote-section .angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .mietwelt-angebote-section .angebote-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .mietwelt-angebote-section .angebote-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.mietwelt-angebote-section .angebot-card {
  background-color: #2A2E33;
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mietwelt-angebote-section .angebot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.mietwelt-angebote-section .angebot-card .angebot-image {
  height: 238px;
  overflow: hidden;
}
.mietwelt-angebote-section .angebot-card .angebot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mietwelt-angebote-section .angebot-card:hover .angebot-image img {
  transform: scale(1.05);
}
.mietwelt-angebote-section .angebot-card .angebot-content {
  padding: 35px;
}
.mietwelt-angebote-section .angebot-card .angebot-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #F0EBC5;
  margin-bottom: 20px;
}
.mietwelt-angebote-section .angebot-card .angebot-content h3 sup {
  font-size: 12px;
  vertical-align: super;
}
.mietwelt-angebote-section .angebot-card .angebot-content .angebot-text {
  margin-bottom: 30px;
}
.mietwelt-angebote-section .angebot-card .angebot-content .angebot-text p {
  font-size: 18px;
  line-height: 30px;
  color: #F0EBC5;
  margin-bottom: 15px;
}
.mietwelt-angebote-section .angebot-card .angebot-content .angebot-text p:last-child {
  margin-bottom: 0;
}
.mietwelt-angebote-section .angebot-card .angebot-content .angebot-button {
  display: inline-block;
  background-color: #2A2E33;
  color: #F0EBC5;
  border: 1px solid #F0EBC5;
  border-radius: 30px;
  padding: 11px 55px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.mietwelt-angebote-section .angebot-card .angebot-content .angebot-button:hover {
  background-color: #F0EBC5;
  color: #2A2E33;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .mietwelt-angebote-section .angebot-card .angebot-content .angebot-button {
    padding: 10px 45px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .mietwelt-angebote-section .angebot-card .angebot-content .angebot-button {
    padding: 8px 35px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .mietwelt-angebote-section .angebot-card .angebot-content {
    padding: 25px;
  }
  .mietwelt-angebote-section .angebot-card .angebot-content h3 {
    font-size: 20px;
  }
  .mietwelt-angebote-section .angebot-card .angebot-content .angebot-text p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .mietwelt-angebote-section .angebot-card .angebot-content {
    padding: 20px;
  }
  .mietwelt-angebote-section .angebot-card .angebot-content h3 {
    font-size: 18px;
  }
  .mietwelt-angebote-section .angebot-card .angebot-content .angebot-text p {
    font-size: 14px;
    line-height: 24px;
  }
}
.zurueck-button-section {
  background-color: #111519;
  padding: 60px 0;
  text-align: center;
}
.zurueck-button-section .zurueck-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.zurueck-button-section .zurueck-button {
  display: inline-block;
  background-color: #2A2E33;
  color: #F0EBC5;
  border-radius: 30px;
  padding: 15px 50px;
  text-decoration: none;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.zurueck-button-section .zurueck-button.orange {
  background-color: #EA5A31;
}
.zurueck-button-section .zurueck-button:hover {
  background-color: #F0EBC5;
  color: #2A2E33;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .zurueck-button-section .zurueck-button {
    font-size: 20px;
    padding: 12px 40px;
  }
}
@media (max-width: 480px) {
  .zurueck-button-section .zurueck-button {
    font-size: 18px;
    padding: 10px 35px;
  }
}
