/* =============================
  Dusk Lumen Kulinarikreisen
  luxury_premium style CSS
============================= */

/***********************
  1. 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F8F7F4;
  color: #1B252B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #D9A441;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #151a1d;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-weight: 500;
}
@media (max-width: 992px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
}
@media (max-width: 600px) {
  h1 { font-size: 26px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }
}

/**********************
  2. CORE SPACING & CONTAINERS
**********************/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .container {
    max-width: 96vw;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 24px 0;
    margin-bottom: 24px;
  }
}

/**********************
  3. NAVIGATION & HEADER
**********************/
header {
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(27,37,43,0.06);
  position: relative;
  z-index: 20;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
nav > a img {
  height: 38px;
  width: auto;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1B252B;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
  color: #D9A441;
  border-bottom: 2px solid #D9A441;
}

/************
CTAs
************/
.cta-btn {
  background: #D9A441;
  color: #1B252B;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 12px 34px;
  box-shadow: 0 2px 16px rgba(217,164,65,0.13);
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  outline: none;
  text-align: center;
  letter-spacing: 0.04em;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E9E9E4;
  color: #1B252B;
  box-shadow: 0 4px 22px rgba(217,164,65,0.23);
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
}

/************
Burger Mobile Nav
************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #1B252B;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  outline: none;
  transition: background 0.16s, box-shadow 0.18s;
  z-index: 55;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E9E9E4;
  color: #D9A441;
}
@media (max-width: 992px) {
  nav ul, nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 22px;
    top: 16px;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,37,43,0.97);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.86, 0.05, 0.51, 0.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #D9A441;
  font-size: 36px;
  margin: 24px 24px 10px 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  align-self: flex-end;
  transition: background 0.16s;
  z-index: 97;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9E9E4;
  color: #1B252B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 0 0 38px;
  gap: 17px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.19s, padding-left 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D9A441;
  background: rgba(233,233,228,0.10);
  padding-left: 15px;
}
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/**********************
  4. HERO SECTION
**********************/
.hero {
  background: #1B252B;
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero .container {
  z-index: 2;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 36px 0;
}
.hero h1 {
  color: #D9A441;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.015em;
}
.hero p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.hero .cta-btn {
  margin-top: 10px;
  font-size: 18px;
}
@media (max-width: 600px) {
  .hero {
    min-height: 180px;
    padding: 10px 0 24px 0;
    background-size: auto 120%;
  }
  .hero h1 {
    font-size: 25px;
    margin-bottom: 11px;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

/**********************
  5. GENERIC SECTIONS, CARDS, LISTS
**********************/
.features-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}
.features-list li, .services-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(27,37,43,0.07);
  padding: 24px 22px 22px 22px;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.13s;
  border-bottom: 2.5px solid #D9A44155;
}
.features-list img, .services-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 4px #D9A44122);
}
.features-list li strong, .services-list li strong, .features-list li h3 {
  color: #1B252B;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
}
.features-list li:hover, .services-list li:hover {
  box-shadow: 0 8px 28px 0 rgba(217,164,65,0.07);
  transform: translateY(-4px) scale(1.018);
  border-bottom: 2.5px solid #D9A441;
  z-index: 1;
}
/* fallback for spacing on mobile */
@media (max-width: 900px) {
  .features-list, .services-list {
    gap: 18px;
  }
  .features-list li, .services-list li {
    min-width: 150px;
    padding: 16px 10px 17px 10px;
    max-width: 99%;
  }
}
@media (max-width: 700px) {
  .features-list, .services-list {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .features-list li, .services-list li {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
  }
}

/**********************
  6. CARDS, CONTENT GRIDS, TESTIMONIALS
**********************/
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(27,37,43,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
  position: relative;
  padding: 24px 20px;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(217,164,65,0.13), 0 2px 8px rgba(27,37,43,0.02);
  transform: translateY(-4px) scale(1.018);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/***** Testimonial Cards *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #E9E9E4;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 10px rgba(27,37,43,0.08);
  border-left: 5px solid #D9A441;
  font-size: 17px;
  transition: box-shadow 0.16s, border-color 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px 0 rgba(217,164,65,0.13), 0 2px 6px rgba(27,37,43,0.03);
  border-left: 5px solid #b88a34;
}
.testimonial-card .testimonial-text {
  color: #1B252B;
  font-family: 'Playfair Display', serif;
  font-size: 1.03em;
  margin-bottom: 8px;
  flex: 2 2 70%;
}
.testimonial-card .testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #1B252B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  align-items: flex-end;
  min-width: 100px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px;
  }
  .testimonial-card .testimonial-meta {
    align-items: flex-start;
    min-width: 0;
  }
}

/**********************
   7. STRUCTURE: TEXT SECTIONS, FEATURES
**********************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 15px;
  padding: 28px 18px 18px 18px;
  box-shadow: 0 2px 9px rgba(27,37,43,0.06);
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .text-section {
    padding: 14px 4px 9px 8px;
    margin-bottom: 14px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**********************
  8. FOOTER
**********************/
footer {
  background: #171e22;
  padding: 36px 0 14px 0;
  color: #fff;
}
footer .container {
  max-width: 1160px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  font-size: 16px;
  color: #E9E9E4;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a {
  color: #D9A441;
  border-bottom: 1.1px solid transparent;
  transition: border-color 0.13s, color 0.16s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
  border-bottom: 1.1px solid #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #E9E9E4;
  font-size: 14px;
}
.footer-contact img {
  width: 38px;
  height: auto;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  transition: filter 0.18s;
  filter: grayscale(35%) brightness(90%);
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0%) brightness(110%) drop-shadow(0 0 7px #D9A44166);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .footer-social {
    margin-top: 10px;
  }
}

/********************
  9. TYPOGRAPHY & GENERAL STYLES
********************/
.section a:not(.cta-btn), .content-wrapper a:not(.cta-btn) {
  color: #D9A441;
  border-bottom: 1px dotted #D9A44199;
  transition: color 0.17s, border-color 0.17s;
  font-weight: 500;
  font-family: 'Open Sans', Arial, sans-serif;
}
.section a:not(.cta-btn):hover, .content-wrapper a:not(.cta-btn):hover {
  color: #1B252B;
  border-color: #1B252B44;
}
address {
  font-style: normal;
  color: #1B252B;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
}

/***** Inline SVG Icons in Contact/Footer *****/
div[class^='footer-contact'] img, div[class^='footer-contact'] svg,
div[class^='content-wrapper'] > div img[alt^='Telefon'],
div[class^='content-wrapper'] > div img[alt^='E-Mail'],
div[class^='content-wrapper'] > div img[alt^='Öffnungszeiten'],
div[class^='content-wrapper'] > div img[alt^='Karte'] {
  width: 18px !important;
  margin-right: 8px;
  vertical-align: -4px;
}

/**********************
  10. FORM ELEMENTS, BUTTONS
**********************/
input, textarea, select, button {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 7px;
  border: 1.5px solid #D9A44188;
  padding: 8px 14px;
  font-size: 16px;
  color: #1B252B;
  background: #fff;
  outline: none;
  margin-top: 4px;
}
button, input[type="submit"] {
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.11s, box-shadow 0.12s, color 0.11s;
}
button:active, input[type="submit"]:active {
  background: #D9A44122;
}

/**********************
  11. MISC LISTS & MARGIN CORRECTIONS
**********************/
ul, ol {
  padding-left: 25px;
  margin-bottom: 20px;
  color: #1B252B;
}
ul li, ol li {
  margin-bottom: 7px;
  line-height: 1.6;
  position: relative;
}
ul li:before {
  content: '\2022';
  color: #D9A441;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}
.features-list, .services-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/**********************
  12. COOKIE CONSENT BANNER & MODAL
**********************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1B252B;
  color: #fff;
  padding: 24px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -3px 18px 0 rgba(27,37,43,0.09);
  z-index: 2100;
  transition: transform 0.36s cubic-bezier(0.8,0.1,0.3,1);
  transform: translateY(100%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner strong {
  color: #D9A441;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #D9A441;
  color: #1B252B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 10px 24px;
  font-size: 16px;
  transition: background 0.16s, color 0.14s, box-shadow 0.12s, transform 0.10s;
  outline: none;
  margin-bottom: 2px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #B88A34;
  color: #fff;
  box-shadow: 0 2px 10px rgba(217,164,65,0.23);
  transform: translateY(-1px) scale(1.025);
}
.cookie-banner .cookie-banner-link {
  color: #D9A441;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 16px 8px 14px 8px;
    font-size: 14px;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,37,43,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.27s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #1B252B;
  border-radius: 18px;
  max-width: 400px;
  width: 95vw;
  padding: 42px 24px 27px 24px;
  box-shadow: 0 12px 64px 0 rgba(27,37,43,0.22);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
  animation: cookie-modal-in 0.45s cubic-bezier(.86,0,.07,1);
}
@keyframes cookie-modal-in {
  from { transform: translateY(60px) scale(0.94); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 23px;
  color: #D9A441;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
}
.cookie-category label {
  font-size: 15px;
  color: #1B252B;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #D9A441;
  border-radius: 5px;
  border: 1.5px solid #D9A44177;
  background: #f5f3ef;
}
.cookie-category input[disabled], .cookie-category input[checked][disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-preference-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-preference-actions button {
  background: #D9A441;
  color: #1B252B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 10px 18px;
  font-size: 16px;
  transition: background 0.17s, color 0.15s, box-shadow 0.12s;
  outline: none;
  min-width: 105px;
}
.cookie-preference-actions button:hover, .cookie-preference-actions button:focus {
  background: #B88A34;
  color: #fff;
  box-shadow: 0 2px 10px rgba(217,164,65,0.23);
  transform: scale(1.025);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 13px;
  padding: 2px 6px;
  font-size: 25px;
  background: none;
  color: #D9A441;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 25;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #E9E9E4;
  color: #1B252B;
}

/********************
 Z. MICRO-INTERACTIONS & ANIMATIONS
********************/
.cta-btn, button, .card, .testimonial-card, .features-list li, .services-list li {
  transition-timing-function: cubic-bezier(.41,1.6,.2,1);
}
.cta-btn:active, .cookie-banner button:active,
.cookie-preference-actions button:active {
  transform: scale(0.98);
}

/********************
  AA. RESPONSIVE ALIGNMENT
********************/
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  nav {
    max-width: 98vw;
  }
  footer .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
  nav {
    padding: 0 5vw;
  }
  footer .container {
    padding: 0 5vw;
  }
  .content-wrapper, .footer-links, .footer-contact, .footer-social {
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 2vw;
  }
}

/********************
  AB. UTILITIES
********************/
.hide { display: none; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 28px; }
/* Custom gold underline */
.gold-underline { border-bottom: 2px solid #D9A441; }

/*********************
  GOOGLE FONTS
*********************/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* END CSS */
