/* ------------------------------------------------------
   CSS RESET & FONT IMPORTS
------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #111;
  min-height: 100vh;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.25em;
}
a {
  color: #0E2A47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E3A700;
  outline: none;
}
button, .cta-primary {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 32px;
}

/* ------------------------------------------------------
   TYPOGRAPHY & HEADINGS
------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #0E2A47;
  line-height: 1.18;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; letter-spacing: -1.5px; }
h2 { font-size: 1.5rem; margin-bottom: 12px; }
h3 { font-size: 1.125rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #183045;
  margin-bottom: 12px;
}
blockquote {
  color: #0E2A47;
  background: #F6F6F6;
  border-left: 4px solid #E3A700;
  padding: 12px 22px;
  font-style: italic;
  border-radius: 8px;
  margin-bottom: 12px;
}
cite {
  display: block;
  font-size: 0.9em;
  color: #888;
  margin-top: 4px;
  font-style: normal;
}

/* ------------------------------------------------------
   CONTAINER & LAYOUT
------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 24px rgba(26,27,51,0.09), 0 1.4px 3.5px rgba(227,167,0,0.07);
  margin-bottom: 20px;
  padding: 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 2px 28px rgba(14, 42, 71, 0.18), 0 1.8px 10px rgba(227,167,0,0.13);
  transform: translateY(-4px) scale(1.03);
  z-index: 1;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 0 14px rgba(14, 42, 71, 0.08);
  min-width: 220px;
}

/* Feature box styles for .feature-grid and .features */
.features .content-wrapper, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.feature-grid > div, .features .content-wrapper > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 14px rgba(14, 42, 71, 0.07);
  padding: 20px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.24s, transform 0.17s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid > div:hover, .features .content-wrapper > div:hover {
  box-shadow: 0 4px 22px rgba(227, 167, 0, 0.12);
  transform: translateY(-2px) scale(1.03);
}

/* ------------------------------------------------------
   HEADER & NAV
------------------------------------------------------ */
header {
  width: 100%;
  padding: 0 0 0 0;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(14,42,71,0.09);
  z-index: 90;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #0E2A47;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #E3A700;
  color: #0E2A47;
}
.cta-primary {
  background: linear-gradient(90deg, #E3A700 0%, #F6F6F6 100%);
  color: #0E2A47;
  padding: 12px 32px;
  font-size: 1.1rem;
  border-radius: 28px;
  box-shadow: 0 3px 18px rgba(227, 167, 0, 0.12);
  margin-left: 18px;
  display: inline-block;
  transition: background 0.25s, box-shadow 0.23s, color 0.18s;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #0E2A47;
  color: #fff;
  box-shadow: 0 8px 32px rgba(14, 42, 71, 0.15);
}

/* Mobile menu toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 25px;
  background: #E3A700;
  color: #0E2A47;
  font-size: 2rem;
  padding: 8px 18px;
  border-radius: 50%;
  z-index: 200;
  border: none;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.mobile-menu-toggle:active {
  transform: scale(0.93);
}
/* Mobile Menu Overlay Styles */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(14,42,71,0.99);
  z-index: 3300;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.6,.13,.26,.98);
  overflow-y: auto;
  padding: 48px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  color: #E3A700;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  z-index: 3400;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  padding: 14px 8px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3A700;
  color: #0E2A47;
}

/* Hide main nav on mobile, show hamburger */
@media (max-width: 991px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ------------------------------------------------------
   HERO SECTION
------------------------------------------------------ */
.hero {
  width: 100%;
  background: linear-gradient(90deg, #F6F6F6 65%, #E3A700 120%);
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
  box-shadow: 0 4px 36px rgba(14,42,71,0.09);
  margin-bottom: 60px;
  padding: 56px 0 44px 0;
  min-height: 280px;
  display: flex;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #0E2A47;
  margin-bottom: 16px;
  font-size: 2.3rem;
  margin-top: 0;
}
.hero p {
  color: #223044;
  font-size: 1.17rem;
  margin-bottom: 26px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.hero .cta-primary {
  margin-top: 8px;
}

/* Browse Categories (Rezepte) */
.browse-categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.06rem;
  color: #0E2A47;
  margin: 12px 0 24px 0;
}
.browse-categories-nav a {
  color: #0E2A47;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.17s;
}
.browse-categories-nav a:hover {
  color: #E3A700;
}

/* ------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------ */
.testimonials {
  background: #F6F6F6;
  border-radius: 48px;
  margin-bottom: 60px;
  padding: 40px 20px 32px 20px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(14,42,71,0.08);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 260px;
  flex: 1 1 320px;
  position: relative;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px rgba(227, 167, 0, 0.12);
  transform: translateY(-3px) scale(1.03);
}
.testimonial-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E3A700;
  object-fit: cover;
  margin-bottom: 8px;
}
.testimonial-card blockquote {
  color: #111;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 6px;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card cite {
  color: #454545;
  font-size: .96rem;
  font-style: normal;
}
.testimonial-card span {
  font-size: 1.1rem;
  color: #E3A700;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 2px;
  display: block;
}

/* ------------------------------------------------------
   FOOTER
------------------------------------------------------ */
footer {
  background: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -1px 20px 0 rgba(227, 167, 0, 0.06);
  padding: 36px 0 22px 0;
  width: 100%;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #0E2A47;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: color 0.15s, background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #E3A700;
  background: #F6F6F6;
}
footer .contact-info {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.96rem;
  color: #313131;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: text-bottom;
  opacity: .85;
}
footer .social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(90deg, #E3A700 0%, #F6F6F6 100%);
  border-radius: 50%;
  transition: background 0.16s, box-shadow 0.19s;
  box-shadow: 0 2px 10px rgba(227, 167, 0, 0.14);
}
footer .social-links a:hover {
  background: #0E2A47;
}
footer .social-links img {
  width: 22px;
  height: 22px;
  filter: grayscale(0.2);
}

/* ------------------------------------------------------
   TEXT SECTIONS
------------------------------------------------------ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul, .text-section ol {
  margin-bottom: 10px;
}

/* ------------------------------------------------------
   SHARE BUTTONS ON THANK YOU PAGE
------------------------------------------------------ */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.share-buttons span {
  color: #0E2A47;
  font-size: 1rem;
}
.share-buttons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #E3A700 0%, #F6F6F6 100%);
  transition: background 0.17s, box-shadow 0.13s;
  box-shadow: 0 2px 8px rgba(227,167,0,0.13);
}
.share-buttons a:hover {
  background: #0E2A47;
}

/* ------------------------------------------------------
   ADDRESS / BLOCKS
------------------------------------------------------ */
.address-block, .phone-block, .email-block, .opening-hours {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.address-block img, .phone-block img, .email-block img, .opening-hours img {
  width: 22px;
  height: 22px;
}

/* ------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
------------------------------------------------------ */
@media (max-width: 991px) {
  .container { padding: 0 14px; }
  header .container { padding-top: 12px; padding-bottom: 12px; }
  .hero {border-radius: 30px; padding: 32px 0;}
  .testimonials { padding: 22px 10px 18px 10px; border-radius: 28px;}
  footer {border-radius: 16px 16px 0 0; padding: 22px 0 12px 0;}
  footer .container {gap: 16px; flex-wrap: wrap;}
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
  .hero { padding: 22px 0 18px 0; border-radius: 0; min-height: 150px; }
  .section, .testimonials { padding: 22px 8px 10px 8px !important; }
  .features .content-wrapper, .feature-grid, .content-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature-grid > div, .features .content-wrapper > div, .testimonial-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    padding: 16px 10px;
  }
  .share-buttons { gap: 12px; font-size: 0.98rem; }
  .address-block, .phone-block, .email-block, .opening-hours { flex-direction: row; gap: 10px; }
  .container { padding: 0 4px; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* Content wrappers for secondary columns (regional lists, etc) */
.regional-specialties-list {
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

/* ------------------------------------------------------
   COOKIE BANNER & COOKIE SETTINGS MODAL
------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #0E2A47;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding: 20px 26px 20px 26px;
  box-shadow: 0 -2px 18px rgba(0,0,0,0.11);
  z-index: 5000;
  font-size: 1rem;
  animation: cookiebanner-slidein 0.40s cubic-bezier(.6,.13,.26,.98);
}
@keyframes cookiebanner-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  max-width: 540px;
  line-height: 1.55;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 135px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  margin: 0;
  background: #E3A700;
  color: #0E2A47;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
  box-shadow: 0 1.5px 5px rgba(227,167,0,0.13);
  cursor: pointer;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #0E2A47;
}
.cookie-banner .cookie-settings {
  background: #0E2A47;
  color: #E3A700;
  border: 1.5px solid #E3A700;
}
.cookie-banner .cookie-settings:hover {
  background: #E3A700;
  color: #0E2A47;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 8px 10px 8px;
    font-size: .96rem;
  }
  .cookie-banner__actions {gap: 12px;}
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14,42,71,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 4px 44px rgba(14,42,71,0.11);
  color: #0E2A47;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookiemodal-in 0.33s cubic-bezier(.65,.17,.18,1.02);
  position: relative;
}
@keyframes cookiemodal-in {
  from { transform: translateY(36px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  font-size: 1.27rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-size: 1rem;
  flex: 1 1;
  color: #0E2A47;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal input[type='checkbox'] {
  width: 21px;
  height: 21px;
  accent-color: #E3A700;
}
.cookie-modal .essential-label {
  color: #666;
  font-size: 0.97rem;
  opacity: 1;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 12px;
  top: 11px;
  font-size: 1.6rem;
  background: none;
  color: #E3A700;
  border: none;
  cursor: pointer;
}
.cookie-modal button {
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  background: #E3A700;
  color: #0E2A47;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal button:hover { background: #0E2A47; color: #fff; }

/* ------------------------------------------------------
   UTILS & MICROINTERACTIONS
------------------------------------------------------ */
::-webkit-scrollbar { width: 12px; background: #F6F6F6; }
::-webkit-scrollbar-thumb { background: #E3A700; border-radius: 6px; }

/* Subtle animations for cards and buttons */
.card, .feature-grid > div, .features .content-wrapper > div, .testimonial-card {
  transition: box-shadow 0.23s cubic-bezier(.4,.13,.23,1), transform 0.17s;
}
.cta-primary, .cookie-banner button, .cookie-modal button {
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.12s;
}
.cta-primary:active, .cookie-banner button:active, .cookie-modal button:active {
  transform: scale(0.96);
}

/* ------------------------------------------------------
   SPECIAL: INTERACTION STATE VISIBLE
------------------------------------------------------ */
a:focus, .cta-primary:focus, .mobile-nav a:focus, footer nav a:focus, .cookie-banner button:focus {
  outline: 2px dotted #E3A700;
  outline-offset: 2px;
}

/* ------------------------------------------------------
   END OF CSS
------------------------------------------------------ */