@font-face {
  font-family: 'myfont';
  src: url('Jost-VariableFont_wght.ttf') format('truetype');
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'myfont';
}

/*----------------------------------------------Navbar----------------------------------------------*/

.topnav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1vw, 1.5rem);
  padding: clamp(1rem, 1.4vw, 1.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: #e5e0da;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.logo {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  line-height: 1.2;
}

.nav-logo-center {
  position: absolute;
  top: 10px;
  left: 40%;
  transform: translateX(-50%);
}

.logo-img {
  width: clamp(50px, 5vw, 75px);
  height: auto;
}

.studio-name {
  font-size: clamp(1.05rem, 1.2vw + 0.3rem, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #091f5b;
}

.tagline {
  font-size: clamp(0.7rem, 0.7vw + 0.2rem, 1rem);
  opacity: 0.75;
  color: #091f5b;
}

.topnav a {
  text-decoration: none;
  font-size: clamp(1.1rem, 1vw + 0.3rem, 1.35rem);
  color: #091f5b;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  cursor: pointer;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 2.5rem;
}


.lang-link {
  text-decoration: none;
  font-size: clamp(1.1rem, 1vw + 0.3rem, 1.35rem);
  color: #091f5b;
  opacity: 0.5;
}

.lang-link.active {
  opacity: 1;
  font-weight: 600;
}

.lang-divider {
  opacity: 0.4;
  font-size: 0.85rem;
}


.menu-toggle span {
  width: clamp(1.75rem, 4vw, 2.3rem);
  height: clamp(0.18rem, 0.35vw, 0.22rem);
  background: #091f5b;
  display: block;
}

@media only screen and (max-width: 1000px) {
  .menu-toggle {
    display: flex;
  }

  .nav-logo-center {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: clamp(64px, 8vh, 88px);
    left: 0;
    width: 100%;
    background: #e5e0da;
    flex-direction: column;
    padding: 1.1rem 1.4rem;
    gap: clamp(0.75rem, 3vw, 1.25rem);
    display: none;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  }
}

/*----------------------------------------------Navbar----------------------------------------------*/

/*----------------------------------------------Hero----------------------------------------------*/

.hero {
  padding-top: 100px;
  position: relative;
  height: calc(100vh - 100px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
.hero-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
*/  

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 31, 91, 0.5);
  z-index: 0;
}

.hero-content {
  width: 100%;
  position: relative;
  text-align: center;
  color: #e5e0da;
  z-index: 1;
}

.line {
  opacity: 0;
  animation-fill-mode: forwards;
}

.line-1 {
  animation:
    slideInLeft 0.8s ease forwards,
    slideOut 0.6s ease forwards;
  animation-delay: 0.4s, 2.2s;
}

.line-2 {
  animation:
    slideInRight 0.8s ease forwards,
    slideOut 0.6s ease forwards;
  animation-delay: 0.9s, 2.2s;
}

.final {
  animation: slideIn 1s ease forwards;
  animation-delay: 2.8s;
}


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.final-group {
  width: 100%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw + 0.5rem, 6rem);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  padding: 0 30px;
}

.hero-content p {
  font-size: clamp(1.2rem, 2.5vw + 0.2rem, 2.5rem);
}

.jump-text span,
.jump-sub span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: letterJump 2.6s cubic-bezier(.34,1.56,.64,1) forwards;
}

.hero-button {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 8vh, 6rem);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 3.6s; /* nach allen anderen Animationen */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes letterJump {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  60% {
    opacity: 1;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*----------------------------------------------Hero----------------------------------------------*/

/*----------------------------------------------ScrollText----------------------------------------------*/

.scroll-text,
.scroll-text2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  font-size: clamp(2.3rem, 4.5vw + 0.5rem, 5rem);
  line-height: 1.05;
  background: #e5e0da;
}

.scroll-text2 {
  background: #091f5b;
}

.scroll-text .para,
.scroll-text2 .para {
  margin: clamp(1.5rem, 5vh, 3rem) 0;
}

.scroll-text .para {
  font-weight: 300;
  color: #091f5b;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.scroll-text .para.active {
  font-weight: 800;
  color: #091f5b;
  opacity: 1;
}

.scroll-text2 .para {
  font-weight: 300;
  color: #e5e0da;
  transition: all 0.3s ease;
  text-align: right;
  opacity: 0.7;
}

.scroll-text2 .para.active {
  font-weight: 800;
  color: #e5e0da;
  opacity: 1;
}

/*----------------------------------------------ScrollText----------------------------------------------*/

/* ---------------------------------- Brand Section ---------------------------------- */

.brand-section {
  background: #091f5b;
  color: #e5e0da;
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
}

.content {
  display: grid;
  grid-template-columns: 1fr 60px 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative; 
}

.left {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;         
  transform: translateX(-50%);
  width: 3px;
  background: rgba(229, 224, 218, 0.4);
  z-index: 0;
}

.right {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vh, 3.8rem);
}

.block h3 {
  font-size: clamp(1.4rem, 2vw + 0.2rem, 2.1rem);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  margin-top: 0;
}

.block p {
  font-size: clamp(1.25rem, 1.5vw + 0.3rem, 1.8rem);
  line-height: 1.6;
  opacity: 0.9;
}

.right .block {
  position: relative; 
}

.right .block::after {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(2rem, 5vw, 4rem) - 36px); 
  top: calc(clamp(1.4rem, 2vw + 0.2rem, 2.1rem) / 2);     
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e0da;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }

  .timeline {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px; 
  }

  .timeline::before {
    left: 0;
    transform: none;
  }

  .left {
    padding-left: clamp(1.5rem, 8vw, 10vw)
  }

  .right {
    padding-left: clamp(1.5rem, 8vw, 10vw)
  }

  .right .block::after {
    left: calc(-1 * clamp(1.5rem, 8vw, 10vw) - 4px)     
  }

  .dot {
    margin-left: -6px; 
  }
}


/* ---------------------------------- Brand Section ---------------------------------- */

/* ---------------------------------- ABOUT WITH IMAGE ---------------------------------- */

.about-with-image {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  background: #e5e0da;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw + 0.2rem, 3rem);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #091f5b;
}

.about-text p {
  font-size: clamp(1.25rem, 1.5vw + 0.3rem, 1.8rem);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  color: #091f5b;
}

.about-lead {
  font-size: clamp(1.35rem, 1.8vw + 0.2rem, 1.55rem);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.2rem);
}

@media (max-width: 1000px) {

  .about-with-image {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 3vw, 3rem);
  }

  .about-image img {
    width: 100%;
  }

}

/* ---------------------------------- ABOUT WITH IMAGE ---------------------------------- */

/* ---------------------------------- Benefits ---------------------------------- */

#benefits {
  background: #091f5b;
}

.benefits-container {
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
}

#benefits h2 {
  font-size: clamp(2rem, 4vw + 0.2rem, 3rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: #e5e0da;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefits-item {
  background: #e5e0da;
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 2.5vw, 2rem);
  font-size: clamp(1.25rem, 1.5vw + 0.2rem, 1.8rem);
  font-weight: 500;
  color: #091f5b;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.benefits-right {
  color: #e5e0da;
}

.benefits-claim {
  font-size: clamp(1.25rem, 1.5vw + 0.3rem, 1.8rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 500;
}

.benefits-right img {
  width: 100%;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-right {
    margin-top: 4rem;
    text-align: center;
  }
}

/* ---------------------------------- Benefits ---------------------------------- */

/*----------------------------------------------ServicesImage----------------------------------------------*/
.services-image {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.services-image img {
  width: 100%;        
  height: auto;
}
/*----------------------------------------------ServicesImage----------------------------------------------*/

/*----------------------------------------------BrandStatement----------------------------------------------*/

.brand-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3rem, 6vh, 5rem);
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  background: #091f5b;
}

.brand-statement-headline {
  font-size: clamp(2.3rem, 4.5vw + 0.5rem, 5rem);
  line-height: 1.2;
  font-weight: 800;
  color: #e5e0da;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.brand-values-title {
  font-size: clamp(1.7rem, 3.2vw + 0.2rem, 2.6rem);  
  font-weight: 700;
  margin: clamp(1.5rem, 5vh, 3rem) 0;
  color: #e5e0da;
}

.brand-values-text {
  font-size: clamp(1.25rem, 1.5vw + 0.3rem, 1.8rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.brand-icon {
  width: clamp(1.7rem, 3.2vw + 0.2rem, 2.6rem);
  height: clamp(1.7rem, 3.2vw + 0.2rem, 2.6rem);
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1000px) {
  .brand-values {
    grid-template-columns: 1fr;
  }
}

/*----------------------------------------------BrandStatement----------------------------------------------*/

/* ---------------------------------- Services ---------------------------------- */

#services {
  background: #e5e0da;
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  text-align: center;
}

#services h2 {
  font-size: clamp(2rem, 4vw + 0.2rem, 3rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #091f5b;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.services-manifest {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.manifest-item {
  background: #091f5b;
  width: clamp(220px, 20vw, 250px);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  min-height: 100px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.manifest-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: #091f5b;
  opacity: 0.2;
  filter: blur(60px);
  transition: transform 0.7s ease;
}

.manifest-item:hover::before {
  transform: rotate(20deg);
  opacity: 0.4;
}

.manifest-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.manifest-name {
  font-size: clamp(1.25rem, 1.5vw + 0.4rem, 2.0rem);
  font-weight: 700;
  color: #e5e0da;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  pointer-events: none;
}

.manifest-item::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e5e0da;
  top: 15px;
  right: 15px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0.3; }
}

@media (max-width: 768px) {
  .services-manifest {
    flex-direction: column;
    align-items: center;
  }
}

.manifest-toggle {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
}

.manifest-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;  
}

.manifest-content p {
  margin-top: 1rem;
  color: #e5e0da;
  line-height: 1.5;
  font-size: clamp(1.25rem, 1.5vw + 0.3rem, 1.8rem);
}

.manifest-item.active .manifest-content {
  max-height: 1600px;
  opacity: 1;
}

.manifest-item::after {
  transition: transform 0.4s ease;
}

.manifest-item.active::after {
  transform: scale(1.6);
}

.manifest-item::before,
.manifest-item::after {
  pointer-events: none;
}

.manifest-toggle {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
}

.service-button {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 8vh, 6rem);
}

.btn-read-more {
  padding: clamp(1.1rem, 2vw, 1.5rem)
           clamp(2.8rem, 5vw, 4.5rem);

  border: none;
  border-radius: 30px;

  color: #e5e0da;
  text-decoration: none;

  font-size: clamp(0.9rem, 1.2vw, 1.15rem);
  letter-spacing: clamp(0.2em, 0.35vw, 0.3em);
  font-weight: 600;
  text-transform: uppercase;

  transition: background 0.3s ease, color 0.3s ease;
  background: #ff9026;
}

.btn-read-more:hover {
  background: #d96f00;
}

/* ---------------------------------- Services ---------------------------------- */

/*----------------------------------------------Work----------------------------------------------*/

#work {
  background: #091f5b;
  padding: clamp(10vh, 15vh, 18vh) 0;
}

#work h2 {
  font-size: clamp(2rem, 4vw + 0.2rem, 3rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: #e5e0da;
  text-align: center;
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slide-track {
  display: flex;
  width: max-content;
  animation: scroll 50s linear infinite;
  gap: clamp(1rem, 2vw, 2rem);
}

.slide {
  flex-shrink: 0;
}

.slide img {
  display: block;
  height: clamp(400px, 40vh, 600px);
  width: auto;
  object-fit: cover;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .slide img {
    height: clamp(300px, 35vh, 550px);
  }
}

.work-button {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 8vh, 6rem);
}

/*----------------------------------------------Work----------------------------------------------*/

/*----------------------------------------------Voices--------------------------------------------*/

.voices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3rem, 6vh, 5rem);
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  background: #e5e0da;
}

.voices-statement {
  font-size: clamp(2.3rem, 4.5vw + 0.5rem, 5rem);
  line-height: 1.2;
  font-weight: 800;
  color: #091f5b;
}

.voices2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3rem, 6vh, 5rem);
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  background: #091f5b;
}

.voices-statement2 {
  font-size: clamp(2.3rem, 4.5vw + 0.5rem, 5rem);
  line-height: 1.2;
  font-weight: 800;
  color: #e5e0da;
}

.voices-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.voices-image {
  width: clamp(280px, 30vw, 520px);
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .voices-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .voices-image {
    width: 100%;
    max-width: 320px;
  }

  .voices-statement {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

/*----------------------------------------------Voices--------------------------------------------*/

/*----------------------------------------------VoicesTrust--------------------------------------------*/
.voices-trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3rem, 6vh, 5rem);
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  background: #091f5b;
}

.voices-trust-headline {
  font-size: clamp(2rem, 4vw + 0.2rem, 3rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: #e5e0da;
  text-align: center;
}

.voices-trust2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3rem, 6vh, 5rem);
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
  background: #e5e0da;
}

.voices-trust-headline2 {
  font-size: clamp(2rem, 4vw + 0.2rem, 3rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: #091f5b;
  text-align: center;
}

/*----------------------------------------------VoicesTrust--------------------------------------------*/

/*----------------------------------------------Footer--------------------------------------------*/
.site-footer {
  background: #e5e0da;
  color: #091f5b;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 8vw, 10vw) 2rem;
  font-size: 1.4rem;
  border-top: 1px solid #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-block h4 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-block p {
  line-height: 1.6;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin-bottom: 0.8rem;
}

.site-footer a {
  color: #091f5b;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #fff;
  padding-top: 2rem;
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.6;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-socials img {
  width: 34px;
  height: 34px;
  display: block;
}

.footer-cta {
  text-align: center;
  margin-bottom: 1rem;
  color: #091f5b;
  font-weight: 800;
}

.footer-cta {
  margin-bottom: 4rem;
}

.footer-cta h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(9, 31, 91, 0.2);
  background: #ffffff;
  font-family: 'myfont';
  font-size: 1.4rem;
  color: #091f5b;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid #091f5b;
  box-shadow: 0 0 0 3px rgba(9, 31, 91, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 30px;
  border: none;
  background: #ff9026;
  color: #e5e0da;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #d96f00;
}

.hidden-field {
  display: none;
}

/*----------------------------------------------Footer--------------------------------------------*/

/*----------------------------------------------AllWork--------------------------------------------*/

.work-list {
  padding: clamp(8vh, 12vh, 15vh) clamp(1.5rem, 8vw, 10vw);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #091f5b;
}

.work-item {
  background: #e5e0da;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.work-toggle {
  all: unset;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  cursor: pointer;
  padding: 1.5rem;
}

.work-title h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #091f5b;
}

.work-title span {
  font-size: 1.1rem;
  color: #091f5b;
  opacity: 0.6;
}

.work-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
}

.work-item.active .work-details {
  max-height: none;
  opacity: 1;
}

.work-text {
  padding: 2rem;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  line-height: 1.7;
  color: #091f5b;
}

.work-text ul {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
}

.work-text li {
  margin-bottom: 0.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .work-toggle {
    flex-direction: column;
    align-items: flex-start;
  }
}

.logo-carousel {
  background: #091f5b;
  padding: 6vh 0;
}

.carousel-inner {
  width: 100%;
  max-width: calc(100% - (2 * clamp(1.5rem, 8vw, 10vw)));
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 8rem;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
}

.logo-item img {
  max-height: 60px;
  opacity: 0.75;
}

@keyframes scrollLogos {
  100% {
    transform: translateX(calc(-50%));
  }
}

.work-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;         
    padding: 3rem;  
}

.work-text {
    flex: 1;
}

.work-video video {
    width: 350px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .work-content {
        flex-direction: column;
    }

    .work-video video {
        width: 100%;
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Bilder pro Reihe */
    gap: 15px;
    padding: 3rem; 
}

.image-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 Bilder pro Reihe */
    }
}

.media-slider {
    position: relative;
    width: 350px;
    overflow: hidden;
    border-radius: 12px;
}

.media-track {
    display: flex;
    transition: transform 0.4s ease;
}

.media-item {
    min-width: 100%;
}

.media-item img,
.media-item video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0 12px;
    cursor: pointer;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

@media (max-width: 768px) {
    .media-slider {
        width: 100%;
    }
}


/*----------------------------------------------AllWork--------------------------------------------*/

.services-zigzag {
  background: #e5e0da;
  padding: clamp(8vh, 12vh, 16vh) clamp(1.5rem, 8vw, 10vw);
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vh, 7rem);
}

.service-row {
  display: flex;
  width: 100%;
}

.service-row.leftb {
  justify-content: flex-start;
}

.service-row.rightb {
  justify-content: flex-end;
}

.service-row.rightb .service-content {
  margin-left: auto;
}

.service-content {
  max-width: clamp(400px, 80%, 1000px); 
  text-align: left;
}

.service-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem); 
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #091f5b;
  margin-bottom: 1rem;
}

.service-content p {
  font-size: clamp(1.4rem, 1.8vw, 1.9rem); 
  line-height: 1.6;
  color: #091f5b;
}

@media (max-width: 900px) {
  .service-row {
    justify-content: center;
  }
  
  .service-content {
    max-width: 90%;
    text-align: center;
  }
}

.service-row {
  opacity: 0;
  transform: translateX(50px); 
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-row.rightb {
  transform: translateX(-50px);
}

.service-row.active {
  opacity: 1;
  transform: translateX(0);
}

.service-row {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/*----------------------Impressum-------------------------*/
.impressum, .dataprotection {
  padding: clamp(10vh, 15vh, 18vh) clamp(1.5rem, 8vw, 10vw);
}
/*----------------------Impressum-------------------------*/

