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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: #000;
  color: #ddd;
  font-family: 'neue-haas-unica-w1g', sans-serif;
}


/* --- Grid --- */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.col-6 {
  flex: 1 1 50%;
  padding: 0 15px;
}


/* --- Hero --- */
.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 20px;
  color: #eee;
}

.hero-text p {
  font-size: 0.8rem;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-logo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 5vw;
  z-index: 1;
}


/* --- Button --- */
.btn {
  display: inline-block;
  padding: 0.8em 1.2em;
  background: #008faa;
  color: #000;
  border-radius: 7px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 40px #ffffff22;
  box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.3),
		 	  inset -4px -4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  border-radius: 13px;
  background: #000;
  color: #008faa;
  box-shadow: 0 0 25px #008faa,
              inset 4px 4px 12px rgba(0, 143, 170, 0.8);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 10px #008faa; }
  50%  { box-shadow: 0 0 25px #00e5ff; }
  100% { box-shadow: 0 0 10px #008faa; }
}




/* --- Responsive Breakpoints --- */

/* Tablet quer und kleiner */
@media (max-width: 1024px) {
  .hero {
    padding-left: 3vw;      
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-text h2 {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }
}


/* Tablet hochkant / kleine Laptops */
@media (max-width: 768px) {
  .row {
    flex-direction: column; /* Spalten stapeln */
    gap: 1.5rem;
  }

  .col-6 {
    flex: 1 1 100%;         /* volle Breite */
    padding: 0;
  }

  .hero {
    justify-content: center;
    text-align: center;
    padding: 40px 20px;     /* gleichmäßiger Innenabstand */
  }

  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text h2 {
    font-size: 1.2rem;
  }
  .hero-text p {
    font-size: 0.75rem;
  }

  .btn {
    margin-top: 1rem;
  }
}


/* Mobile: scrollfähig */
@media (max-width: 768px){
  .hero-logo{
    position: relative;     
    z-index: 0;            
    width: 100%;
    height: 80svh;         
    object-fit: cover;
    object-position: 88% calc(50% + 30px); 
  }

  .hero{
    position: relative;
    z-index: 1;             
    min-height: 120svh;  
    padding: 32px 20px;
    text-align: center;   
  }
}


/* Smartphones */
@media (max-width: 480px) {
   .hero-logo{
    position: relative;     /* nicht fixed */
    width: 100%;
    height: 60svh;         /* mehr Höhe → Scroll möglich */
    object-fit: cover;
    object-position: 97% 58%;
  }
  .hero{
    min-height: 120svh;
    text-align: center;
    padding: 32px 16px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }
  .hero-text h2 {
    font-size: 1rem;
  }
  .hero-text p {
    font-size: 0.7rem;
  }

  .btn {
    width: 100%;           
    text-align: center;
  }
}



