/**
* Template Name: Yummy
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/**
* Sven Hemprich – Stimme & Präsenz
* Unterseite: stimme-praesenz.css
* Akzentfarbe: #be2541 (Rot, passend zum Hero-Bild)
*/

/* bitte keine automatische Dark-Theme-Anpassung! */
:root {
  color-scheme: light;
}

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/

/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-v48-latin-regular.woff2') format('woff2'),
       url('fonts/roboto-v48-latin-regular.ttf') format('truetype');
}

/* roboto-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/roboto-v48-latin-italic.woff2') format('woff2'),
       url('fonts/roboto-v48-latin-italic.ttf') format('truetype');
}

/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/roboto-v48-latin-500.woff2') format('woff2'),
       url('fonts/roboto-v48-latin-500.ttf') format('truetype');
}

/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/roboto-v48-latin-700.woff2') format('woff2'),
       url('fonts/roboto-v48-latin-700.ttf') format('truetype');
}

/* lxgw-wenkai-tc-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'LXGW WenKai TC';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/lxgw-wenkai-tc-v10-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lxgw-wenkai-tc-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'LXGW WenKai TC';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/lxgw-wenkai-tc-v10-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v19-latin-regular.woff2') format('woff2'),
       url('fonts/inter-v19-latin-regular.ttf') format('truetype');
}

/* inter-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v19-latin-500.woff2') format('woff2'),
       url('fonts/inter-v19-latin-500.ttf') format('truetype');
}

/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter-v19-latin-700.woff2') format('woff2'),
       url('fonts/inter-v19-latin-700.ttf') format('truetype');
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "LXGW WenKai TC", serif;
  --nav-font: "Inter", sans-serif;
}

/* Globale Farben */
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #37373f;
  --accent-color: #be2541; /* Rot – passend zum Hero-Bild */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav-Farben */
:root {
  --nav-color: #7f7f90;
  --nav-hover-color: #be2541;
  --nav-mobile-background-color: #ffffff;
}

.light-background {
  --background-color: #f2f4f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.subpage-divider {
  height: 1px;
  width: 160px;
  margin: 72px auto;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.2), transparent);
}

@media (max-width: 768px) {
  .subpage-divider {
    margin: 32px auto;
    width: 120px;
  }
}

/* Wellen-Trenner zwischen Hero und erster Section */
.section-divider {
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------
# Header/Menüleiste
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-decoration: none;
}

.header .brand .sitename {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--default-font);
}

.header .brand .sitename span {
  color: #be2541; /* Punkt in Akzentfarbe */
  margin-left: 2px;
}

.header .brand .tagline {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: #be2541; /* Tagline in Akzentfarbe */
  font-family: var(--nav-font);
}

/* Header-Button "Kontakt" */
.header .btn-get-started,
.header .btn-get-started:focus {
  color: #fff;
  background: #be2541;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.header .btn-get-started:hover,
.header .btn-get-started:focus:hover {
  color: #fff;
  background: #d4455e; /* helleres Rot beim Hover */
}

@media (max-width: 1200px) {
  .header .brand { order: 1; }
  .header .btn-get-started { order: 2; margin: 0 15px 0 0; padding: 6px 20px; }
  .header .navmenu { order: 3; }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------------------------
   Top Bar
------------------------------------------------------------- */
:root {
  --topbar-h: 40px;
}

#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: #be2541; /* Rot */
  color: #fff;
  z-index: 1031;
  transition: background .3s ease;
}

#topbar .container { height: 100%; }

#topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

#topbar .contact-info .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

#topbar .contact-info i {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-style: normal;
}

#topbar .contact-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-style: normal;
}

#topbar .contact-info a:hover {
  color: #f9d0d8; /* zartes Rosa beim Hover */
}

#topbar + .header {
  margin-top: var(--topbar-h);
}

.header.sticky-top {
  top: var(--topbar-h);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }

  .navmenu ul {
    margin: 0; padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li { position: relative; }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child { padding-right: 0; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #be2541; /* Unterstrich in Akzentfarbe */
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 8px;
  }

  .navmenu { padding: 0; z-index: 9997; }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #333333;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #fae0e4; /* zartes Rosa für den Chip */
    color: #be2541;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #be2541;
    color: #ffffff;
    margin-left: 0;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #be2541;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #be2541;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .mobile-nav-active { overflow: hidden; }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    top: 80px;
    max-height: 40vh;
    overflow: hidden;
    overflow-y: auto;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    padding: 20px 0;
  }

  .mobile-nav-active .navmenu>ul { display: block; }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 60px;
    right: 40px;
    color: #be2541;
    z-index: 10000;
  }
}

/* Home-Link auf Desktop ausblenden */
.navmenu li:first-child { display: none; }

@media (max-width: 1199px) {
  .navmenu li:first-child { display: block; }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p { margin-bottom: 0px; }

.footer a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover { color: #f4aab6; } /* zartes Rosa */

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p { margin-bottom: 0; }

.footer .credits { margin-top: 5px; font-size: 13px; }

.footer p,
.footer a { font-size: 14px; line-height: 1.5; }

/* -------------------------------------------------------------
   Preloader
------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader::before,
#preloader::after {
  content: "";
  position: absolute;
  border: 4px solid #be2541; /* Akzentfarbe */
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader::after { animation-delay: -0.5s; }

@keyframes animate-preloader {
  0% { width: 10px; height: 10px; top: calc(50% - 5px); left: calc(50% - 5px); opacity: 1; }
  100% { width: 72px; height: 72px; top: calc(50% - 36px); left: calc(50% - 36px); opacity: 0; }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #be2541; /* Akzentfarbe */
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i { font-size: 24px; color: #fff; line-height: 0; }
.scroll-top:hover { background-color: #d4455e; color: #fff; }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 15px; }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 56px; }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.section-title p .description-title {
  color: #be2541; /* Akzentfarbe */
}

/*--------------------------------------------------------------
# Hero Section
Vollbild-Layout: Text links, Bild füllt rechte Seite
randlos – weicher Gradient-Übergang links
--------------------------------------------------------------*/

.hero.section.light-background {
  background-color: #f2f4f7;
}

.hero {
  width: 100%;
  min-height: 55vh;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

/* Flex-Container für Text + Bild */
.hero-inner {
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* Linke Spalte: Text, Buttons */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 60px;
  position: relative;
  z-index: 2;
}

/* Rechte Spalte: Bild füllt volle Höhe */
.hero-image {
  width: 60%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Bild beschneidet sich selbst auf die Spaltenhöhe */
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Weicher Übergang: Bild läuft in den Hintergrund aus */
.hero-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: linear-gradient(to right, #f2f4f7, transparent);
  z-index: 1;
}

/* Hero-Titel */
.hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px 0;
}

/* Akzentfarbe im Titel */
.hero h1 .accent {
  color: #be2541;
}

/* Unterzeile */
.hero p {
  color: #333;
  margin: 0 0 24px 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.4;
}

/* -------------------------------------------------------------
   HERO: Buttons & Abstände
------------------------------------------------------------- */

.hero .d-flex { gap: 12px; }

.hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .2px;
  padding: 8px 26px;
  border-radius: 50px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  text-decoration: none;
}

/* Primärer Button */
.hero .d-flex .btn-get-started:first-child {
  background: #be2541;
  color: #fff;
  border-color: #be2541;
}

.hero .d-flex .btn-get-started:first-child:hover {
  background: #d4455e;
  color: #fff;
  border-color: #d4455e;
}

/* Zweiter Button: Outline */
.hero .d-flex .btn-get-started + .btn-get-started {
  background: #fff;
  color: #be2541;
  border: 2px solid #be2541;
}

.hero .d-flex .btn-get-started + .btn-get-started:hover {
  background: #be2541;
  color: #fff;
  border-color: #be2541;
}

/* Fokuszustand für Barrierefreiheit */
.hero .btn-get-started:focus-visible {
  outline: 2px solid #d4455e;
  outline-offset: 2px;
}

/* -------------------------------------------------------------
   HERO: Responsive
------------------------------------------------------------- */

/* Tablet (iPad): Text oben, Bild darunter */
@media (max-width: 991.98px) {
  .hero { min-height: auto; }

  .hero-inner { flex-direction: column; }

  .hero-text {
    padding: 40px 24px;
    text-align: left;
    align-items: flex-start;
  }

  .hero-image {
    width: 100%;
    height: 320px;
    position: relative;
  }

  .hero-image img {
    position: absolute;
    object-position: center center;
  }

  /* Gradient nicht nötig wenn Bild unterhalb des Textes steht */
  .hero-image::before { display: none; }
}

/* Kleine Smartphones */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 16px; }
  .hero-image { height: 240px; }
}

/*--------------------------------------------------------------
# About Section (Stimme, Präsenz)
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 15px;
}

.about p .description-title { color: #be2541; }

.about p strong {
  color: #be2541;
  font-size: 1.2em;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #be2541; /* Häkchen in Akzentfarbe */
}

.about .content p:last-child { margin-bottom: 0; }

.about .content p,
.about .content ul li {
  font-size: 18px;
  line-height: 1.6;
}

/* Button in About-Sections */
.about .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .2px;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  background: #be2541;
  color: #fff;
  border-color: #be2541;
}

.about .btn-get-started:hover {
  background: #d4455e;
  color: #fff;
  border-color: #d4455e;
}

/*--------------------------------------------------------------
# Lampenfieber-Block
--------------------------------------------------------------*/
.lampenfieber-row {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.lampenfieber-left,
.lampenfieber-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Trennlinie zwischen den zwei Spalten */
.lampenfieber-left {
  position: relative;
  padding-right: 40px;
}

.lampenfieber-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: rgba(190, 37, 65, 0.25); /* dezentes Rot */
  border-radius: 1px;
}

.lampenfieber h3 {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 24px);
  color: #be2541;
  margin-bottom: 20px;
}

.lampenfieber p {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.lampenfieber-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(+12px);
}

/* Linie auf Mobile ausblenden */
@media (max-width: 992px) {
  .lampenfieber-left::after { display: none; }
  .lampenfieber-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* ================================
   Responsive Feintuning
================================= */

/* Kleine Smartphones */
@media (max-width: 480px) {
  .section-title p { font-size: 22px; }
}

/* Tablets */
@media (max-width: 768px) {
  .about .content p { font-size: 17px; }
}

/* Stimme & Präsenz: Bilder auf Tablet nicht zu groß */
@media (max-width: 991.98px) {
  .about img.img-fluid {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    display: block;
  }
}

/* Stimme & Präsenz: Bilder auf Smartphone noch kompakter */
@media (max-width: 480px) {
  .about img.img-fluid {
    max-height: 220px;
  }
}
