
/* ==============================
   GLOBAL STYLES
============================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #6B0A3B, #8A2BE2);
  color: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
h1,h2,h3 { margin:0 0 20px 0; }
p { margin:0 0 15px 0; }

.btn {
  display:inline-block;
  padding:12px 30px;
  background: linear-gradient(90deg,#6B0A3B,#8A2BE2);
  border:none;
  border-radius:25px;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
.btn:hover { opacity:0.9; }

/* ==============================
   SECTION CONTENT BREITE
============================== */
.section-content {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}
@media(max-width:1200px){ 
  .section-content{ max-width:75%; } 
}
@media(max-width:768px){ 
  .section-content{ max-width:100%; padding:0 15px; } 
}

/* ==============================
   SECTIONS & PARALLAX
============================== */
section { 
  padding:80px 20px; 
  position:relative; 
  margin-top:40px; 
  border-radius:25px; 
  overflow:hidden; 
  background-clip:border-box; 
}
.parallax {
  position: relative;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  border-radius: 25px;
  overflow: hidden;
}
.parallax::before {
  content:"";
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.7);
  z-index:1;
  border-radius:25px;
}
.parallax .section-content { 
  position: relative; 
  z-index:2; 
  max-width:1200px; 
  margin:0 auto; 
  text-align:center; 
}

/* HERO */
.hero { background-image:url('img/LED.png'); height:50vh; margin-top:0; margin-bottom:40px; }

/* SERVICE */
.service { background-image:url('img/Service.png'); display:flex; flex-direction:column; justify-content:center; color:#fff; }

/* ABOUT */
.about { background-image:url('img/Mass.png'); color:#fff; text-align:center; }

/* MISSION */
.mission { 
  background-image: url('img/Rust.png'); 
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; 
  text-align: center; 
  border-radius: 25px;
  padding: 80px 20px;
}

/* ==============================
   MASSGESCHNEIDERTE LÖSUNGEN (side-by-side, lesbar)
============================== */
.solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 30px;
  background: rgba(255,255,255,0.03);
  border-radius: 25px;
  padding: 60px 20px;
}

/* Überschrift */
.solutions h2 {
  font-size: 2rem;
  margin: 0;
  padding-bottom: 10px;
}

/* Grid/Row für die Boxen: nebeneinander auf Desktop */
.solution-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Jede Box: auf Desktop je 4 nebeneinander (flex-basis), auf Tablet 2, auf Mobile 1 */
.solution-box {
  position: relative;
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  max-width: 320px;
  min-height: 260px;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  text-align: left;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s, box-shadow 0.3s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ab breiten Bildschirmen (≥1300px) vier Boxen gleichmäßig nebeneinander */
@media (min-width: 1300px) {
  .solution-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .solution-box {
    flex: 1 1 23%;
    max-width: 23%;
  }
}


/* Overlay: dunkler links -> transparent rechts (Text bleibt gut lesbar) */
.solution-box::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

/* Text über dem Overlay */
.solution-box h3,
.solution-box p {
  position: relative;
  z-index: 1;
  margin: 0 0 8px 0;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* Bildzuweisungen (Pfad wie bei dir im img-Ordner) */
.solution-box.sound   { background-image: url('img/sound.jpg'); }
.solution-box.light   { background-image: url('img/Light.jpg'); }
.solution-box.video   { background-image: url('img/Video.jpg'); }
.solution-box.personal{ background-image: url('img/Stagehand.jpg'); }

/* Hover-Interaktion */
.solution-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* RESPONSIVE: Tablet: 2 Spalten */
@media (max-width: 1000px) {
  .solution-box {
    flex: 1 1 calc(50% - 20px); /* 2 pro Reihe */
    max-width: 48%;
  }
}

/* RESPONSIVE: Mobil: 1 Spalte */
@media (max-width: 640px) {
  .solution-grid { gap: 16px; }
  .solution-box {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 220px;
    text-align: center;
    justify-content: center;
    padding: 20px;
  }
  .solution-box h3, .solution-box p { text-align: center; }
}


/* ==============================
   KONTAKT
============================== */
.contact-flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;         /* schmaler Gesamtrahmen */
  margin: 0 auto;           /* zentriert */
}

.contact-box {
  background: rgba(255,255,255,0.1);
  padding: 35px 25px;
  border-radius: 25px;
  flex: 1 1 380px;          /* etwas schmaler als vorher */
  text-align: center;

  /* 3D Effekt */
  box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 4px 10px rgba(255,255,255,0.05) inset;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5), 0 6px 12px rgba(255,255,255,0.07) inset;
}

/* Formular & Inputs */
.contact-box form { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

.form-row { 
  display:flex; 
  gap:20px; 
  flex-wrap:wrap; 
}

.form-row input { 
  flex:1 1 48%; 
  min-width:200px; 
  padding:15px; 
  border-radius:12px; 
  border:none; 
  font-family:'Poppins',sans-serif; 
  font-size:1rem; 
  box-sizing:border-box; 
}

textarea { 
  width:100%; 
  min-height:150px; 
  padding:15px; 
  border-radius:12px; 
  border:none; 
  font-family:'Poppins',sans-serif; 
  font-size:1rem; 
  box-sizing:border-box; 
}

@media(max-width:768px){ 
  .contact-flex { max-width: 95%; }     /* mobil: mehr Platz nutzen */
  .form-row input { flex:1 1 100%; } 
}


/* FADE-IN */
.fade-in { opacity:0; transform:translateY(30px); transition:opacity 1s ease-out, transform 1s ease-out; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* MODAL */
.modal {
  position: fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-content {
  background: rgba(255,255,255,0.85);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  color: #6B0A3B;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.modal-content p { font-size:1.2rem; margin-bottom:30px; }

/* ==============================
   RESPONSIVE & PARALLAX FALLBACK
============================== */
@media(max-width:900px){
  .service { flex-direction:column; text-align:center; }
  .parallax { background-attachment: scroll; background-position: bottom center; background-size: cover; }
}

/* ==============================
   REFERENZEN
============================== */
.references {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
  overflow: hidden;
  border-radius: 25px;
  margin: 40px 20px;
}

.references-track {
  display: flex;
  gap: 30px;
  animation: scrollRefs 20s linear infinite;
}

.references-track img {
  max-width: 150px;       /* Breite begrenzt */
  height: auto;           /* Höhe passt sich automatisch an */
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

@keyframes scrollRefs {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* für Endlosschleife */
}

/* ==============================
   reCAPCHA
============================== */
/* {
  "event": {
    "token": "TOKEN",
    "expectedAction": "USER_ACTION",
    "siteKey": "6LfxjAAsAAAAAD6xmudac9BDbDALlDexiXesWlIs",
  }
} */

/* ==============================
   FOOTER
============================== */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px 25px 0 0;
  margin-top: 60px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}
/* ==============================
   AGB-STYLES
============================== */

/* Header für AGB */
.agb-header {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  margin-bottom: 40px;
}

.agb-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.agb-header p {
  font-size: 1rem;
  color: #ddd;
}

/* Navigation A–D */
.agb-nav {
  text-align: center;
  margin-bottom: 40px;
}

.agb-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 25px;
  flex-wrap: wrap;
}

.agb-nav ul li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 15px;
  transition: 0.3s;
  background: rgba(255,255,255,0.05);
}

.agb-nav ul li a:hover {
  background: linear-gradient(90deg, #6B0A3B, #8A2BE2);
  color: #fff;
}

/* Content-Bereich */
.agb-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.8;
  color: #fff;
}

.agb-content h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.agb-content h3 {
  color: #ddd;
  margin-top: 30px;
  margin-bottom: 15px;
}

.agb-content p {
  margin-bottom: 20px;
  color: #eee;
}

.agb-content ol,
.agb-content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.agb-content ol li,
.agb-content ul li {
  margin-bottom: 10px;
}

/* Footer-Bereich (falls extra für AGB) */
.agb-footer {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  margin-top: 60px;
}

/* Responsive Anpassungen */
@media(max-width:768px){
  .agb-content {
    padding: 15px;
  }
  .agb-nav ul {
    gap: 15px;
  }
}
