* {
box-sizing: border-box; 
hyphens: auto;}


body {
  background: #333 url('img/back2.webp');
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  color: #d3c9ae;
  margin: 0 0;
  padding: 0 0;
  font-family: 'Segoe UI', 'Work Sans', sans-serif;
}

a {
  text-decoration: none;
    color: #d3c9ae;
}

p {
  text-shadow: 1px 1px 0px rgba(0,0,0,0.45);
  color: #d3c9ae;}

h2, h3, h4 {
  color: #d3c9ae;}



ul {
  list-style-type: none;
}

li {
  align-items: center;
}

 ::-moz-selection { /* Code for Firefox */
  color: #fca205;
  background: rgba(30,30,30,.4);
  font-weight: bold;
}

::selection {
  color: #fca205;
  background: rgba(30,30,30,.4);
  font-weight: bold;
}

.title {
  position: fixed;
  top: 20px;
  left: 70px;
pointer-events: auto;
}

.title h1 {
  font-size: 6rem;
  line-height: 6rem;
  letter-spacing: 40px;
  margin: 0;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.5), 2px 2px 0px rgba(0,0,0,0.45);
  z-index: 4;
  filter: brightness(1.1);}

.title p {
  margin: 0;
  color: #fca205;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 4.8px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5), 1px 1px 0px rgba(0,0,0,0.45);
  font-weight: 700;
  text-transform: uppercase; 
}

.gridOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: url('img/grid.svg');
  background-size: 50px 50px;
  opacity: 0.4;
  pointer-events: none;
  animation: moveGrid 30s linear infinite;
}

@keyframes moveGrid {
  0%   { transform: translate(0px, 0px); }
  100% { transform: translate(-100px, -100px); }
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.mission-stripe {
  display: flex;
  justify-content: center;
  align-items: end;
  position: fixed;
  top: 0;
  opacity: 0.45;
  left: 0;
  width: 40px;
  height: 100vh;
  background-color: #d3c9ae; 
  animation: pulseStrip 10s ease-in-out infinite;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  z-index: 3;
  pointer-events: none;
}

@keyframes pulseStripe {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 0.8; }
}

.accent {
  color: #fca205;
  filter: grayscale(0.25);
}

.mission-stripe-label {
  font-family: monospace;
  font-size: 1.5rem;
  letter-spacing: 50px;
  color: rgba(30,30,30,.75);
  opacity: 1;
  transform: rotate(-90deg) translateX(55%);
  transform-origin: center center;
}

.sideWrapper {
  display: flex;
  flex-direction: row;
}

.leftSide {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
}

.btnWrp {
  display: flex;
  justify-content: center;
  width: 400px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: solid 1px rgba(211, 201, 174, .55);
  margin: 25px;
  padding: 0;
  background: rgba(30, 30, 30, .3);
  cursor: pointer;
  transition: all .3s ease-in;
}

.btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  border: solid 1px #fca205;
  backdrop-filter: blur(10px);
}

.btn svg {
  vertical-align: middle;
  color: #d3c9ae;
  transition: color 0.3s ease;
}

.btn:hover svg {
  color: #fca205; /* or any accent color */
}

.ctcWrp {
  position: fixed;
  bottom: 75px;
  transform: translateX(50px);
}

.ctc {
  display: flex;
  align-items: center;
  width: 400px;
  background: rgba(30,30,30,0.3);
  backdrop-filter: blur(6px);
  border: solid 1px rgba(211, 201, 174, .55);
  transition: all .3s ease-in;
}

.ctc:hover {
  border: solid 1px #fca205;
}

li {
  display: flex;
  align-items: center;  /* 🔥 Vertical centering */
  gap: 10px;            /* Optional spacing between items */
  padding: 10px;        /* Optional */
}

li img {
  width: 25px;
}

.rightSide {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  min-height: 100%;
  height: auto;
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(6px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  padding: 50px;
  overflow: hidden;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}

.rightSide p {
  font-size: 1.1em;
  text-align: justify;
}

.tile-grid p {
  font-size: 1em;
}

.hud-corner {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 2px solid #fca205;
  opacity: .25;
  pointer-events: none;
  animation: pulseStripe 10s ease-in-out infinite;
}

.hud-corner.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.hud-corner.tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.hud-corner.bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.hud-corner.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 15px;
  margin-top: 0px;
  z-index: 2;
  margin-bottom: 20px;
}

.tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 200, 200, 0.3);
  padding: 30px;
  min-height: 250px;
  height: auto;
  font-family: sans-serif;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  z-index: 2;
}

#caseStudy {
  background: rgba(252, 162, 5, 0.15); 
}

#enter {
  position: absolute;
  bottom: 30px;
  right: 50px;
  height: 70px;
  width: 70px;
  transform: rotate(90deg);
  cursor: pointer;
}


.tile:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
  border: 1px solid #fca205;
  backdrop-filter: blur(10px);
  z-index:99;
  filter: brightness(1.1);
}


.tile svg{
  transition: all 0.3s ease-in; 
}

.tile:hover svg {
  color: #fca205;
}

.tile h3 {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #fca205;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5), 1px 1px 0px rgba(0,0,0,0.45);
  font-weight: 700;
  text-transform: uppercase;
}

.tile h4 {
  font-size: 1rem;
  letter-spacing: 4px;
  color: #fca205;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5), 1px 1px 0px rgba(0,0,0,0.45);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.tile ul, .tile li {
  margin: 0px;
  padding-left: 15px;
}

.tile-headline {
  font-size: 3em;
  text-transform: uppercase;
  line-height: 4rem;
  letter-spacing: 5px;
  margin-top: 0px;
  margin-bottom: 40px;
  opacity: .9;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.45);
  color: #d3c9ae;
}

.tile-headline2 {
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 50px;
  opacity: 0.6;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.45);
}

.world {
  position: fixed;
  bottom: 175px;
  left: -50px;
  width: 100%;
  height: 50%;
  background: url('img/world.svg');;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  opacity: 0.25;
  z-index: 1;
}

.worldIntro {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url('img/world.svg');;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.25;
  z-index: 1;
  transform: translatex(-50px);
}

.legallinks {
  position: absolute;
  bottom: 20px;
  right: 25px;
}

.legallinks a:hover {
  color: #fca205;
}


.lang-switch {
  position: fixed;
  top: 30px;
  right: 50%;
  transform: translateX(-25%);
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 999;
  opacity: .8;
}

.lang-labels span {
  font-size: 0.8rem;
  color: #d3c9ae;
}

.switch {
  position: relative;
  display: inline-block;
  width: 75px;     /* was 50px */
  height: 36px;    /* was 24px */
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #d3c9ae;
  transition: 0.4s;
  border-radius: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.slider:before {
  position: absolute;
  content: "";
  height: 27px;    /* was 18px */
  width: 27px;     /* was 18px */
  left: 4.5px;     /* 3px * 1.5 */
  bottom: 4.5px;   /* 3px * 1.5 */
  background-color: #333;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider:before {
  transform: translateX(39px); /* was 26px */
}

.lang-icon {
  width: 50px;
  height: 32px;
  margin-left: 10px;
  vertical-align: middle;
  transition: 0.6s ease;
  border-radius: 5px;
  filter: sepia(.75);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.lang-icon img {
  transition: 0.6s ease;
}

#introOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,30,30,0.8);
  backdrop-filter: blur(18px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1.5s ease;
}

#introOverlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.introP {
  letter-spacing: 9.3px;
  color: #fca205;
  font-weight: 700;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5), 1px 1px 0px rgba(0,0,0,0.45);
}



.introText h1 {
  font-size: 7rem;
    color: #d3c9ae;
  line-height: 7rem;
  letter-spacing: 40px;
  margin: 0;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.5), 2px 2px 0px rgba(0,0,0,0.45);
}

.impressum {
  color: #d3c9ae;
}

.tileHead {
  display:flex;
  align-items: center;
}

.tileHead h3 {
  padding-left: 30px;
}

.contactForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 515px;
  margin-top: 20px;
}

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

.contactForm button {
  background: #fca205;
  border-radius: 2px;
  width: 510px;
  margin: 5px;
  padding: 10px;
  border: solid 1px #fca205;
  color:  rgba(250,250,250,0.9);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.45);
  transition: all .3s ease-in;
}

.contactForm button:hover {
  background: rgba(30,30,30,0.5);
  color: #fca205;
}

.form-group input, .form-group textarea, .form-group select, .form-group option {
  background: rgba(250,250,250,0.1);
  border-radius: 0 0 4px 0;
  width: 500px;
  height: 45px;
  margin: 4px;
  padding: 10px;
  border: none;
  border-right: solid 1px #fca205;
  border-bottom: solid 1px #fca205;
  color: #fca205;
  font-size: 1rem;
}

.form-group textarea {
  height: 300px;
  width: 510px;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #fca205;
}

.form-group .country {
  width: 250px;
}
.form-group .options {
  width: 250px;
}

#successMessage {
display: none; 
text-align:center; 
border-radius: 2px; 
padding: 10px; 
background-color: green; 
color: white; 
margin-top: 10px;
}

#charCount {
  font-size: 11px;
  margin-top: -5px;
  margin-left: 70%;
}

    @media (max-width: 768px) {
      .sideWrapper {
        flex-direction: column;
        width: 100vw;
        position: absolute;
      }
      
      body {
      background-attachment: fixed;
      }

      .mission-stripe {
      width: 20px;
      }
      
      .mission-stripe-label {
      font-size: 1rem;
      }

      .leftSide,
      .rightSide {
        width: 100% !important;
        min-height: 70vh; !important;
        position: relative !important;
      }
      
      .rightSide {
        padding: 50px;
      }
    

      .btnWrp {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }

      .btn {
        width: 60px;
        height: 60px;
        margin: 10px;
      }

      .tile-headline {
        font-size: 2.5rem;
        line-height: 3rem;
        letter-spacing: 2px;
        text-align: center;
      }

      .tile-headline2 {
        font-size: 1.5rem;
        text-align: center;
      }

      .intro {
        font-size: 1rem;
        margin-bottom: 40px;
        text-align: center;
      }

      .tile {
        height: auto;
        padding: 20px;
      }

      .title {
        position: absolute;
        left: 30px;
        top: 0;
      }

      .title h1 {
        font-size: 3rem;
        letter-spacing: 25px;
        line-height: 3.5rem;
      }

      .title p {
        font-size: 1rem;
        line-height: 1.0rem;
        letter-spacing: 1px;
      }

      .ctcWrp {
        position: absolute;
        bottom: 45px;
        transform: scale(.75) translateX(10px);
      }

      .ctc {
        width: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 00px;
      }
      
      .ctc ul {
      padding-left: 10px;
      }

      .hud-corner {
        display: none;
      }
      
      .lang-switch {
      display: ;
      position: fixed;
      top: 10px;
      right: 0px;
      transform: scale(.5) translateX(25%);
      }
      
      .introText {
      display: flex;
      flex-direction: column;
      justify-content: left;
      padding-left: 10%;}
      
      .introText h1 {
      line-height: 1.4rem;
      font-size: 1.4rem;
      align-items: center;
      }
      
      .introText p {
      font-size: .5rem;
      }
      
      .tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 0px;
  z-index: 2;
}

#enter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 35px;
  width: 35px;
  transform: rotate(90deg);
  cursor: pointer;
}
.contactForm {
  width: 120%;
  margin-left: 10px;
}

.contactForm button {width:100%;}

.form-group input, .form-group textarea, .form-group select, .form-group option {
width:50%;}

.form-group textarea {width:400px;}

.form-group .country {
  width: 50%;
}
.form-group .options {
  width: 50%;
}
#charCount {
  font-size: 11px;
  margin-top: -5px;
  margin-left: 70%;
}
    }
