/* =======================
   Münchner Genusswelten
   TECH FUTURISTIC THEME CSS
   ======================= */

/* CSS RESET (normalize + basic reset) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1B2830 25%, #234E52 80%) fixed;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F3F0EA;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* tech_futuristic touch */
  background-repeat: no-repeat;
}
img {
  max-width: 100%; height: auto; display: block;
}
a {
  color: #7ED9FB;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #00f7d0;
}
ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px #0008;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
p, li, blockquote {
  font-size: 1.125rem;
}
blockquote {
  border-left: 4px solid #00f7d0;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #A67744;
  background: rgba(27, 40, 48,0.7);
}
blockquote span {
  color: #7ED9FB;
  font-size: 1rem;
  font-weight: 500;
}
hr {
  border: none;
  border-top: 1px solid #2d5767;
  margin: 32px 0;
}

/* --- BRAND COLORS AS CUSTOM PROPS (for fallback) --- */
:root {
  --color-primary: #234E52;
  --color-secondary: #A67744;
  --color-accent: #F3F0EA;
  --color-neon: #00f7d0;
  --color-bg: #1B2830;
  --color-header-bg: #223643;
  --color-shadow: 0 6px 32px 0 #00f7d033;
  --radius-card: 20px;
  --radius-btn: 32px;
}

/* =====================
   LAYOUT CONTAINERS
====================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  background: rgba(32, 49, 63, 0.88);
  border-radius: var(--radius-card);
  box-shadow: var(--color-shadow);
  padding: 32px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.text-section {
  background: rgba(34, 54, 67, 0.97);
  border-left: 4px solid var(--color-neon);
  box-shadow: var(--color-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #223643;
  border-radius: var(--radius-card);
  box-shadow: var(--color-shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative; /* for possible neon lines */
  transition: transform 0.25s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 32px 2px #00f7d033;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #F3F0EA;
  color: #223643;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: var(--radius-card);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px #4cbcde22, 0 2px 6px #2223;
  position: relative;
  border-left: 4px solid var(--color-neon);
}
.testimonial-card p {
  color: #223643;
  font-size: 1.15rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: #A67744;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.kontakt-karte {
  background: #233a45;
  color: #F3F0EA;
  border-radius: 18px;
  padding: 22px 20px;
  margin-top: 20px;
  box-shadow: var(--color-shadow);
  border-left: 3px solid var(--color-neon);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  color: #7ED9FB;
  font-size: 1rem;
}

/* =====================
   HEADER/NAVIGATION
====================== */
header {
  background: #223643;
  box-shadow: 0 6px 32px #02101c33;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  gap: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F3F0EA;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1.1rem;
  text-shadow: 0 2px 6px #0004;
  transition: background 0.23s, color 0.2s;
}
header nav a:hover, header nav a.active {
  color: #00f7d0;
  background: #1B2830;
}
header img {
  height: 48px;
  width: auto;
}

.cta-primary {
  background: linear-gradient(90deg,#00f7d0 90%,#2ad0ca 100%);
  color: #18303B;
  padding: 12px 34px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 1px 10px 0 #00f7d066, 0 0px 0px #223643;
  text-shadow: none;
  margin-left: 16px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  position: relative;
  z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2ad0ca;
  color: #08171d;
  box-shadow: 0 2px 16px #00f9e8bb, 0 1px 2px #223643;
  transform: translateY(-3px) scale(1.04);
}

/* ---- BURGER MENU ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #00f7d0;
  padding: 6px 12px;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1102;
  border-radius: 12px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #7ED9FB;
  background: #0C1318;
}

/* ---- MOBILE NAV: OVERLAY ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 100vw;
  width: 100vw; height: 100vh;
  background: rgba(21,32,44,0.98);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: transform 0.38s cubic-bezier(0.56,0.29,0.49,1.05);
  box-shadow: -12px 0 44px 0 #00f7d026;
  pointer-events: none;
}
.mobile-menu.open {
  left: 0;
  pointer-events: auto;
  transform: translateX(-100vw);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 14px 24px 10px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #00f7d0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 48px 32px 32px 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.21s, color 0.17s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #00f7d0;
  background: #232B35;
}

/* =====================
   FOOTER
====================== */
footer {
  background: #222f37;
  padding: 36px 0 22px 0;
  border-top: 1px solid #21434a;
  color: #8cbed8;
  margin-top: 48px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #A67744;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  transition: color 0.16s;
  padding: 4px 0;
}
footer nav a:hover, footer nav a:focus {
  color: #00f7d0;
}
footer img {
  height: 38px;
  margin-bottom: 14px;
}

/* =====================
   BUTTONS & LINKS
====================== */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: var(--radius-btn);
  background: #223643;
  color: #F3F0EA;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 10px 34px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.22s;
  box-shadow: 0 2px 10px 0 #00f7d021;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #00f7d0;
  color: #222f37;
  box-shadow: 0 4px 18px #00f7d033;
}

/* =====================
   LISTS & ICONS
====================== */
ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aeddff;
  font-size: 1.12rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
ul li img {
  height: 28px;
  width: 28px;
}

/* =====================
   INTERACTIVE ELEMENTS
====================== */
-- /* Animations ---*/
.cta-primary, .btn, .card, .testimonial-card, .mobile-nav a, .mobile-menu {
  transition: box-shadow 0.23s, transform 0.19s, background 0.18s, color 0.16s;
}

/* =====================
   COOKIE BANNER & MODAL
====================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3200;
  background: #234E52;
  color: #F3F0EA;
  box-shadow: 0 -2px 30px 0 #08171d58;
  padding: 22px 32px 18px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 4px solid #00f7d0;
  font-size: 1rem;
}
.cookie-banner p {
  max-width: 420px;
  margin-bottom: 5px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 8px #00f7d022;
}
.cookie-btn-accept {
  background: #00f7d0;
  color: #18303B;
}
.cookie-btn-accept:hover {
  background: #2ad0ca; color: #18303B;
}
.cookie-btn-reject {
  background: #A67744;
  color: #fff;
}
.cookie-btn-reject:hover {
  background: #926237; color: #fff;
}
.cookie-btn-settings {
  background: #223643;
  color: #00f7d0;
  border: 1px solid #00f7d0;
}
.cookie-btn-settings:hover {
  background: #00f7d0;
  color: #234E52;
}

/* Cookie Modal Popup */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27, 40, 48, 0.95);
  z-index: 3500;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #1B2830;
  color: #F3F0EA;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 48px #00f7d022;
  padding: 34px 28px 20px 28px;
  max-width: 430px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid #00f7d0;
}
.cookie-modal-content h2 {
  color: #00f7d0;
  margin-bottom: 6px;
}
.cookie-modal-content .cookie-category {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
}
.cookie-modal-content .cookie-category input[type=checkbox] {
  accent-color: #00f7d0;
  width: 22px; height: 22px;
}
.cookie-modal-content .cookie-category label {
  font-size: 1.1rem;
  color: #F3F0EA;
}
.cookie-modal-content .cookie-category.essential label {
  color: #A67744;
  font-weight: 600;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal-close {
  background: none;
  color: #00f7d0;
  border: none;
  font-size: 1.8rem;
  position: absolute;
  top: 20px; right: 44px;
  cursor: pointer;
}

/* =====================
   MEDIA QUERIES: RESPONSIVE
====================== */
@media (max-width: 992px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .section {padding-left: 10px; padding-right: 10px; }
  .testimonial-card, .card { padding: 18px 10px; }
  .content-wrapper {padding: 24px 8px;}
  .footer-contact { font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  header .container { flex-direction: row; gap: 4px; }
  nav {display: none;}
  .cta-primary {margin-left: 0;}
  /* burger visible */
  .mobile-menu-toggle { display: block; }
  /* Footer on column */
  footer .container { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-contact { margin-top: 0; }
  /* Text-image layouts */
  .text-image-section, .content-grid, .card-container { flex-direction: column; gap: 18px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 540px) {
  .content-wrapper, .section { padding: 10px 5px; }
  .footer-contact div img {height: 22px; width: 22px;}
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
}

/* =====================
   ACCESSIBILITY
====================== */
:focus {
  outline: 2px dotted #00f7d0;
  outline-offset: 2px;
}

/* =====================
   MISC/UTILITY CLASSES
====================== */
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.hide { display: none !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* SUPPORT: BUTTON INHERIT COLOR */
button, .cta-primary {
  -webkit-appearance: none;
  appearance: none;
}

/* ===========
   SCROLLBAR
============ */
::-webkit-scrollbar {
  width: 9px;
  background: #234E52;
}
::-webkit-scrollbar-thumb {
  background: #00f7d0;
  border-radius: 9px;
}

/* =====================
   FUTURISTIC/NEON EFFECTS
====================== */
.card, .content-wrapper, .cta-primary, .btn, header, .testimonial-card {
  box-shadow: 0 2px 18px #00f7d021, 0 0px 2px #223643;
}
.card:after, .testimonial-card:after {
  content:'';
  display:block;
  position:absolute;
  bottom:0; left:12px; right:12px;
  height:3px;
  background: linear-gradient(90deg,#00f7d0 0,#7ED9FB 100%);
  border-radius: 3px;
  opacity:0.27;
  pointer-events:none;
}
.card:hover:after, .testimonial-card:hover:after {
  opacity:0.45;
  filter: blur(1px);
}

/**** END of CSS ****/
