body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000000;
  color: #FFFFFF;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
}

header .logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

header .logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 5px;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

header .logo span {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

header nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

header nav a:hover {
  background-color: #22C55E;
  color: #FFFFFF;
  transform: scale(1.05);
}

#galerie-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: #000000;
}

.hero-section {
  background-image: url('/assets/IMG_3702.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 30px;
  margin-bottom: 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.header-section {
  text-align: center;
  padding: 20px 30px;
}

#galerie-page h1 {
  font-size: 48px;
  color: #22C55E;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

#galerie-page .intro-text {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #CCCCCC;
}

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

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

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 300px;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.galerie-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.galerie-item:hover img {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

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

.modal-close:hover,
.modal-close:focus {
  color: #22C55E;
}

footer {
  background-color: #000000;
  padding: 40px 30px;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
}

footer .footer-links {
  display: flex;
  gap: 60px;
  justify-content: center;
}

footer .footer-links div {
  text-align: center;
}

footer .footer-links h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #22C55E;
  font-family: 'Montserrat', sans-serif;
}

footer .footer-links a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

footer .footer-links a:hover {
  color: #22C55E;
}

footer .footer-legal {
  text-align: right;
}

footer .footer-legal a {
  display: block;
  margin-bottom: 15px;
}

footer .footer-legal img {
  height: 50px;
  vertical-align: middle;
  transition: transform 0.3s;
}

footer .footer-legal img:hover {
  transform: scale(1.1);
}

footer .footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}

footer .footer-bottom p {
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1024px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    display: none;
  }

  #galerie-page {
    padding: 80px 0 40px;
  }

  .hero-section {
    padding: 40px 15px;
    margin-bottom: 40px;
  }

  .header-section {
    padding: 20px 15px;
  }

  #galerie-page h1 {
    font-size: 32px;
  }

  #galerie-page .intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .galerie-container {
    padding: 0 15px;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .galerie-item {
    height: 250px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 85vh;
  }

  .modal-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }

  footer {
    padding: 15px;
  }

  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  footer .footer-links {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  footer .footer-links div {
    text-align: center;
  }

  footer .footer-links h4 {
    font-size: 18px;
  }

  footer .footer-links a {
    font-size: 16px;
  }

  footer .footer-legal {
    text-align: center;
    margin-top: 20px;
  }
}