@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navbar styles */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: #FF9A3C;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.arrow {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: all 0.3s;
}

/* Main content */
main {
  min-height: calc(100vh - 150px);
  padding: 0;
}

/* Footer */
footer {
  background-color: #f7f7f7;
  padding: 60px 0 20px;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('/img/banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  height: 700px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-top: 0;
  border-bottom-right-radius: 150px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
  border-bottom-right-radius: 150px;
}

.hero-content {
  position: relative;
  max-width: 650px;
  margin-left: 10%;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero .btn-primary {
  display: inline-flex;
  align-items: center;
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  letter-spacing: 0.5px;
}

.hero .btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero {
    height: 400px;
    border-bottom-right-radius: 100px;
  }
  
  .hero::before {
    border-bottom-right-radius: 100px;
  }
  
  .hero-content {
    margin-left: 5%;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 350px;
    text-align: center;
    border-bottom-right-radius: 70px;
  }
  
  .hero::before {
    border-bottom-right-radius: 70px;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .navbar .container {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .join-btn {
    display: none;
  }
  
  .nav-menu.active {
    top: 60px;
  }
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.portrait-container {
  flex: 0 0 40%;
  max-width: 450px;
}

.portrait-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.2;
}

.highlight {
  color: #FF9A3C;
}

.about-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #007bff;
}

.btn-secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Responsive About Section */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .portrait-container {
    max-width: 350px;
    margin: 0 auto 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }
  
  .portrait-container {
    max-width: 280px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-text {
    font-size: 0.95rem;
  }
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.text-center {
  text-align: center;
}

.services-header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #ffe0c0;
  background-color: #fff9f2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-info {
  padding: 25px 25px 15px;
}

.service-title {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.service-img-container {
  overflow: hidden;
  margin-top: auto;
  padding: 0 15px 15px;
}

.service-img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
  border-radius: 10px;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

/* Responsive Services Section */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-header {
    margin-bottom: 40px;
  }
}

/* How We Work Section */
.how-section {
  padding: 80px 0;
  background-color: #fff;
}

.how-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.how-content {
  flex: 1;
  max-width: 550px;
}

.how-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Bento Box Gallery */
.bento-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.bento-item {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Specific positioning for bento items */
.bento-item-1 {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1;
}

.bento-item-2 {
  grid-column: 2;
  grid-row: 1/3;
  aspect-ratio: 0.65;
}

.bento-item-3 {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1;
}

/* Responsive How We Work Section */
@media (max-width: 992px) {
  .how-container {
    flex-direction: column;
    text-align: center;
  }
  
  .how-content {
    max-width: 100%;
  }
  
  .bento-gallery {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .how-section {
    padding: 60px 0;
  }
  
  .bento-gallery {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* Responsive How We Work Section - Mobile with single image */
@media (max-width: 576px) {
  .bento-gallery {
    max-width: 320px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
  }
  
  .bento-item-1 {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1;
  }
  
  .bento-item-2, .bento-item-3 {
    display: none; /* Hide the second and third images on mobile */
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: #007bff;
  color: white;
  padding: 80px 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.contact-content {
  flex: 1;
}

.text-white {
  color: white;
}

.contact-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-phone {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.phone-label {
  font-weight: 600;
  margin-bottom: 8px;
}

.phone-number {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.phone-number svg {
  margin-right: 10px;
}

/* Contact Form */
.contact-form-container {
  flex: 1;
  max-width: 500px;
}

.contact-form {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-title {
  color: #222;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  background-color: #fff;
}

.btn-submit {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #0056b3;
}

/* Checkbox styling */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
  width: auto;
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #666;
}

.privacy-link {
  color: #007bff;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Responsive Contact Section */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-phone {
    align-items: center;
  }
  
  .contact-form-container {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
    border-bottom-left-radius: 100px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    border-bottom-left-radius: 70px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.faq-header {
  margin-bottom: 60px;
}

.faq-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.faq-image {
  flex: 0 0 40%;
  max-width: 400px;
}

.faq-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-content {
  flex: 1;
}

/* Accordion styles */
.accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.accordion-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.accordion-icon {
  color: #FF9A3C;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding-bottom: 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body p {
  color: #555;
  line-height: 1.7;
}

/* Responsive FAQ Section */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
    text-align: center;
  }
  
  .faq-image {
    margin: 0 auto 40px;
  }
  
  .accordion-header {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .faq-image {
    max-width: 280px;
  }
  
  .accordion-header h3 {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.footer {
  background-color: #f7f7f7;
  padding: 60px 0 20px;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 0 0 25%;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
  max-width: 120px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  transition: background-color 0.3s;
}

.social-icon.facebook:hover {
  background-color: #3b5998;
}

.social-icon.linkedin:hover {
  background-color: #0077b5;
}

.social-icon.instagram:hover {
  background-color: #e1306c;
}

.footer-links-wrapper {
  flex: 0 0 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links {
  flex: 0 0 30%;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a, 
.footer-links ul li span {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-links ul li a:hover {
  color: #007bff;
}

.contact-info li i {
  margin-right: 10px;
  color: #007bff;
  min-width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-brand {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .footer-logo {
    margin: 0 auto 20px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links-wrapper {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .footer-links {
    flex: 0 0 48%;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-links {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .footer-links ul li a, 
  .footer-links ul li span {
    justify-content: center;
  }
  
  .contact-info li i {
    margin-right: 8px;
  }
}

/* Page Headers */
.page-header {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin: 0;
}

/* About Page Styles */
.about-page-section {
  padding: 80px 0;
}

.about-content-full {
  max-width: 800px;
  margin: 0 auto;
}

.about-content-full h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #333;
}

.values-grid {
  margin: 30px 0;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.values-grid ul {
  list-style-type: none;
  padding: 0;
}

.values-grid li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.values-grid li:before {
  content: "•";
  color: #FF9A3C;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Donation Page Styles */
.donation-section {
  padding: 80px 0;
}

.donation-content {
  max-width: 800px;
  margin: 0 auto;
}

.donation-options {
  margin: 40px 0;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.donation-option {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.donation-option:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.donation-note {
  background-color: #e9f5ff;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}

/* Membership Page Styles */
.membership-section {
  padding: 80px 0;
}

.membership-content {
  max-width: 800px;
  margin: 0 auto;
}

.membership-benefits {
  margin: 40px 0;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.membership-benefits ul {
  padding-left: 20px;
}

.membership-benefits li {
  margin-bottom: 10px;
}

.application-process {
  margin: 40px 0;
}

.application-process ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.application-process li {
  margin-bottom: 15px;
}

.application-buttons {
  margin: 30px 0;
  text-align: center;
}

.application-buttons p {
  margin-top: 20px;
}

.membership-contact {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.membership-contact .btn-secondary {
  margin-top: 20px;
}

/* Responsive styles for the new pages */
@media (max-width: 768px) {
  .page-header {
    padding: 40px 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .about-page-section,
  .donation-section,
  .membership-section {
    padding: 50px 0;
  }
  
  .values-grid,
  .donation-options,
  .donation-note,
  .membership-benefits,
  .membership-contact {
    padding: 20px;
  }
}

/* Projekte Page - Modern & Minimalistic Styles */
.projekte-page {
  background-color: #fafafa;
  min-height: 100vh;
}

.projekte-header {
  text-align: center;
  padding: 120px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.projekte-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.projekte-subtitle {
  font-size: 1.25rem;
  color: #6e6e73;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.projekte-section {
  margin-bottom: 120px;
}

.projekte-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projekte-section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.projekte-section-header p {
  font-size: 1.125rem;
  color: #6e6e73;
  font-weight: 400;
  margin: 0;
}

.projekte-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}

.projekte-grid-featured {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-bottom: 120px;
}

.projekte-grid:not(.projekte-grid-featured) {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.projekte-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  border: 1px solid #e5e5e7;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.projekte-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #d2d2d7;
}

.projekte-card-large {
  padding: 60px 40px;
}

.projekte-card-content {
  text-align: center;
}

.projekte-card-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
  filter: grayscale(0.2);
}

.projekte-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.projekte-card-large h3 {
  font-size: 1.625rem;
  margin-bottom: 16px;
}

.projekte-card p {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.projekte-card-large p {
  font-size: 1.125rem;
}

.projekte-message {
  background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  margin-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.projekte-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.projekte-message-content {
  position: relative;
  z-index: 1;
}

.projekte-message h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.projekte-message p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}

.projekte-message-highlight {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.projekte-message-highlight p {
  font-size: 1.375rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .projekte-grid-featured {
    grid-template-columns: 1fr;
  }
  
  .projekte-grid:not(.projekte-grid-featured) {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .projekte-header {
    padding: 80px 0 60px;
  }
  
  .projekte-header h1 {
    font-size: 2.5rem;
  }
  
  .projekte-subtitle {
    font-size: 1.125rem;
  }
  
  .projekte-section {
    margin-bottom: 80px;
  }
  
  .projekte-section-header {
    margin-bottom: 40px;
  }
  
  .projekte-section-header h2 {
    font-size: 2rem;
  }
  
  .projekte-card {
    padding: 32px 24px;
  }
  
  .projekte-card-large {
    padding: 40px 32px;
  }
  
  .projekte-message {
    padding: 60px 40px;
    margin-bottom: 80px;
  }
  
  .projekte-message h2 {
    font-size: 2.25rem;
  }
  
  .projekte-message p {
    font-size: 1.125rem;
  }
  
  .projekte-message-highlight p {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .projekte-header {
    padding: 60px 0 40px;
  }
  
  .projekte-header h1 {
    font-size: 2rem;
  }
  
  .projekte-subtitle {
    font-size: 1rem;
  }
  
  .projekte-grid {
    gap: 16px;
  }
  
  .projekte-card {
    padding: 24px 20px;
  }
  
  .projekte-card-large {
    padding: 32px 24px;
  }
  
  .projekte-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .projekte-card h3 {
    font-size: 1.25rem;
  }
  
  .projekte-card-large h3 {
    font-size: 1.375rem;
  }
  
  .projekte-message {
    padding: 40px 24px;
    border-radius: 20px;
  }
  
  .projekte-message h2 {
    font-size: 1.875rem;
  }
  
  .projekte-message p {
    font-size: 1rem;
  }
  
  .projekte-message-highlight {
    padding: 24px;
  }
  
  .projekte-message-highlight p {
    font-size: 1.125rem;
  }
}

/* Impressum Page - Modern & Minimalistic Styles */
.impressum-page {
  background-color: #fafafa;
  min-height: 100vh;
  padding: 80px 0;
}

.impressum-header {
  text-align: center;
  padding: 60px 0 80px;
  max-width: 600px;
  margin: 0 auto;
}

.impressum-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.impressum-subtitle {
  font-size: 1.125rem;
  color: #6e6e73;
  font-weight: 400;
  margin: 0;
}

.impressum-content {
  max-width: 800px;
  margin: 0 auto;
}

.impressum-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  border: 1px solid #e5e5e7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.impressum-card-content {
  max-width: 600px;
  margin: 0 auto;
}

.impressum-organization {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f5f5f7;
}

.impressum-organization h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.impressum-role {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.role-title {
  font-size: 1rem;
  color: #6e6e73;
  font-weight: 400;
}

.role-name {
  font-size: 1.25rem;
  color: #1d1d1f;
  font-weight: 500;
}

.impressum-contact {
  display: grid;
  gap: 48px;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-details p {
  font-size: 1rem;
  color: #1d1d1f;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design for Impressum */
@media (max-width: 768px) {
  .impressum-page {
    padding: 60px 0;
  }
  
  .impressum-header {
    padding: 40px 0 60px;
  }
  
  .impressum-header h1 {
    font-size: 2.5rem;
  }
  
  .impressum-subtitle {
    font-size: 1rem;
  }
  
  .impressum-card {
    padding: 40px 32px;
    border-radius: 20px;
  }
  
  .impressum-organization {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }
  
  .impressum-organization h2 {
    font-size: 1.875rem;
  }
  
  .impressum-contact {
    gap: 32px;
  }
  
  .contact-section h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .impressum-page {
    padding: 40px 0;
  }
  
  .impressum-header {
    padding: 20px 0 40px;
  }
  
  .impressum-header h1 {
    font-size: 2rem;
  }
  
  .impressum-card {
    padding: 32px 24px;
    border-radius: 18px;
  }
  
  .impressum-organization h2 {
    font-size: 1.625rem;
  }
  
  .contact-item {
    gap: 12px;
    padding: 12px 0;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  
  .contact-details p {
    font-size: 0.95rem;
  }
} 