html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  scroll-behavior: smooth;
  color: white;
  background-color: #121212;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 12px;
  z-index: 1000;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

nav a.active {
  color: #ffc107 !important;
  transform: scale(1.1);
}

nav a:hover {
  color: #ffc107;
  transform: scale(1.1);
}

section {
  min-height: calc(100vh - 120px);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-size: 200% 200%;
  transition: background-position 0.6s ease;
  padding: 60px 20px;
}

section:hover {
  background-position: right center;
}

section .content-box,
section h1,
section h2,
section p,
section span,
section img,
section form {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible .content-box,
section.visible h1,
section.visible h2,
section.visible p,
section.visible span,
section.visible img,
section.visible form {
  opacity: 1;
  transform: translateY(0);
}

.bg-red {
  background-image: linear-gradient(120deg, #e53935, #ff7043);
}

.bg-orange {
  background-image: linear-gradient(120deg, #ff5722, #ff9800);
}

.bg-dark {
  background-image: linear-gradient(120deg, #212121, #424242);
}

h1,
h2 {
  text-transform: uppercase;
  margin: 20px 0;
  font-size: 2em;
}

.logo-img {
  width: 300px;
  height: auto;
  margin-bottom: 10px;
}

.content-box {
  max-width: 900px;
  padding: 10px;
}

.main-img-wrapper {
  position: relative;
  display: inline-block;
  margin: 30px 0;
}

.main-img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.main-img-wrapper:hover .main-img {
  transform: scale(1.1);
  filter: blur(4px);
}

.cta-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 24px;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-decoration: none;
}

.bg-red .cta-button {
  background: #ff5722;
}

.bg-orange .cta-button {
  background: #fc9a1b;
}

.main-img-wrapper:hover .cta-button {
  opacity: 1;
}

.profil-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.profil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profil-img {
  width: 80%;
  max-width: 300px;
  margin: 30px 0;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  padding: 10px;
}

input,
textarea,
button {
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-family: unset;
}

button {
  background: #d32f2f;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

button:hover {
  background: #b71c1c;
}

footer {
  padding: 30px 10px;
  background-color: #111;
  text-align: center;
  color: #bbb;
}

#burger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  position: fixed;
  right: 20px;
  top: 0;
  z-index: 1001;
}

@media (max-width: 768px) {
  .main-img {
    max-width: 95%;
  }

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

  #burger {
    display: block;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  #nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  #nav-menu a {
    padding: 15px 20px;
    display: block;
    width: 100%;
    margin: 8px 0;
  }

  nav a:hover {
    transform: none !important;
  }

  nav a.active {
    transform: none !important;
  }

}