/* ---- FONTS ---- */
@font-face {
    font-family: 'BethEllen';
    src: url('assets/fonts/zippittey/zippittey Bold.ttf') format('truetype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'SuaglBody';
    src: url('assets/fonts/alte_haas_grotesk/AlteHaasGroteskRegular.ttf') format('truetype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'SuaglBodyBold';
    src: url('assets/fonts/alte_haas_grotesk/AlteHaasGroteskBold.ttf') format('truetype');
    font-display: swap;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    overflow: hidden;
  }
  
  /* ---- BACKGROUND SLIDESHOW ---- */
  .bg-slideshow {
    position: fixed;
    inset: 0;
    z-index: -1;
  }
  
  .bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  
  .bg-slide.active {
    opacity: 1;
  }
  
  .bg-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
  }
  
  /* ---- LAYOUT ---- */
  .screen {
    position: relative;
    z-index: 2;
    height: 100svh;
    width: 100vw;
    padding: 1.5rem;
    color: #F2EDE4;
  }
  
  /* H1 + Tagline als Gruppe, perfekt mittig im Screen */
  .hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }
  
  h1 {
    font-family: 'BethEllen';
    color: #ffffff;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: normal;
    line-height: 1;
  }
  
  .subtext {
    font-family: 'SuaglBody', sans-serif;
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Desktop: Tagline direkt unter H1 (innerhalb .hero) */
  .subtext-desktop {
    margin-top: -1.2rem;
  }
  
  /* Mobile-Variante: standardmässig ausgeblendet */
  .subtext-mobile {
    display: none;
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Coming Soon unten am Rand, unabhängig positioniert */
  .coming-soon {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'SuaglBodyBold', sans-serif;
    font-size: clamp(2rem, 7vw, 3rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    white-space: nowrap;
  }
  
  /* Ab hier: Mobile-Breakpoint */
  @media (max-width: 600px) {
    .screen {
      padding: 1rem;
    }
  
    /* Desktop-Tagline ausblenden */
    .subtext-desktop {
      display: none;
    }
  
    /* Mobile-Tagline einblenden */
    .subtext-mobile {
      display: block;
      font-size: clamp(0.75rem, 3.2vw, 0.95rem);
      white-space: nowrap;
    }
  }