@font-face {
    font-family: 'HittoSushi';
    src: url('hHittoSushi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000000;
    color: #333;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: #000000;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    
}

h1 {
    text-shadow: 5px 5px 1px black;
    
}

p {
    color: #b5b5b5;
    margin-left: 10px;
}


header p {
    font-size: 1.2rem;
    color: #555;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Neue CSS-Regeln für galerie.html */

.gallery-selection-buttons {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gallery-selection-buttons button {
    background-color: #c93722;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    margin: 0.5rem;
    transition: background-color 0.3s;
    min-width: 250px;
}

.zurubutton {
  background-color: #c93722;
  color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.5rem 1rem;

}

.zurubutton2 {
  background-color: #c93722;
  color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.5rem 1rem;

}

.gallery-selection-buttons button:hover {
    background-color: #8b2618;
}

.gallery-display {
    text-align: center;
}

.gallery-description {
    margin-right: 15px;
}

h2 {
    font-family: 'HittoSushi';
    font-size: 2rem;
    color: rgb(240, 238, 238);
    margin-left: 20px;
    margin-bottom: 10px;
}

.gallery-display h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    margin-left: 0px;
    
}

.caption {
    padding: 1rem;
    text-align: center;
}

.caption h3 {
    margin: 0;
    font-size: 1.1rem;
}

.caption span {
    font-size: 0.9rem;
    color: #888;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0,0,0,0.8);
    text-align: center;
    padding-top: 5rem;
}

.lightbox img {
    max-width: 80%;
    max-height: 70%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

#lightbox-caption {
    color: white;
    margin-top: 1rem;
}

.buy-links {
    margin-top: 2rem;
}

.buy-links a {
    background: #c93722;
    padding: 0.7rem 1.2rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    
}

.buy-links a:hover {
    background: #8b2618;
}

.hero {
    position: relative;
    
    height: 35vh; /* halbe Bildschirmhöhe */
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den Bereich, bleibt proportional */
    display: block;
    border-radius: 25px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    font-family: 'HittoSushi';
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 0.3rem;
   
}

.hero-text p {
    font-size: 1.6rem;
    color: white;
    text-shadow: 5px 5px 1px black;
}
.nav {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    transform: translateY(-50%);
    user-select: none;
}

.nav.prev { left: 20px; }
.nav.next { right: 20px; }

.nav:hover {
    background: rgba(0,0,0,0.6);
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s;
}

.thumbnails img:hover {
    border: 2px solid #ff9900;
}

.thumbnails img.active {
    border: 2px solid #ff9900;
}

/* Navigation Grunddesign */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 10px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'HittoSushi';
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #ff9900;
}

/* Burger-Button (nur mobil sichtbar) */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #222;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        padding: 0px 0;
        font-size: 1.3rem;
    }
}


/* FAQ-Sektion */
.content-container {
  padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.content-container2 {
  
    max-width: 900px;
    margin: 0 auto;
}
.faq-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ff9900;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    display: none;
    padding-top: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.faq-answer.show {
    display: block;
}
.impressum-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    
}
.impressum-section p  {
    color:#555;
}


.kontakt-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.kontakt-section p {
    color:#555;
}

/* styles.css */
.load-more-container {
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.load-more-button {
    background-color: #c93722;
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.load-more-button:hover {
    background-color: #8b2618;
}

.black {
    color: #2e2e2e;
}

/* Kontaktformular Eingabefelder */
.kontakt-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kontakt-section .form-group {
    display: flex;
    flex-direction: column;
}

.kontakt-section label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.kontakt-section input[type="text"],
.kontakt-section input[type="email"],
.kontakt-section textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
}

.kontakt-section input[type="text"]:focus,
.kontakt-section input[type="email"]:focus,
.kontakt-section textarea:focus {
    border-color: #c93722;
    outline: none;
    box-shadow: 0 0 4px rgba(211, 168, 124, 0.6);
}

.kontakt-section textarea {
    resize: vertical;
}

/* Senden-Button optisch anpassen */
.kontakt-section .submit-button {
    background-color: #c93722;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.kontakt-section .submit-button:hover {
    background-color: #8b2618;
}

.video-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.video-container video {
    width: 100%;
    max-width: 400px; /* maximale Breite auf PC/iPad */
    border-radius: 8px;
}
/* Instagram-Sektion oberhalb des Footers */
.instagram-section {
    text-align: center;
    padding: 2rem 1rem;
    background: #111; /* dunkler Hintergrund für Kontrast */
}

.instagram-section a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.instagram-section a:hover {
    color: #ff9900; /* deine Akzentfarbe */
}

.instagram-logo {
    width: 32px;
    height: 32px;
}

.instagram-logo2{
    margin-left: 5px;
    width:  15px;
    height: 15px;
}
/* === Über-mich: frischer Look === */
.about-intro {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-title {
  font-family: 'HittoSushi', Arial, sans-serif;
  font-size: 2.2rem;
  color: #f0f0f0;
  margin: 0 20px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.accent-underline {
  height: 3px;
  width: 120px;
  margin: 12px 20px 0;
  background: linear-gradient(90deg, #c93722, #ff9900);
  border-radius: 3px;
}
.accent-underline2 {
  height: 3px;
  width: 120px;
  margin: 0px 20px 0;
  background: linear-gradient(90deg, #c93722, #ff9900);
  border-radius: 3px;
}

.accent-underline3 {
  width: 120px;              /* feste Breite für den Balken */
  height: 3px;              /* Höhe */
  background: linear-gradient(90deg, #c93722, #ff9900); /* dein Verlauf */
  margin: 0.5rem auto 1.2rem auto; /* auto = zentriert */
  border-radius: 3px;       /* optional: abgerundet */
}

/* Grid: Video links, Text rechts */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Rahmen für Video */
.video-frame {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.video-frame video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  outline: none;
}

/* „Glass“-Karte für Text */
.about-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.about-card p {
  margin: 0 0 0.9rem 0;
  color: #d6d6d6;
  line-height: 1.65;
}

/* kleiner Eyebrow/Kicker */
.kicker {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: #ffb871;
  margin-bottom: .4rem;
}

/* Lead-Absatz etwas größer/heller */
.lead {
  font-size: 1.05rem;
  color: #eeeeee;
}

/* dezenter, weicher Ton */
.soft {
  color: #cfcfcf;
  opacity: .92;
}

/* Mobile: einspaltig, Video zuerst */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Sehr kleine Screens: Innenabstand erhöhen */
@media (max-width: 480px) {
  .about-card {
    padding: 1.1rem;
  }
  .about-title {
    font-size: 1.9rem;
  }
}
/* Scroll-to-top Button */
.scroll-top-btn {
  position: fixed;
  right: 5px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #c93722;
  color: #fff;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 1500; /* über Navbar & Lightbox */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  
}
.scroll-top-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: white; /* Farbe des Pfeils */
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 4l-8 8h6v8h4v-8h6z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 4l-8 8h6v8h4v-8h6z'/></svg>") no-repeat center / contain;
}


.scroll-top-btn:hover {
  background: #8b2618;
}

.scroll-top-btn.show {
  opacity: 0.7;
  visibility: visible;
  transform: translateY(0);
}

/* für Nutzer mit reduzierter Bewegung */
@media (prefers-reduced-motion: reduce) {
  .scroll-top-btn { transition: none; }
}

/* === News/Blog === */
.news-quicknav {
  margin-top: .3rem;
  margin-bottom: .6rem;
}
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.tag-chip {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  color: #eee;
  padding: .45rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: .9rem;
  transition: transform .15s ease, background .2s ease;
}
.tag-chip:hover { transform: translateY(-1px); }
.tag-chip.active { background: linear-gradient(90deg, #c93722, #ff9900); color: #111; border-color: transparent; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.2rem;
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.news-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-image-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.news-card:hover .news-image-wrap img { transform: scale(1.03); }

.news-body {
  padding: 1rem 1.1rem 1.2rem;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
  align-items: center;
  margin-bottom: .35rem;
}
.news-date {
  font-size: .9rem;
  color: #ffb871;
}
.news-tag {
  font-size: .8rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: .15rem .5rem;
  border-radius: 999px;
  color: #ddd;
}

.news-title {
  margin: .2rem 0 .5rem 0;
  color: #f0f0f0;
  font-size: 1.2rem;
}

.news-excerpt {
  color: #d6d6d6;
  line-height: 1.6;
  margin: 0 0 .6rem 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 2–3 Zeilen Vorschau: */
    /* Standard + Fallback */
  line-clamp: 3;              /* Draft-Standard */
  -webkit-line-clamp: 3;      /* Safari/Chromium */
}

.news-excerpt[data-collapsed="false"] {
  display: block; /* bei „mehr“ offen */
}

.news-more p {
  color: #d6d6d6;
  line-height: 1.65;
  margin: 0 0 .7rem 0;
}

.news-more li{
  color: #d6d6d6a4;

}


.news-toggle {
  display: inline-block;
  margin-top: .4rem;
  background-color: #c93722;
  color: white;
  border: none;
  padding: 0.6rem 1.1rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s, transform .1s ease;
}
.news-toggle:hover { background-color: #8b2618; transform: translateY(-1px); }

@media (max-width: 540px) {
  .news-grid { grid-template-columns: 1fr; }
}
/* === News Carousel === */
.news-image-wrap { position: relative; }
.carousel {
  position: relative;
  height: 100%;
  width: 100%;
  outline: none;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}
.carousel-btn:hover { background: rgba(0,0,0,.55); transform: translateY(-50%) scale(1.04); }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.25);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: #fff; border-color: #fff; }

@media (hover: none) and (pointer: coarse) {
  .carousel-btn { width: 40px; height: 40px; font-size: 22px; }
  .carousel-dot { width: 10px; height: 10px; }
}
/* === News-Lightbox (namespaced: nlbx-*) === */
.no-scroll { overflow: hidden; }

.nlbx {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 16px;
}

.nlbx[hidden] { display: none !important; }

.nlbx-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.nlbx-content {
  position: relative;
  max-width: 1200px;
  width: min(96vw, 1200px);
  max-height: 92vh;
  display: grid;
  grid-template-areas:
    "prev stage next"
    "dots dots dots";
  grid-template-columns: 56px 1fr 56px;
  grid-template-rows: 1fr auto;
  gap: 10px 8px;
  z-index: 1;
}

.nlbx-stage {
  grid-area: stage;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 8px;
}
.nlbx-stage img {
  max-width: 100%;
  max-height: 82vh;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

.nlbx-prev, .nlbx-next, .nlbx-close {
  position: absolute;
  top: 8px;
  background: rgba(0,0,0,.45);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  width: 40px; height: 40px;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.nlbx-close { right: 8px; }
.nlbx-prev, .nlbx-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px; font-size: 26px;
}
.nlbx-prev { left: 8px; }
.nlbx-next { right: 8px; }

.nlbx-dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.nlbx-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(0,0,0,.3);
  cursor: pointer;
}
.nlbx-dot.active { background: #fff; border-color: #fff; }

@media (max-width: 640px) {
  .nlbx-content {
    grid-template-columns: 40px 1fr 40px;
  }
  .nlbx-prev, .nlbx-next {
    width: 42px; height: 42px; font-size: 24px;
  }
}
/* Klicks nur auf aktive Slide zulassen */
.carousel-slide { 
  pointer-events: none;     /* unsichtbare Slides fangen keine Klicks mehr */
  z-index: 0;
}
.carousel-slide.active {
  pointer-events: auto;     /* nur aktive Slide ist klickbar */
  z-index: 1;
}

/* === Kontaktformular im about-card Stil === */
.about-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card .form-group {
  display: flex;
  flex-direction: column;
}

.about-card label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #eee; /* auf dunklem Hintergrund besser lesbar */
}

.about-card input[type="text"],
.about-card input[type="email"],
.about-card textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  font-family: inherit;
  background: #fff;
  color: #111;
}

.about-card input[type="text"]:focus,
.about-card input[type="email"]:focus,
.about-card textarea:focus {
  border-color: #c93722;
  outline: none;
  box-shadow: 0 0 4px rgba(211, 168, 124, 0.6);
}

.about-card textarea {
  resize: vertical;
}

.about-card .submit-button {
  background-color: #c93722;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.about-card .submit-button:hover {
  background-color: #8b2618;
}

/* kleiner Hinweistext unter dem Button */
.about-card .form-hint {
  color: #d6d6d6;
  margin-top: .5rem;
  font-size: .95rem;
  line-height: 1.5;
}
