/* ========================================================
   Lumora Peak Kulinarikforschung – Scandinavian Clean CSS
   ======================================================== */
/* RESET & BASELINE */
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 {
  box-sizing: border-box;
  height: 100%;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;border:0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #24334A;
  background: #F3EFE7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #24334A;
  text-decoration: none;
  transition: color 0.2s;
}
strong, b { font-weight: bold; }
em, i { font-style: italic; }
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
:root {
  --primary: #24334A;
  --secondary: #71B9C3;
  --accent: #F3EFE7;
  --white: #fff;
  --shadow: 0 2px 12px rgba(36,51,74,0.07);
  --radius: 16px;
}

/* SCANDINAVIAN CLEAN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24334A;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
p, ul, ol {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #607193;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}
.about-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* SPACING & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(36,51,74,0.11);
  transform: translateY(-4px) scale(1.02);
}
.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(36,51,74,0.09);
  margin-bottom: 20px;
  color: #24334A;
  font-size: 1.125rem;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(36,51,74,0.13);
}
.testimonial-card p {
  color: #24334A;
}
.testimonial-card span {
  color: #607193;
  font-size: 1rem;
  font-style: italic;
  margin-left: 8px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
  margin-bottom: 6px;
}
.feature {
  flex: 1 1 240px;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.18s, box-shadow 0.20s;
}
.feature img {
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
}
.feature:hover {
  transform: translateY(-4px) scale(1.022);
  box-shadow: 0 4px 30px rgba(36,51,74,0.13);
}

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

.case-snippets, .event-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.text-section {
  background: #F3EFE7;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 16px;
  flex: 1 1 260px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: flex-start;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24334A;
}

/* HEADER, NAV & FOOTER */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(36,51,74,0.05);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 99;
  padding-top: 4px;
  margin-bottom: 20px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #24334A;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #71B9C3;
}

.btn-primary, .btn-secondary {
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 32px;
  padding: 11px 28px;
  margin-left: 18px;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 1px 7px rgba(36,51,74,0.10);
  cursor: pointer;
  outline: none;
}
.btn-primary {
  background: #71B9C3;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #24334A;
  color: #fff;
  box-shadow: 0 2px 16px rgba(36,51,74,0.10);
}
.btn-secondary {
  background: #fff;
  color: #24334A;
  border: 2px solid #71B9C3;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #71B9C3;
  color: #fff;
}

footer {
  background: #FAFAFA;
  border-top: 1px solid #E5E7EA;
  margin-top: 48px;
  padding: 34px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-nav a {
  font-size: 1rem;
  color: #607193;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #24334A;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #B8C0CA;
  font-size: 1.02rem;
  margin-top: 8px;
}
.footer-brand img {
  height: 28px;
}

/* HERO SECTION */
.hero-section {
  background: #F3EFE7 url('../assets/hero-pattern.png') repeat top center;
  min-height: 320px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 44px;
  padding: 42px 0 40px 0;
}
.hero-section h1 {
  margin-bottom: 6px;
  font-size: 2.8rem;
  color: #24334A;
}
.hero-section .subheadline {
  color: #607193;
  margin-bottom: 30px;
}
.hero-section .btn-primary {
  margin-left: 0;
}
@media (max-width: 800px) {
  .hero-section {
    min-height: 180px;
    padding: 26px 0 26px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #fff;
  color: #24334A;
  border-radius: 8px;
  border: none;
  margin-left: 20px;
  transition: background 0.18s, color 0.16s;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F3EFE7;
  color: #71B9C3;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #F3EFE7;
  box-shadow: 0 6px 44px rgba(36,51,74,0.19);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.455,0.03,0.515,0.955);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  color: #24334A;
  border: none;
  margin: 14px 22px 8px 0;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #71B9C3;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
}
.mobile-nav a {
  color: #24334A;
  padding: 14px 0;
  font-size: 1.35rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  width: 80vw;
  text-align: center;
  background: #fff;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(36,51,74,0.07);
  transition: background .13s, color .13s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #71B9C3;
  color: #fff;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 16px rgba(36,51,74,0.12);
  padding: 23px 18px 19px 18px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  animation: cookieSlideUp 0.5s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #24334A;
  text-align: center;
  margin-bottom: 14px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  border: none;
  padding: 9px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #fff;
  background: #71B9C3;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(36,51,74,0.08);
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #24334A;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #24334A;
  border: 1.2px solid #71B9C3;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #71B9C3;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  max-width: 410px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 6400;
  padding: 34px 24px 28px 24px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: modalFadeIn 0.4s cubic-bezier(.38,.16,.36,1.21);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translate(-50%, -40%) scale(0.9); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}
.cookie-category label {
  font-weight: 500;
  color: #24334A;
}
.cookie-category input[type="checkbox"] {
  accent-color: #71B9C3;
  width: 19px;
  height: 19px;
  cursor: pointer;
}
.cookie-category.essential label {
  color: #A6ADB3;
}
.cookie-modal .cookie-buttons {
  margin-top: 6px;
}
.cookie-modal .btn-close-modal {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  color: #24334A;
  border: none;
  font-size: 1.3rem;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .btn-close-modal:hover, .cookie-modal .btn-close-modal:focus {
  background: #F3EFE7;
}

/* SCROLLBAR (subtle for clean design) */
::-webkit-scrollbar {
  width: 10px;
  background: #F3EFE7;
}
::-webkit-scrollbar-thumb {
  background: #D5DBE2;
  border-radius: 6px;
}

/* UTILITY & MICRO-INTERACTIONS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:600px) {
  section, .section {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
}
::-webkit-input-placeholder { color: #A6ADB3; }
::placeholder { color: #A6ADB3; }
input, textarea, select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #D5DBE2;
  background: #fafbfb;
  color: #24334A;
  font-size: 1.05rem;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #71B9C3;
}

/* Responsive flex direction switches & MOBILE STYLES */
@media (max-width: 1000px) {
  .main-nav {
    gap: 12px;
  }
  .feature-grid {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .container { padding: 0 8px; }
}
@media (max-width: 850px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 920px) {
  .footer-nav { gap: 13px; }
}
@media (max-width: 830px) {
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav {
    display: none !important;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-section .container {
    padding: 0 4px;
  }
  .feature-grid, .case-snippets, .event-snippets, .card-container, .content-grid {
    flex-direction: column;
    gap: 19px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .contact-details {
    flex-direction: column;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  .container {
    padding: 0 3vw;
  }
  .footer-brand span {
    font-size: 0.88rem;
  }
}

/* z-indexes for overlay elements */
header { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 5000; }
.cookie-modal { z-index: 6400; }

/* REMOVE OUTLINE ONLY IF REPLACED WITH CLEAR FOCUS STYLE! */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus {
  outline: 2px solid #71B9C3;
  outline-offset: 2px;
}

/* SAFETY: PREVENT OVERLAP */
.feature, .testimonial-card, .card, .about-section, .text-section, .footer-brand {
  min-width: 0;
}

/* CLEAR VISIBILITY FOR INTERACTIVE ELEMENTS */
.btn-primary, .btn-secondary, .cookie-btn {
  outline: none !important;
}

/* END OF FILE */
