@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
  

html, body {
    width: 100vw;
    min-height: 100vh;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.source {
    max-width: 400px;
    aspect-ratio: 9/16;
    border-radius: 1rem;
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
  max-height: 4rem;
  max-width: 100%;
}

.logo:hover {
  cursor: pointer;
}

.videos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10%;
  align-items: center;
  max-width: 90vw;
  margin: auto;
  padding: 5rem 0;
}

.socials {
  display: flex;
  flex: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.socials img {
  width: 80px;
  aspect-ratio: square;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 1rem;
}

p,
span {
  color: rgb(77, 76, 76);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 36px;
  text-align: justify;
}

a {
  color: #fc7600;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 36px;
  display: inline;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #fc7600;
}

footer a {
  color: white;
  font-weight: 500;
  font-size: 12px;
}

.amazon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: white;
    padding: 10px 10px 0px 10px;
    border-radius: 8px;
    border: 2px solid #FC7600;
}

.amazon img {
  height: 2rem;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
  height: 100%;
}

.qrcode-video {
  aspect-ratio: 9/16;
  max-width: 400px;
  border-radius: 1rem;
}

.container {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 5rem 0;
}

nav {
  background-color: white;
  position: sticky;
  top: 0;
  box-shadow: 0px 0px 4px 0px #a1a1a1;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#impressum {
  margin: auto;
  padding: 20px;
}

select:hover {
  cursor: pointer;
}

select {
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
  
    background-color: #fff;
    border: 1px solid #ccc;
    padding: .75rem 2.5rem 0.75rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='7' viewBox='0 0 10 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem auto;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  select:focus {
    outline: none;
    border-color: #FC7600;
    box-shadow: 0 0 0 2px rgba(217, 137, 91, 0.3);
  }
  
.paper-holder {
    /* Image of the paper holder */
    max-width: 500px;
    border-radius: 1rem;
}

@media (max-width: 1250px) {
    .wrapper {
        height: auto;
        max-width: 90vw;
    }
    .paper-holder {
        /* Image of the paper holder */
        max-width: 400px;
    }
    
}

@media (max-width: 1028px) {
    h1 {
        font-size: 36px;
    }
    .container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
}

@media (max-width: 800px) {
  .qrcode-video {
    max-width: 100%;
  }
  .logo {
    max-height: 3rem;
  }
}

@media only screen and (max-width: 600px) {
  .header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* Bilddarstellung statt Video */
.image-grid {
  flex-wrap: wrap;
  gap: 2rem;
}

.responsive-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Zwei Bilder nebeneinander auf größeren Bildschirmen */
@media (min-width: 600px) {
  .responsive-image {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .whatsapp-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    font-size: 14px;
  }

  .whatsapp-box a {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

/* Einheitlicher Stil für Social Buttons */
.social-button {
  color: white;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  transition: background-color 0.2s ease-in-out;
}
.whatsapp-link {
  background-color: #25d366;
}
.telegram-link {
  background-color: #0088cc;
}
.social-button img {
  height: 28px;
}
.social-button:hover {
  opacity: 0.9;
}
