:root {
  --background: #000000;
  --secondaryColor: #00ff87;
  --fontColor: #fff;
  --navbar-bg: rgba(0, 0, 0, 0.61);
  --navbar-bg-mobile: rgba(0, 0, 0, 0.87);
  --navbar-border: rgba(255,255,255,0.07);
  --navbar-link: #fff;
--navbar-link-hover: #00ff87;
--navbar-underline: #00ff87;
body.loading-active {
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: var(--fontColor);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.loader-inner {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.loader-progress {
  display: inline-block;
}

  --navbar-hamburger: #fff;
  --main-bg: rgba(0, 0, 0, 0.541);
  --box-shadow: -4px 0 16px rgba(0,0,0,0.2);

  --card-bg: rgba(255, 255, 255, 0.05); 
  --card-bg-hover: rgba(255, 179, 71, 0.1); 
  --card-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}



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

html {
  scroll-behavior: smooth; /* Fallback für Browser ohne JS */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--background);
    color: var(--fontColor);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}


body.is-scrolling {
    cursor: context-menu; /* Ändert den Cursor während des Scrollens */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondaryColor);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) var(--background);
}

.nav{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  padding: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 900px;
  z-index: 100;
  background: var(--navbar-bg);
  padding: 10px 28px;
  backdrop-filter: blur(12px);

  border-radius: 20px;
}


.navbar-logo {
  height: 39px;
  width: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
  transition: right 0.5s cubic-bezier(.77,0,.18,1);
}

.navbar-links li a {
  color: var(--navbar-link);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s;
  overflow: hidden;
}

.navbar-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--navbar-underline);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
}

.navbar-links li a:hover {
  color: var(--navbar-link-hover);
}

.navbar-links li a:hover::after {
  transform: scaleX(1);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 26px;
  height: 18px;
  justify-content: space-between;
  z-index: 110;
}

.navbar-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navbar-hamburger);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
}

.navbar-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav{
    width: 100%;
    padding: 0;
    border-radius: 0px;
  }
  
  .navbar {
    border-radius: 0px;
    padding: 12px 18px;
    background: var(--navbar-bg);
  }
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 100vw;
    background: var(--navbar-bg-mobile);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 40px;
    box-shadow: var(--box-shadow);
    transition: right 0.5s cubic-bezier(.77,0,.18,1);
}
  .navbar-links.open {
    right: 0;
    display: flex;
  }
  .navbar-links li {
    width: auto;
    text-align: center;
  }
  .navbar-links li a {
    font-size: 2.2rem;
    padding: 0;
    display: inline-block;
    width: auto;
    color: var(--navbar-link);
  }
  .navbar-hamburger {
    display: flex;
  }
}

body.no-scroll {
  overflow: hidden;
}




.main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.541);
}

.main-background-video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.main-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-center-content img{
  height: 200px;
  width: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.main-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.main-cta-button {
  display: inline-block;
  padding: 15px 55px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fontColor);
  background: transparent;
  border: 1px solid var(--fontColor);
  border-radius: 32px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: 
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.18s;
  cursor: pointer;
}

.main-cta-button:hover {
  background: var(--fontColor);
  color: var(--background);
  border-color: var(--fontColor);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .main-center-content img {
    height: 170px;
  }
  
  .main-cta {
    margin-top: 30px;
  }
  
  .main-cta-button {
    padding: 14px 42px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .main-center-content img {
    height: 140px;
  }
  
  .main-cta {
    margin-top: 25px;
  }
  
  .main-cta-button {
    padding: 12px 32px;
    font-size: 0.95rem;
  }
}



.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  padding: 48px 0;
}

.about-text p {
  font-size: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: color 0.5s cubic-bezier(.77,0,.18,1);
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 1200px) {
  .about-text p {
    font-size: 2.2rem;
    max-width: 1000px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 900px) {
  .about-text p {
    font-size: 1.6rem;
    max-width: 90vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 600px) {
  .about-text p {
    font-size: 1.1rem;
    padding-left: 8px;
    padding-right: 8px;
    max-width: 98vw;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}


.about-button {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.about-button a {
  display: inline-block;
  padding: 15px 55px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fontColor);
  background: transparent;
  border: 1px solid var(--secondaryColor);
  border-radius: 32px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: 
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.18s;
  cursor: pointer;
}

.about-button a:hover{
  background: var(--secondaryColor);
  color: var(--background);
  border-color: var(--secondaryColor);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about-button {
    margin-top: 36px;
  }
  .about-button a {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .about-button {
    margin-top: 24px;
  }
  .about-button a {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 24px;
  }
}




/* 
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  z-index: 1;
  transition: box-shadow 0.3s;
  will-change: transform;
  backface-visibility: hidden;
}

.img-1 {
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 60vw;
  height: 60vh;
  transform: translate(-50%, -50%);
}
.img-2{
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: none;
}

.img-3 {
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .img-1 {
    width: 90vw;
    max-width: 98vw;
    border-radius: 18px;
  }
  
  .img-2 {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .img-3 {
    width: 100%;
    max-width: 100%;
  }
}
*/





.services-section {
  width: 100%;
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background);
}

.services-wrapper {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.services-heading {
  font-size: 2.5rem;
  color: var(--fontColor);
  text-align: center;
  letter-spacing: 0.03em;
}

.services-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-card-wrapper {
  display: flex;
  justify-content: center;
  perspective: 800px;
}

.service-card {
  width: 100%;
  max-width: 700px;
  height: 400px;
  position: relative;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-overlay {
  background-color: var(--main-bg);
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--fontColor);
  z-index: 2;
  transition: backdrop-filter 0.4s ease;
}

.service-card:hover .service-card-overlay {
  backdrop-filter: blur(0);
}

.service-card-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--fontColor);
  letter-spacing: 0.02em;
}

.service-card-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}








/* References Section - genug Platz für Gallery-Animation */
#references {
  min-height: 100vh;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.references-wrapper {
  width: 80vw;
  max-width: 1100px;
  margin: 0 auto 20px auto;
  padding: 80px 40px 20px 40px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

.references-wrapper h2 {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
  color: #fff;
}

.references-subtitle {
  color: var(--secondaryColor);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.references-text {
  color: #ccc;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  font-size: 1.1rem;
}

.references-lists {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

.references-labels, .references-artists {
  min-width: 200px;
}

.references-labels h3,
.references-artists h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.references-labels ul,
.references-artists ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.references-labels li,
.references-artists li {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

@media (max-width: 900px) {
  #references {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .references-wrapper {
    padding: 48px 10vw 32px 10vw;
  }
  .references-lists {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}

@media (max-width: 500px) {
  #references {
    min-height: auto;
    padding: 40px 0;
  }
}



.label-carousel {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0px 0px 100px 0px;
}
.label-carousel::-webkit-scrollbar {
  display: none;
}

.labels{
  display: flex;

}

.label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 110px;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.label img {
  max-width: 140px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s;
}
.label img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

@media (max-width: 900px) {
  .label {
    width: 110px;
    height: 70px;
  }
  .label img {
    max-width: 90px;
    max-height: 56px;
  }
}

@media (max-width: 600px) {
  .label {
    width: 80px;
    height: 48px;
  }
  .label img {
    max-width: 60px;
    max-height: 32px;
  }
}


.gallery-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
  flex-direction: column;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 120px; /* Mehr Platz für 3-Spalten Desktop */
}

/* Responsive Grid */
@media (max-width: 841px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    max-width: 600px;
    padding-bottom: 80px; /* Weniger Platz für 2-Spalten */
  }
  
  /* Animation für Tablet (2 Spalten) deaktivieren */
  .gallery-item {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 350px;
    padding-bottom: 40px;
  }
  
  .gallery-wrapper {
    padding: 0 15px;
    margin-bottom: 40px;
  }
  
  /* Animation für mobile deaktivieren */
  .gallery-item {
    transform: none !important;
    opacity: 1 !important;
  }
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform, opacity;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.gallery-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}

.gallery-text h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.gallery-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

@media (max-width: 600px) {
  .gallery-text h4 {
    font-size: 14px;
  }
  
  .gallery-text p {
    font-size: 12px;
  }
  
  .gallery-overlay {
    padding: 15px;
  }
}



#contact{
  scroll-behavior: smooth;
}




.contact-section {
  height: 100vh;
  background-color: var(--background);
  color: var(--fontColor);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  font-family: 'Manrope', sans-serif;
}

.contact-content {
  max-width: 1000px;
  width: 100%;
}

.contact-content h3 {
  font-size: 1.3rem;
  color: var(--navbar-link-hover);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

.contact-content h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--fontColor);
}

.contact-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  color: var(--fontColor);
}


.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
}

.contact-buttons .btn {
  display: inline-block;
  padding: 18px 68px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fontColor);
  background: transparent;
  border: 1px solid var(--secondaryColor);
  border-radius: 32px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: 
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.18s;
  cursor: pointer;
  text-align: center;
}

.contact-buttons .btn:hover {
  background: var(--secondaryColor);
  color: var(--background);
  border-color: var(--secondaryColor);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-buttons {
    margin-top: 36px;
  }

  .contact-buttons .btn {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .contact-content h2 {
    font-size: 2.4rem;
  }

  .contact-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .contact-buttons {
    margin-top: 24px;
  }

  .contact-buttons .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
    border-radius: 24px;
  }

  .contact-content h2 {
    font-size: 2rem;
  }

  .contact-content p {
    font-size: 1rem;
  }
}

/* Icons für Contact-Buttons und Footer */
.contact-buttons .btn svg,
.footer-contact a svg {
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.9;
}

.contact-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
}




.footer {
  background-color: var(--background);
  color: var(--fontColor);
  padding: 64px 20px 32px 20px;
  font-family: 'Manrope', sans-serif;
  border-top: 1px solid var(--navbar-border);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: var(--fontColor);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--navbar-link-hover);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}

.footer-legal {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--navbar-link-hover);
}

/* Responsive */

@media (max-width: 700px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand img {
    height: 65px;
  }
}


