/* CSS Reset & Normalize */
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, 
main, 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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section{
  display:block;
}
body{
  line-height:1.5;
  background: #FFF7ED;
  color: #252B33;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol,ul{
  list-style:none;
  padding-left:0;
}
a{
  text-decoration:none;
  color:inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #F3BC56;
  outline-offset: 2px;
}

/* Custom Properties for Colors */
:root {
  --color-background: #FFF7ED;
  --color-primary: #252B33;
  --color-secondary: #F3BC56;
  --color-accent: #FFFFFF;
  --color-highlight: #5A80F8;
  --color-alert: #EB5757;
  --color-link: #F3BC56;
  --color-card-bg: #FFFFFF;
  --color-card-shadow: rgba(37, 43, 51, 0.08);
  --radius-lg: 2.2rem;
  --radius-md: 22px;
  --radius-sm: 10px;
}

body, html {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--color-background);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography */
h1, .h1 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 10px;
}
p {
  font-size: 1.06rem;
  color: #393939;
  margin-bottom: 12px;
}
strong { font-weight: bold; color: var(--color-primary); }

ul li, ol li {
  font-size: 1rem;
  color: #393939;
  margin-bottom: 10px;
  padding-left: 0.5em;
  position: relative;
}
ul li:before {
  content: '•';
  color: var(--color-secondary);
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: middle;
}

.text-section {
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0;
  color: var(--color-primary);
}

/* Artistic Fonts for Hero/Display */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');


/* Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* FLEXBOX Patterns | Artistic Layouts */
.grid, .card-container, .card-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.card-container { gap: 24px; }
.card-grid { gap: 24px; }
.content-grid { gap: 20px; justify-content: space-between; }

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-card-bg);
  box-shadow: 0 4px 24px var(--color-card-shadow);
  border-radius: var(--radius-md);
  border-left: 12px solid var(--color-secondary);
  min-height: 100px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(37, 43, 51, 0.16);
}
.testimonial-card p {
  color: #24202b;
  font-style: italic;
  flex: 1 1 0%;
}
.testimonial-card strong {
  color: var(--color-primary);
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}
.testimonial-card img {
  height: 1.5em;
  width: auto;
  vertical-align: middle;
  margin-right: 2px;
  filter: drop-shadow(0 2px 6px rgba(37,43,51,0.04));
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card-bg);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(37,43,51,0.06);
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 180px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(243,188,86,0.17);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(37,43,51,0.06);
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(243,188,86,0.13);
  transform: scale(1.02) rotate(0.5deg);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px;
}

/* Header & Navigation */
header {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 0;
  position: relative;
  min-height: 70px;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

header img[alt="Frankfurt Genießerwerk"] {
  height: 48px;
  width: auto;
  margin-right: 20px;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(243,188,86,0.06));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  padding: 8px 5px;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.21s, border-color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

.cta-button {
  background: var(--color-secondary);
  color: #252B33;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 28px;
  margin-left: 28px;
  box-shadow: 0 2px 12px rgba(243,188,86, 0.09);
  font-size: 1.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.19s, box-shadow 0.17s;
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #FFD26C;
  color: #252B33;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 28px rgba(243,188,86,0.29);
}

/* Artistic menu burger */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  padding: 8px 13px;
  margin-left: 18px;
  transition: background 0.18s, box-shadow 0.17s, transform 0.22s;
  box-shadow: 0 2px 7px rgba(37,43,51,0.11);
  border: none;
  z-index: 2002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffd26c;
  color: #222;
  transform: scale(1.06) rotate(-7deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; 
  width: 100vw; height: 100vh;
  background: rgba(37,43,51, 0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  padding-top: 70px;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMobileNav 0.25s cubic-bezier(0.77,0,0.175,1);
}
@keyframes slideInMobileNav {
  from { transform: translateX(100vw); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2.2rem;
  background: none;
  color: var(--color-secondary);
  border: none;
  z-index: 2100;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD26C;
  transform: rotate(10deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.43rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1.6px;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.17s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  background: rgba(243,188,86,0.09);
}

/* Responsive NAV & Header */
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .cta-button {
    padding: 11px 16px;
    margin-left: 8px;
    font-size: 1rem;
  }
}
@media (max-width: 880px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .main-nav a {
    padding: 8px 0;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 10px;
  }
}

/* Footer */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 48px 0 24px 0;
  position: relative;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s, text-decoration 0.13s;
  text-decoration: underline dotted transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline solid var(--color-secondary) 2px;
}
.footer-contact {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-contact img {
  height: 1.2em;
  width: auto;
  vertical-align: middle;
  margin: 0 2px 0 0;
}
footer p {
  font-size: 0.98rem;
  margin-bottom: 5px;
}

/* HERO Artistic Section */
section .h1, section h1 {
  font-size: 2.8rem;
  color: var(--color-primary);
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
  text-shadow: 0 2px 8px rgba(243,188,86,0.10);
}

/* CARD & Feature Styles */
.grid > div, .features > div {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(243,188,86,0.11), 0 0.5px 8px var(--color-card-shadow);
  padding: 32px 24px 24px 24px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.16s, transform 0.19s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.grid > div:hover {
  box-shadow: 0 10px 40px #f3bc5670;
  transform: translateY(-4px) scale(1.035); 
}
.grid img {
  margin-bottom: 12px;
  height: 46px;
  width: auto;
  filter: drop-shadow(0 3px 8px #F3BC5685) saturate(1.8);
}
.grid h3 {
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.3px;
  color: var(--color-primary);
  font-size: 1.15rem;
}
.grid p {
  margin-bottom: 12px;
  color: #404034;
}
.grid a {
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 2px;
  transition: color 0.18s, border-bottom 0.16s;
}
.grid a:hover {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-primary);
}

/* Special overrides for .card and .feature-item spacing */
.card, .feature-item, .grid > div {
  margin-bottom: 20px !important;
}
.card-container, .card-grid, .features, .content-grid, .grid {
  gap: 24px !important;
}

/* Artistic Details (fun brush/underline for h2) */
h2, .h2 {
  position: relative;
  z-index: 1;
}
h2::after, .h2::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 14px 0 25px 0;
  z-index: -1;
  opacity: 0.60;
}
/* Unique artistic visual underlines for hero h1 */
h1::after {
  content: '';
  display: block;
  margin-top: 13px;
  width: 80px;
  height: 14px;
  background: linear-gradient(90deg, #F3BC56 0%, #F9E4C1 100%);
  border-radius: 20px 16px 26px 20px;
  opacity: 0.4;
}

/* Links  */
a {
  color: var(--color-link);
  transition: color 0.15s;
}
a:hover, a:focus {
  color: var(--color-highlight);
  text-decoration: underline;
}

/* Responsive Sections */
@media (max-width: 900px) {
  .card-grid, .grid, .features, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
  .grid, .content-grid, .features, .card-container {
    gap: 20px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 478px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.25rem; }
}

/* Micro-Interactions & Transitions */
.card, .feature-item, .testimonial-card, .cta-button,
.grid > div, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: all 0.18s cubic-bezier(.42,0,.58,1);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #252B33ee;
  color: #fff;
  padding: 22px 18px 24px 18px;
  box-shadow: 0 -4px 34px rgba(37,43,51,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 4000;
  font-size: 1.09rem;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 22px;
  margin-right: 6px;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.16s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFD26C;
}
.cookie-banner .reject {
  background: #EB5757;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #c93232;
}
.cookie-banner .settings {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Cookie Consent Modal Popup */
.cookie-modal-wrapper {
  position: fixed;
  top: 0; left: 0; 
  width: 100vw; height: 100vh;
  background: rgba(37, 43, 51, 0.68);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s;
}
.cookie-modal-wrapper.show {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: var(--color-card-bg);
  color: #252B33;
  border-radius: var(--radius-md);
  max-width: 384px;
  width: 94vw;
  padding: 36px 28px 24px 28px;
  box-shadow: 0 6px 32px rgba(37,43,51,0.22);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.07rem;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.35rem;
  background: none;
  color: var(--color-secondary);
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: color 0.18s, transform 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fad087;
  transform: scale(1.18) rotate(10deg);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--color-secondary);
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}
.cookie-category .always-on {
  font-size: 0.92rem;
  color: #828282;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .accept, .cookie-modal .reject {
  min-width: 95px;
}

/* Utility Classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.center {
  text-align: center !important;
  align-items: center !important;
}

/* Responsive Cookie Banner */
@media (max-width: 540px) {
  .cookie-banner {
    font-size: 0.96rem;
    padding: 13px 7px 16px 7px;
  }
  .cookie-modal {
    padding: 25px 7px 18px 7px;
    font-size: 0.98rem;
  }
}

/* Artistic Details - decorative SVG for backgrounds (example dots for cards) */
.card::before, .grid > div::before {
  content: '';
  position: absolute;
  right: -42px;
  top: -30px;
  width: 94px;
  height: 94px;
  background: url('data:image/svg+xml;utf8,<svg fill="none" width="94" height="94" xmlns="http://www.w3.org/2000/svg"><circle fill="%23F3BC56" fill-opacity="0.12" cx="47" cy="47" r="47"/></svg>') no-repeat center/contain;
  pointer-events: none;
  opacity: 0.44;
  z-index: 0;
}

/* Rich Lists for About/Contact */
.text-section ul li {
  margin-bottom: 8px;
  padding-left: 1.5em;
}
.text-section ul li:before {
  content: '⦿';
  color: var(--color-secondary);
  font-size: 1em;
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 3px;
}

.text-section ul li img {
  margin-right: 6px;
  vertical-align: middle;
  height: 1.3em;
  width: auto;
}

section ul {
  padding-left: 0;
  margin-bottom: 8px;
}

@media (min-width: 601px) {
  .testimonial-card {
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; padding: 14px; gap: 8px; }
  .grid > div, .feature-item, .card {
    min-width: unset;
    padding: 18px 10px 14px 10px;
  }
  section, .section {
    margin-bottom: 25px;
    padding: 18px 2px;
  }
}

/* Visual Hierarchy for Headings on Mobile */
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.6rem; margin-bottom: 13px; }
  h2, .h2 { font-size: 1.12rem; margin-bottom: 10px; }
  h3, .h3 { font-size: 1rem; margin-bottom: 7px; }
}

/* Hide decorative bg for cards on mobile for less clutter */
@media (max-width: 420px) {
  .card::before, .grid > div::before { display: none; }
}

/* Misc helpers */
.hide {
  display: none !important;
}

/* ============ End of CSS ============ */
