/* =========================================================
   CUSTOM OVERRIDES — TEMPLATE SAFE
   komplette Neuimplementation
========================================================= */

/* =========================================================
   LOCAL FONTS — POPPINS (WOFF2)
   Pfad: assets/css/fonts/
========================================================= */

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   BASE TYPOGRAPHY — TEMPLATE NAH
========================================================= */

body {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  color: #2b2b2b;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

button,
.button,
.menu-btn,
.title-checkout,
.checkout-order {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/* =========================================================
   HEADER — STABIL (kein Transform!)
========================================================= */

#site-header,
.header,
.header.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  transform: none !important; /* KRITISCH */
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 1020;
}
/* Scroll-Zustand */
#site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Navbar NIE selbst färben */
#site-header .navbar {
  background: transparent;
  box-shadow: none;
}

/* Branding */
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  display: block;
}

.brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #363636;
  letter-spacing: 0.02em;
}

.brand-accent {
  color: #f29f05;
}

/* =========================================================
   HERO — NUR FEINSCHLIFF
========================================================= */

.hero-section h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-section p {
  max-width: 520px;
}

/* =========================================================
   MENU / MODAL — FINAL, FEHLERSICHER
========================================================= */

/* WICHTIG:
   - KEIN display:none
   - KEIN parent-transform
   - nur translateX
*/

.menu-wrap {
  position: fixed;
  top: 0;
  right: 0;

  width: 100%;
  max-width: 100%;
  height: 100%;

  /*  background: #fff; */
  z-index: 1100;

  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* INFO MODAL */
body.menu-info.active .menu-wrap--info {
  transform: translateX(0);
}
/* CLOSED (WICHTIG!) */
body:not(.menu-info) .menu-wrap--info {
  transform: translateX(100vw);
}

/* PRODUCT MODAL */
body.menu-product.active .menu-wrap--product {
  transform: translateX(0);
}

/* CLOSED (WICHTIG!) */
body:not(.menu-product) .menu-wrap--product {
  transform: translateX(100vw);
}

/* INNER */
.menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

/* =========================================================
   MODAL CONTENT FIXES
========================================================= */

.checkout-order {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 24px;
}

.menu-wrap h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* =========================================================
   DISH CARDS — STABIL
========================================================= */

.dish {
  display: flex;

  position: relative;

  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
/* Default: Produkt-Grid img*/
.dish > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

/* Modal: Produktdetail */
.menu-wrap--product .dish > img {
  aspect-ratio: auto;
  max-height: 60vh;
  object-fit: contain;
}

.dish-foods {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.dish-foods h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-foods .price {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.dish .greekeat {
  position: absolute;
  top: 4%;
  left: 6%;
}

.dish .greekeat a {
  padding: 5px 15px;
  border-radius: 10px;
  color: white;
  margin-right: 10px;
  font-weight: 400;
  font-size: 14px;
}

.menu-inner .price span {
  padding-top: 0px;
}

.price span {
  padding-top: 0;
}

.dish-foods .price h2 {
  font-size: 22px;
  margin: 0;
}

/* =========================================================
   GRID SAFETY
========================================================= */

.tabs .row,
.lunch-section .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.tabs .col-xl-3,
.tabs .col-lg-4,
.tabs .col-md-6,
.lunch-section .col-xl-3,
.lunch-section .col-lg-4,
.lunch-section .col-md-6 {
  display: flex;
}

.col-xl-3 > .dish,
.col-lg-4 > .dish,
.col-md-6 > .dish {
  width: 100%;
}
/* =========================================================
   Abstände Überschrift col-lg-3 col-md-6 col-sm-12 claim-col
========================================================= */

@media (min-width: 992px) {
  .counters-section .claim-col {
    padding-right: 0;
  }
}

/* =========================================================
   Zusätzliche CSS-Klasse, <ul> -Element für .blog-list li, damit Bullets untereinander
========================================================= */
.blog-list.full-width li {
  width: 100%;
}

.blog-list li:before {
  /* ... deine anderen Styles ... */
  top: 18px; /* Justiere diesen Wert, bis er perfekt zur ersten Zeile passt */
  transform: none; /* Transform wird hier nicht mehr benötigt */
}

/* =========================================================
  Tabs Barrierefreiheit (Fokus = Aktiv-Style)
========================================================= */

/* 1. Den blauen Standard-Ring entfernen */
.nav-pills .nav-link:focus,
.nav-pills .nav-link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* 2. Den Fokus-Zustand optisch wie den aktiven Zustand hervorheben */
/* Hier nehmen wir an, dass dein Orange-Effekt über einen Border-Bottom läuft */
.nav-pills .nav-link:focus-visible {
  border-bottom: 2px solid #ff9900; /* Dein Marken-Orange */
  color: #ff9900; /* Optional: Textfarbe anpassen */
  transition: border-bottom 0.2s ease-in-out;
}

/* =========================================================
  Kunden-Stimmen
========================================================= */
@media (max-width: 576px) {
  .kunde h6 {
    margin-top: 14px;
  }
}

.author-text .kunde {
  margin-top: 10px;
  margin-left: 24px;
}

.kunde {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.kunde img {
  border-radius: 60px;
  margin-right: 30px;
  width: auto;
}

.author-text .kunde img {
  margin-top: -40px;
  padding-right: 0;
  margin-right: 30px;
  box-shadow: 0px -7px 6px 4px rgb(161 151 151 / 15%);
  -webkit-box-shadow: 0px -7px 6px 4px rgb(161 151 151 / 15%);
  -moz-box-shadow: 0px -7px 6px 4px rgb(161 151 151 / 15%);
}

/* =========================================================
  reviews-img Frame-Lösung
========================================================= */
.testimonial-image-frame {
  max-width: 680px;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  border-radius: 18px;
}

.reviews-img {
  width: 100%;
  /*  height: 100%; */
}

.reviews-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* =========================================================
   BUTTONS
========================================================= */
.nice-select-one {
  display: flex;
  gap: 18px; /* ← DAS ist der Abstand */
  flex-wrap: wrap; /* optional, für kleinere Screens */
}

.button-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 55px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1; /* WICHTIG */
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;

  padding: 0; /* KEIN extra Offset */

  color: #fff;
  background-color: #f29f05;
  border-radius: 14px;
  text-decoration: none;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.button-2:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   FOOTER — UNTOUCHED LOOK
========================================================= */

.site-footer {
  padding: 40px 0 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a {
  color: inherit;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  margin-top: 30px;
  font-size: 14px;
  color: #787878;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand .brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.04em;
}

.social-media {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .social-media {
    flex-direction: column;
  }
}

/* =========================================================
   FOOTER – CLEAN & TEMPLATE-NAH
   ========================================================= */

/* Footer text color */
.site-footer {
  padding: 40px 0 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer a {
  color: inherit;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  margin-top: 30px;
  font-size: 14px;
  color: #787878;
}

.footer-legal a {
  color: #787878;
  padding-left: 20px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #c8c3c3;

  text-decoration: none;
}

/* Spalten gleichmäßig, nichts aushebeln */
.site-footer .row {
  row-gap: 28px;
}

/* CONTACTS – Überschrift + Linie */
.site-footer .menu.contacts h4 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.site-footer .menu.contacts h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

/* Kontaktzeilen - margin-bottom: 10px; */
.site-footer .menu.contacts a,
.site-footer .footer-location {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Alte Linie unter Location entfernen */
.site-footer .footer-location {
  border-bottom: none;
  padding-bottom: 0;
}

/* Footer logo */
.footer-logo {
  max-height: 55px;
}

/* Icons ruhig halten */
.site-footer i {
  font-size: 18px;
  opacity: 0.85;
}
/* Icons Größe anpassen */
ul.social-media li a i {
  height: 42px;
  width: 42px;
  border-radius: 42px;
  border: 0px;
}

/* Social Media – immer horizontal */
.site-footer .social-media {
  display: flex;
  gap: 14px;
  padding: 0;
}

.site-footer .social-media li {
  list-style: none;
  font-size: 38px; /* Sweet Spot */
}

/* Social Icons rechts halten */
.site-footer .footer-social .social-media {
  justify-content: flex-end;
}

/* Footer Bottom */
.site-footer .footer-two {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: #888;
}

/* Mobile: zentriert, logisch */
@media (max-width: 768px) {
  .site-footer .social-media {
    justify-content: center;
  }

  .site-footer .menu.contacts a,
  .site-footer .footer-location {
    justify-content: center;
  }

  .site-footer .social-media {
    justify-content: center;
  }
}

/* =========================================================
   SCROLL TOP
========================================================= */

#scrollTopBtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: #f29f05;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 1040;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

#scrollTopBtn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: #d98f04;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}
