@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
       url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
       url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #E75A11;
  color: #FCF7E4;
  line-height: 1.6;
}

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

.accent-color {
  color: #F9B000;
}

.geometric-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

.shape {
  position: absolute;
  border: 2px solid #FCF7E4;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86.6px solid #FCF7E4;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.square {
  width: 100px;
  height: 100px;
}

.hexagon {
  width: 104px;
  height: 60px;
  background-color: #FCF7E4;
  position: relative;
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 52px solid transparent;
  border-right: 52px solid transparent;
}

.hexagon:before {
  bottom: 100%;
  border-bottom: 30px solid #FCF7E4;
}

.hexagon:after {
  top: 100%;
  width: 0;
  border-top: 30px solid #FCF7E4;
}

.button {
  background-color: #F9B000;
  color: #E63212;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #FCF7E4;
  color: #E63212;
}

.section {
  margin-bottom: 50px;
  padding: 30px;
  border: 2px solid #FCF7E4;
  border-radius: 10px;
}

.section h2 {
  color: #F9B000;
  border-bottom: 2px solid #FCF7E4;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.footer {
  background-color: #F9B000;
  color: #E63212;
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links, .legal-links {
  margin: 10px 0;
}

.footer a {
  color: #E63212;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .footer {
    font-size: 0.9rem;
  }
  
  .social-links, .legal-links {
    display: flex;
    flex-direction: column;
  }
  
  .footer a {
    margin: 5px 0;
  }
}

.image-container {
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 10px;
  font-style: italic;
  color: #F9B000;
  text-align: center;
}

/* Responsive base styles */
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
}

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

/* Geometric Header Styles */
.geometric-header {
  background-color: #E75A11;
  padding: 2rem 0;
  text-align: center;
}

.cover-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .geometric-header {
    padding: 1rem 0;
  }
}

/* Make all sections responsive */
.section {
  padding: 2rem 1rem;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* Adjust grid layout for smaller screens */
@media (max-width: 768px) {
  .section > div {
    display: block;
  }
  
  .section > div > div {
    margin-bottom: 1rem;
  }
}

/* Adjust button size for smaller screens */
@media (max-width: 480px) {
  .button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Existing styles... */

.footer {
  background-color: #F9B000;
  color: #E63212;
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  margin: 10px 0;
}

.footer a {
  color: #E63212;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .footer {
    font-size: 0.9rem;
  }
}

.footer-logo-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}

.footer-logo-container .footer-logo {
  max-width: 100px; /* Größe des ersten Logos */
  height: auto;
  margin-left: 20px;
}

.footer-logo-container .nudgyinc-logo {
  max-width: 120px; /* Größe des zweiten Logos */
  height: auto;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .footer-logo-container {
    justify-content: center;
    flex-direction: column;
  }

  .footer-logo-container .footer-logo,
  .footer-logo-container .nudgyinc-logo {
    margin: 10px 0;
  }
}

.contact-form-section {
  margin-top: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #FCF7E4;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 2px solid #FCF7E4;
  border-radius: 5px;
  background-color: #E75A11;
  color: #FCF7E4;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F9B000;
}

.button-kontakt {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: #F9B000;
  border:0;
  color: #E63212;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-kontakt:hover {
  background-color: #FCF7E4;
  color: #E63212;
}

