/* =====================================================
   Noble Crest Kulinarikforschung – Modern Bold CSS
   =====================================================
   Flexbox only. Responsive. Strong typography, bright colors, geometric shapes.
   Brand: #19304D (primary), #5AC8C0 (secondary), #F1F3F6 (accent)
   Fonts: Montserrat (display), Roboto (body)
   ===================================================== */

/* === CSS RESET & NORMALIZATION === */
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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  background: #F1F3F6;
  color: #19304D;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* --- Typography Scale --- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #19304D;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; font-weight: 700; }
h4 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.subheadline {
  font-size: 1.25rem;
  color: #5AC8C0;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
p, ul, ol, li, span {
  font-size: 1rem;
  color: #19304D;
}
strong {
  color: #19304D;
  font-weight: 700;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(25,48,77,0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ----- Cards & Lists (Flex Containers) ----- */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px; position: relative;
  border-radius: 20px;
  background: #F1F3F6;
  box-shadow: 0 3px 12px rgba(25,48,77,0.08);
  padding: 32px 28px;
  min-width: 260px; flex: 1 1 300px;
  display: flex; flex-direction: column; gap: 18px;
  transition: box-shadow 0.25s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(90,200,192,0.13), 0 3px 6px rgba(25,48,77,0.11);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .features > div, .feature-item {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(90,200,192,0.10);
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.feature-grid > div:hover, .features > div:hover, .feature-item:hover {
  box-shadow: 0 7px 24px rgba(25,48,77,0.12), 0 2px 6px rgba(90,200,192,0.09);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
}
.timeline {
  background: #F1F3F6;
  padding: 16px 20px;
  border-radius: 16px;
  margin-top: 18px;
  box-shadow: 0 2px 10px rgba(25,48,77,0.06);
}

.team-list {
  display: flex; flex-direction: column; gap: 24px;
}
.qualification-overview {
  margin-top: 24px;
  background: #F1F3F6;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(25,48,77,0.06);
}

/* ========== HERO SECTIONS ========== */
.hero {
  background: linear-gradient(96deg, #F1F3F6 54%, #5AC8C0 100%);
  padding: 60px 0 40px 0;
  border-radius: 0 0 48px 48px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 760px;
}

/* ========== BUTTONS ========== */
.cta-button, .cookie-accept, .cookie-reject, .cookie-settings, .mobile-menu-close {
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 32px;
  background: #5AC8C0;
  color: #19304D;
  box-shadow: 0 2px 10px rgba(90,200,192,0.15);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
  outline: none;
  margin-top: 18px;
}
.cta-button:hover, .cta-button:focus {
  background: #19304D;
  color: #F1F3F6;
  box-shadow: 0 5px 24px #19304d33, 0 2px 6px #5ac8c033;
  text-decoration: none;
}

/* Cookie banner buttons */
.cookie-accept { background: #5AC8C0; color: #19304D; }
.cookie-accept:hover { background: #19304D; color: #F1F3F6; }
.cookie-reject { background: #fff; color: #19304D; border: 2px solid #19304D; margin-left: 12px; }
.cookie-reject:hover { background: #19304D; color: #fff; }
.cookie-settings { background: #F1F3F6; color: #19304D; border: 2px solid #5AC8C0; margin-left: 12px; }
.cookie-settings:hover { background: #5AC8C0; color: #fff; }

/* ========== MAIN NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(25,48,77,0.08);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  margin-right: auto;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 0;
  transition: color 0.15s;
  color: #19304D;
  border-bottom: 2.5px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: #5AC8C0;
  border-bottom: 2.5px solid #5AC8C0;
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: #5AC8C0;
  color: #19304D;
  width: 48px; height: 48px;
  border-radius: 12px;
  font-size: 2rem;
  align-items: center; justify-content: center;
  border: none;
  z-index: 102;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #19304D;
  color: #fff;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100%; width: 100vw;
  background: #19304D;
  color: #fff;
  z-index: 1101;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
  box-shadow: 0 5px 28px #19304d99;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2rem;
  background: #F1F3F6;
  color: #19304D;
  padding: 10px 18px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover { background: #5AC8C0; color: #fff; }
.mobile-nav {
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 12px 0;
  text-align: left;
  border-bottom: 2.5px solid transparent;
  transition: color 0.15s, border-bottom 0.15s, background 0.12s;
  border-radius: 8px;
}
.mobile-nav a:hover {
  color: #5AC8C0;
  background: #19304D22;
  border-bottom: 2.5px solid #5AC8C0;
}

/* === FOOTER === */
footer {
  background: #19304D;
  color: #fff;
  margin-top: 70px;
  padding: 40px 0 0 0;
}
footer .container {
  flex-direction: column;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #5AC8C0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom 0.13s;
}
.footer-nav a:hover { color: #fff; border-bottom: 2px solid #5AC8C0; }
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  font-size: 1rem;
  margin-bottom: 32px;
  align-items: center;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}
footer img { height: 1.2em; width: auto; }

/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F1F3F6;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(25,48,77,0.09);
  color: #19304D;
}
.testimonial-card p {
  color: #19304D;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #19304D;
  font-weight: 700;
  font-size: 1rem;
}

/* ========== CONTACT INFO & MAP ========== */
.contact-info-full {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-full div { font-size: 1.05rem; display: flex; align-items: center; gap: 12px; }
.map-section {
  margin-bottom: 18px;
  background: #F1F3F6;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(90,200,192,0.07);
  font-weight: 600;
  color: #19304D;
}

/* ========== RESPONSIVE CSS ========== */
@media (max-width: 1080px) {
  .feature-grid, .features, .footer-contact { flex-direction: column; gap: 20px; }
  .main-nav { gap: 20px; }
}
@media (max-width: 860px) {
  h1 { font-size: 2rem; }
  .hero .content-wrapper { max-width: 600px; }
  .card, .feature-grid > div, .features > div { min-width: 200px; }
}
@media (max-width: 768px) {
  .container { padding: 0 11px; }
  header .container { gap: 12px; padding-top: 14px; padding-bottom: 14px; }
  .main-nav, .cta-button { display: none; }
  .mobile-menu-toggle {
    display: flex;
    position: relative;
  }
  .footer-contact { flex-direction: column; gap: 14px; align-items: flex-start; }
  .section { padding: 28px 8px; margin-bottom: 44px; }
  .contact-info-full { flex-direction: column; gap: 10px; }
  .content-grid, .feature-grid, .features { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
}
@media (max-width: 540px) {
  .hero { padding: 38px 0 20px 0; border-radius: 0 0 24px 24px; }
  .section { padding: 18px 4px; }
  .cta-button { padding: 10px 18px; font-size: 1rem; }
}

/* ========== LISTS ========== */
ul, ol {
  margin-left: 0;
  margin-bottom: 18px;
  padding-left: 18px;
}
ul li, ol li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
}
ul li:before {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  background: #5AC8C0;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 7px;
}
.timeline ul li:before {
  background: #19304D;
}

/* ========== MICRO INTERACTIONS & EFFECTS ========== */
.card, .feature-grid > div, .feature-item, .cta-button, .cookie-accept, .cookie-reject, .cookie-settings, .mobile-menu-close {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, border 0.13s;
}
.card:hover, .feature-grid > div:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.018);
}
.cta-button:active {
  background: #5AC8C0;
  color: #19304D;
  box-shadow: 0 1px 5px #19304d33;
}
.main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus, .cta-button:focus {
  outline: 3px solid #5AC8C0;
  outline-offset: 2px;
}

/* ======================= COOKIE CONSENT BANNER ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1700;
  background: #19304D;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 24px 18px 24px;
  box-shadow: 0 -2px 16px #19304d19;
  gap: 24px;
  animation: cookiebanner-in 0.6s cubic-bezier(.69,-0.01,.32,1.07);
}
@keyframes cookiebanner-in {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  max-width: 780px;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 10px 14px 10px;
  }
  .cookie-banner-content { font-size: 1rem; }
}

/* ================================== COOKIE MODAL ================================== */
.cookie-modal-overlay {
  display: none;
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(25,48,77,0.77);
  z-index: 1800;
  align-items: center; justify-content: center;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #19304D;
  border-radius: 22px;
  max-width: 400px;
  min-width: 312px;
  padding: 34px 24px 28px 24px;
  box-shadow: 0 8px 48px #19304d45, 0 2px 8px #5ac8c040;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiemodal-in 0.37s cubic-bezier(.69,-0.01,.32,1.07);
}
@keyframes cookiemodal-in {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #5AC8C0;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #5AC8C0;
  width: 18px; height: 18px;
}
.cookie-category--essential input[type="checkbox"] { accent-color: #19304D; }
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 11px;
  margin-top: 12px;
  justify-content: flex-end;
}

/* ========== GENERAL FORMS ========= */
input[type="text"], input[type="email"], textarea {
  border-radius: 10px;
  border: 2px solid #19304D44;
  padding: 11px 12px;
  font-size: 1rem;
  width: 100%;
  transition: border 0.14s, box-shadow 0.14s;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #5AC8C0;
  box-shadow: 0 2px 12px #5ac8c066;
  outline: none;
}

/* ================= CUSTOM SCROLLER ================= */
/* Chrome, Edge, Safari */
::-webkit-scrollbar { width: 12px; background: #F1F3F6; }
::-webkit-scrollbar-thumb {
  background: #5AC8C0cc;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: #19304Dbb; }

/* Firefox */
* { scrollbar-width: thin; scrollbar-color: #5AC8C0 #F1F3F6; }

/* ========== UTILITY ========== */
.hidden { display: none !important; }
.center { justify-content: center; align-items: center; }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }

/* ========== GEOMETRIC DECORATIVE SHAPES ========== */
/* (Decorative only, not for content, e.g. geometric circles) */
.geometric-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
}

/* ========== END OF CSS ========== */
