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

body {
  font-family: Arial, sans-serif;
  background-color: #dfdfdf;
  color: #333;
}

.box-shadow {
  box-shadow: 
    0 10px 25px rgba(5, 169, 245, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.box-shadow:hover {
  box-shadow: 
    0 14px 35px rgba(0, 146, 204, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-header {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-top: 10px solid #ffffff;
  border-bottom: 5px solid #e100ff;
}

.header-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 5px;
  z-index: 0;
}

.logo-wrapper {
  position: relative;
  z-index: 1;
  background-color: white;
  padding: 10px 20px;
  display: inline-block;
  margin: 0 auto;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0 0 8px 8px;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.2);*/
}

.logo-image {
  height: 200px;
  width: auto;
}

.main-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: rgba(250, 250, 250, 0.9); /* halbtransparent weiß */
  padding: 8px 40px;
  border: solid 3px #48b1bf;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav li a {
  text-decoration: none;
  color: #06beb6;
  font-size: 1.2rem;
  font-family: 'Oxanium', sans-serif;
  font-weight: 600;
  transition: color 0.3s;
}

.main-nav li a:hover {
  color: #e100ff;
}

.wrapper {
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 900px;
  /*display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 500px);*/
  padding: 20px;
}

.wrapper h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.wrapper p {
  font-size: 18px;
  margin-bottom: 20px;
}

.underline {
  margin: 0 auto;
  width: 40%;
  border: #ec69fd 2px solid;
  border-radius: 8px;
}

.sub-underline {
  margin: 0 auto;
  width: 20%;
  border: #ec69fd 2px solid;
  border-radius: 8px;
}

.rajdhani {
  font-family: 'Rajdhani', sans-serif;
}

.sharetechmono {
  font-family: 'Share Tech Mono', monospace;
}

.oxanium {
  font-family: 'Oxanium', sans-serif;
}

.audiowide {
  font-family: 'Audiowide', sans-serif;
}

.vt323 {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
}

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

.items-wrapper {
  display: flex;
  gap: 20px;
  margin: 10px auto;
  padding: 0 0.1rem;
  flex-wrap: wrap; /* sorgt für Responsiveness */
}

.items {
  right: 25%;
  flex: 1;
  padding: 20px 20px;
}

.icons {
  width: 30%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.center-image {
  margin: 10px auto;
  border-radius: 8px;
}

.hero-section {
  margin: 40px 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-height: 100vh;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  background: linear-gradient(90deg, #e86ff8, #00cfff, #0559f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-section p {
  font-size: 1.5rem;
  color: #0559f5;
  margin-top: 40px;
}

.services-section {
  display: flex;
  gap: 20px;
  margin: 0px auto 20px auto;
  padding: 20px 0;
  flex-wrap: wrap; /* sorgt für Responsiveness */
}

.services-section h2 {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  background: linear-gradient(90deg, #e86ff8, #00cfff, #0559f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: auto;
}

.services-section p {
  width: 100%;
  font-size: 1.2rem;
  color: #0559f5;
  margin: 0 auto 10px auto;
}

.service-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: 10px 20px;
  background: #00a9cf;
  border-radius: 8px;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 900;
  font-family: 'VT323', sans-serif;
  color: white;
  margin: 10px 0;
}

.service-item p {
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Rajdhani', sans-serif;
  color: white;
}

.bg-purple {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  /*padding: 20px 20px;*/
  background-color: #89009b;
  overflow: hidden;
}

#backgroundCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Hintergrund */
  pointer-events: none; /* macht Canvas durchklickbar */
}

.references-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.reference-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.item {
  position: absolute;
  background-color: rgba(173, 216, 230, 0.8);
  border: 1px solid #ccc;
  box-sizing: border-box;
  pointer-events: auto;
}

.item.center {
  width: 700px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  background-color: #dfdfdf;
  border: 2px solid #ffffff55;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.item.center h3 {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Oxanium', sans-serif;
  text-align: center;
  margin: 15px 0 20px 0;
  background: linear-gradient(90deg, #07eba6, #00cfff, #059df5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.item.center p {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  background-color: #01b3db;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0 auto 20px auto;
  padding: 10px 0
}

.item.center a {
  font-weight: bolder;
  text-decoration: none !important;
  background-color: #17badf;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.item.center a:hover {
  background-color: #ff00c8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Quadratgrößen */
.item.small {
  width: 100px;
  height: 100px;
  background-color: #ffffff99;
  border: 2px solid #ffffff33;
  border-radius: 12px;
}

/* Lockere Positionen um die Mitte herum */
/* Obere linke Items */
.item.top.first      { top:    130px; left:  450px; }
.item.top.second     { top:    130px; left:  570px; }
.item.top.third      { top:    250px; left:  450px; }
.item.top.fourth     { top:    370px; left:  450px; }
.item.top.fifth      { top:    130px; left:  690px; }
.item.top.sixth      { top:    130px; left:  810px; }

/* Untere rechte Items */
.item.bottom.first   { bottom: 130px; right: 450px; }
.item.bottom.second  { bottom: 130px; right: 570px; }
.item.bottom.third   { bottom: 250px; right: 450px; }
.item.bottom.fourth  { bottom: 370px; right: 450px; }
.item.bottom.fifth   { bottom: 130px; right: 690px; }
.item.bottom.sixth   { bottom: 130px; right: 810px; }

/* Obere rechte Items */
.item.right.first    { top:    130px; right: 450px; }
.item.right.second   { top:    130px; right: 570px; }
.item.right.third    { top:    250px; right: 450px; }

/* Untere linke Items */
.item.left.first     { bottom: 130px; left:  450px; }
.item.left.second    { bottom: 130px; left:  570px; }
.item.left.third     { bottom: 250px; left:  450px; }

.item-dimensions {
  width: 100px;
  height: 100px;
}

.dj-dimension {
  width: 93px;
  height: 85px;
  transform: translate(2%, 3%);
}

.js-dimension {
  width: 113px;
  height: 94px;
  transform: translate(-7%, 3%);
}

.mm-dimension {
  width: 100%;
  height: 80px;
  transform: translate(0, 10%);
}

.psql-dimension {
  width: 100%;
  height: 95%;
  transform: translate(1%, 1%);
}

.nc-dimension {
  width: 100%;
  height: 80%;
  transform: translate(0, 10%);
}

.wp-dimension {
  width: 85%;
  height: 85%;
  transform: translate(9%, 9%);
}

.ve-dimension {
  width: 200%;
  height: 100%;
  transform: translate(-25%, 5%);
}

.deb-dimension {
  width: 65%;
  height: 90%;
  transform: translate(25%, 5%);
}

.sol-dimension {
  width: 100%;
  height: 100%;
  transform: translate(-3%, -1%);
}

.hh-dimension {
  width: 90%;
  height: 25%;
  transform: translate(5%, 150%);
}

.w3-dimension {
  width: 100%;
  height: 100%;
}

.sec-underline {
  margin: 0 auto 20px auto;
  width: 35%;
  border: #00e7a2 2px solid;
  border-radius: 8px;
}

.bg-turquoise {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 306.6%;
  left: 0;
  z-index: 2;
  padding: 10px 20px;
  background-color: #008ead;
  overflow: hidden;
}

.contact-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.contact-section h2 {
  margin: 2rem 0 5rem 0;
  font-size: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

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

.full-width {
  grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 150, 200, 0.5);
}

.submit-button {
  grid-column: span 2;
  padding: 1rem;
  background: linear-gradient(135deg, #06beb6, #48b1bf);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #48b1bf, #06beb6);
}

.contact-icon-row {
  display: flex;
  justify-content: center;     /* Horizontal zentrieren */
  align-items: center;         /* Vertikal zentrieren, sofern ein Container höhenbeschränkt ist */
  flex-wrap: wrap;
  gap: 5rem;                   /* Abstand zwischen den Icons */
  padding: 10rem 10rem;        /* Mehr vertikaler Abstand */
  transform: translateY(30px); /* Verschiebt das Ganze weiter nach unten (positiv = runter) */
}

.icon-link {
  color: #ffffff;
  font-size: 2rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.icon-link:hover {
  color: #06beb6;
}

.contact-items {
  margin: 5rem auto;
  width: 50%;
  transform: translateX(25%);
  display: flex;
  flex-direction: column;
}

/*.footer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 406%;
  left: 0;
  z-index: 3;
  background-color: #1e2a38;
  color: white;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}*/

.footer {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 406%;
  left: 0;
  /*background: linear-gradient(to bottom, #0f172a, #1e293b); z.B. Darkmode-Stil */
  background-color: #1e2a38;
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 20%;
}

.footer-logo {
  width: 350px;
  height: auto;
  margin-bottom: 0;
  transform: translate(-15%, 0);
}

.footer-slogan {
  font-size: 0.9rem;
  color: #cbd5e1;
  transform: translate(0 , -3.5rem);
}

.footer-col h4 {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #38bdf8;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #38bdf8;
}

.footer-contact a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.footer-socials a {
  color: #94a3b8;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #38bdf8;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: #94a3b8;
  border-top: 1px solid #646464;
  margin: 3rem auto 0 auto;
  width: 1200px;
}