.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;
}
/* ========================================== */
/* BASE STYLES */
/* ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Ubuntu', sans-serif;
  background-color: #111519;
  color: #F0EBC5;
  line-height: 1.6;
}
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
/* ========================================== */
/* HEADER SECTION */
/* ========================================== */
.eu-foerderung-header {
  position: relative;
  background-color: #2A2E33;
  height: 878px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.eu-foerderung-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}
.eu-foerderung-hero-content {
  max-width: 1360px;
  margin: 0 auto;
}
.eu-foerderung-hero-content h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #F0EBC5;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .eu-foerderung-hero-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .eu-foerderung-hero-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
/* Forest Line Background */
.forest-line-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  overflow: hidden;
}
.forest-line-container img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 1200px;
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 30px;
  }
}
.scroll-indicator img {
  width: 95px;
  height: auto;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* ========================================== */
/* MAIN CONTENT */
/* ========================================== */
.eu-foerderung-content {
  background-color: #111519;
  position: relative;
}
/* ========================================== */
/* PROJECT TITLE SECTION */
/* ========================================== */
.project-title-section {
  background-color: #111519;
  padding: 80px 0 60px;
  text-align: center;
}
.project-title-section .project-logo {
  margin-bottom: 40px;
}
.project-title-section .project-logo img {
  height: 180px;
  width: auto;
}
.project-title-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #F0EBC5;
  text-align: center;
}
@media (max-width: 768px) {
  .project-title-section h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .project-title-section h2 {
    font-size: 28px;
  }
}
/* ========================================== */
/* PROJECT DESCRIPTION SECTION */
/* ========================================== */
.project-description-section {
  background-color: #111519;
  padding: 40px 0 80px;
}
.project-description-section .description-box {
  max-width: 1131px;
  margin: 0 auto;
  background-color: rgba(17, 21, 25, 0.8);
  border-radius: 25px;
  padding: 80px 60px;
}
@media (max-width: 768px) {
  .project-description-section .description-box {
    padding: 60px 40px;
  }
}
@media (max-width: 480px) {
  .project-description-section .description-box {
    padding: 40px 20px;
  }
}
.project-description-section .description-content {
  width: 100%;
  background-color: #2A2E33;
  padding: 40px;
  border-radius: 25px;
}
.project-description-section .description-content h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #F0EBC5;
  margin-bottom: 40px;
  text-align: left;
}
@media (max-width: 768px) {
  .project-description-section .description-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .project-description-section .description-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.project-description-section .project-details .project-part {
  margin-bottom: 30px;
}
.project-description-section .project-details .project-part:last-child {
  margin-bottom: 0;
}
.project-description-section .project-details .project-part h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F0EBC5;
  margin-bottom: 10px;
  line-height: 30px;
}
.project-description-section .project-details .project-part p {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #F0EBC5;
  line-height: 30px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .project-description-section .project-details .project-part p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .project-description-section .project-details .project-part p {
    font-size: 16px;
    line-height: 26px;
  }
}
/* ========================================== */
/* PARTNER LOGOS SECTION */
/* ========================================== */
.partner-logos-section {
  background-color: #111519;
  padding: 80px 0 120px;
}
.partner-logos-section .logo-section {
  text-align: center;
}
.partner-logos-section .logo-section h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F0EBC5;
  margin-bottom: 20px;
  line-height: 30px;
}
.partner-logos-section .logo-section .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin-bottom: 40px;
}
.partner-logos-section .logo-section .logo-container img {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
}
.partner-logos-section .thuringen-logo-section .logo-container img {
  max-height: 111px;
}
.partner-logos-section .bundesadler-logo-section .logo-container img {
  max-height: 280px;
  max-width: 419px;
}
.partner-logos-section .eu-logo-section .logo-container img {
  max-height: 220px;
  max-width: 329px;
}
/* ========================================== */
/* FUNDING TEXT */
/* ========================================== */
.funding-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .funding-text {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.funding-text .funding-left,
.funding-text .funding-right {
  text-align: center;
}
.funding-text .funding-left h4,
.funding-text .funding-right h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #F0EBC5;
  line-height: 40px;
}
@media (max-width: 768px) {
  .funding-text .funding-left h4,
  .funding-text .funding-right h4 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .funding-text .funding-left h4,
  .funding-text .funding-right h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
/* ========================================== */
/* ACTION BUTTONS */
/* ========================================== */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.action-buttons .action-button {
  display: inline-block;
  background-color: #EA5A31;
  color: #F0EBC5;
  border-radius: 30px;
  padding: 18px 40px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 325px;
}
.action-buttons .action-button:hover {
  background-color: #ef7f5f;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .action-buttons .action-button {
    font-size: 20px;
    padding: 15px 35px;
    min-width: 280px;
  }
}
@media (max-width: 480px) {
  .action-buttons .action-button {
    font-size: 18px;
    padding: 12px 30px;
    min-width: 250px;
  }
}
/* ========================================== */
/* RESPONSIVE STYLES */
/* ========================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .eu-foerderung-header {
    height: 600px;
  }
  .forest-line-container img {
    min-width: 768px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .eu-foerderung-header {
    height: 500px;
  }
  .scroll-circle {
    width: 70px;
    height: 70px;
  }
  .scroll-circle img {
    width: 12px;
    height: 12px;
  }
}
