@font-face {
    font-family: 'F25 Bank Printer';
    src: url('fonts/F25_Bank_Printer.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'F25 Bank Printer';
    src: url('fonts/F25_Bank_Printer_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }
  
  /* Reset and base */
  * {
    box-sizing: border-box;
  }
  
  body {
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* This pushes children to top */
    min-height: 100vh;
    margin: 0;
  }
  
  
  .navbar {
    position: relative;
    height: 100px; /* keep your original */
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    overflow: hidden; /* important to hide overflow */
  }
  
  
  
  .logo-link {
    display: inline-block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
  }
  
  .logo-link img {
    height: 200px; /* matches navbar height */
    width: auto;
    object-fit: contain;
    display: block;
  }
  
  /* Center button wrapper */
  .center-button-wrapper {
    margin-top: 10px; /* Push footer down */
    margin-bottom: auto;
    padding: 20px 20px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  /* Lookbook image link */
  .lookbook-image {
    position: relative;
    display: inline-block;
    width: 640px;   /* fixed width */
    height: 360px;  /* fixed height (16:9 ratio) */
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
  }
  
  /* Lookbook image */
  .lookbook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
  }
  
  /* Overlay text */
  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 28px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* allows clicking through text */
    font-family: 'F25 Bank Printer', sans-serif;
  }
  
  /* Hover effects */
  .lookbook-image:hover img {
    filter: brightness(50%);
  }
  .lookbook-image:hover .overlay-text {
    opacity: 1;
  }
  
  /* Footer */
  footer.footer {
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
    font-family: 'F25 Bank Printer', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #444;
    margin-top: 20px;
    flex-shrink: 0;
    width: 100%;
  }
  
  .footer-links {
    font-family: 'F25 Bank Printer', sans-serif;
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-family: 'F25 Bank Printer', sans-serif;
    color: #444;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #000;
  }
  
  .footer-copy {
    font-family: 'F25 Bank Printer', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #777;
  }
  img {
    user-select: none;       /* Verhindert Markieren des Bildes */
    -webkit-user-drag: none; /* Verhindert Drag & Drop in WebKit-Browsern */
    pointer-events: none;    /* Macht Bilder komplett „nicht klickbar“ */
  }
  
  