/* --- 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #1a1a1a; /* Deep industrial dark */
  color: #FFF4E6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh; 
}
a {
  color: #FF974C; /* warm metallic-accent orange */
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #d74a00;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
}

/* --- FONT FACE for Playfair Display (Fallback: Georgia) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFF4E6;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4, h5, h6 { font-size: 1.05rem; }

p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F7E5D3;
}

blockquote {
  border-left: 4px solid #803300;
  margin: 24px 0;
  padding: 10px 18px;
  font-style: italic;
  color: #FFF4E6;
  background: rgba(40,34,34,0.38);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #141415;
  box-shadow: 0 2px 12px 0 rgba(20,20,20,0.35);
  position: relative;
  z-index: 999;
}
.logo img {
  height: 48px;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1rem;
  color: #FFF4E6;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FF974C;
  border-bottom: 2px solid #803300;
}

.cta-btn {
  background: linear-gradient(90deg,#803300,#0B3B2E 70%);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  border-radius: 36px;
  padding: 10px 32px;
  box-shadow: 0 2px 10px 0 rgba(30,22,0,0.12);
  margin-left: 24px;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .2s;
  position: relative;
  display: inline-block;
}
.cta-btn.secondary {
  background: #212225;
  color: #FFF4E6;
  border: 1.5px solid #803300;
  margin-left: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #0B3B2E;
  color: #FF974C;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px 0 rgba(30,22,0,0.24);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #803300;
  color: #fff;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #803300;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 1201;
  position: absolute;
  right: 16px;
  top: 18px;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #0B3B2E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #141415;
  box-shadow: 0 0 36px 0 #000a;
  z-index: 1200;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.59,.01,.39,1.02);
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 18px 0;
  background: #212225;
  color: #fff;
  border-radius: 50%;
  font-size: 2.3rem;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  transition: background .18s;
  z-index: 1300;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #803300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 34px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #FFF4E6;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 8px 0;
  width: 100%;
  border-bottom: 1px solid #232325;
  transition: color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF974C;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 10px 6px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- HERO & GENERAL SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #181818;
  border-radius: 20px;
  box-shadow: 0 8px 30px 0 rgba(12,12,20,0.10);
}
section:nth-of-type(even) {
  background: #2b2c2e;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 38px;
    padding: 28px 8px;
    border-radius: 10px;
  }
}

/* --- FLEX LAYOUT PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #212225;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(90,80,64,0.13), 0 0.5px 2px 0 rgba(80,64,32,0.09);
  position: relative;
  padding: 20px 24px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, background 0.16s;
  border: 1.8px solid #3E3E42;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover {
  background: #22232a;
  box-shadow: 0 8px 30px 0 rgba(120,50,5,0.18);
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF4E6;
  color: #22232a;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(80,50,30,0.09);
  margin-bottom: 20px;
  min-width: 220px;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.07rem;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}
.testimonial-card span {
  color: #803300;
  font-weight: 700;
  font-family: 'Roboto', Arial, sans-serif;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #232325;
  gap: 15px;
  border-radius: 11px;
  padding: 18px 16px;
  min-width: 180px;
  flex: 1 1 198px;
  box-shadow: 0 2px 14px 0 rgba(80,80,72,0.10);
  transition: box-shadow 0.16s, background .12s;
  margin-bottom: 18px;
  border-left: 4px solid #803300;
}
.feature-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0.88) drop-shadow(0 1px 2px #0B3B2E88);
}
.feature-item h3 {
  color: #FF974C;
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.feature-item p {
  color: #E2D4C7;
  font-size: 0.99rem;
}
.feature-item:hover, .feature-item:focus-within {
  background: #181818;
  box-shadow: 0 8px 28px 0 rgba(128,51,0,0.09);
}

/* SERVICE ITEMS for Reiseangebote & Kochkurse pages */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #212225;
  border-radius: 13px;
  padding: 20px 24px;
  border-left: 4px solid #803300;
  box-shadow: 0 2px 16px 0 rgba(90,80,64,0.09);
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.15s, background 0.13s;
}
.service-item:hover {
  background: #262628;
  box-shadow: 0 8px 24px 0 rgba(128,51,0,0.13);
}
.service-item h3 {
  color: #FF974C;
  margin-bottom: 8px;
  font-size: 1.19rem;
}
.service-item ul {
  list-style-type: disc;
  margin-left: 18px;
  color: #E2D4C7;
  margin-bottom: 8px;
}
.service-price {
  color: #0B3B2E;
  background: #FFF4E6;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 7px 22px;
  align-self: flex-start;
  margin-top: 6px;
  box-shadow: 0 1px 6px 0 rgba(100,82,60,0.11);
}

@media (max-width: 900px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 650px) {
  .feature-item, .service-item {
    min-width: 0;
    width: 100%;
    padding: 16px 10px;
  }
}

/* --- BLOG TEASERS --- */
.blog-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-teaser {
  flex: 1 1 220px;
  max-width: 350px;
  min-width: 200px;
  background: #232325;
  padding: 18px 16px;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(85,67,40,0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 4px solid #803300;
  margin-bottom: 20px;
  transition: box-shadow .13s, background .1s;
}
.blog-teaser h3 {
  color: #FF974C;
  font-size: 1.14rem;
  margin-bottom: 4px;
}
.blog-teaser p {
  color: #E2D4C7;
  font-size: 0.98rem;
}
.blog-teaser a {
  color: #803300;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 8px;
  transition: color .15s, text-decoration .14s;
}
.blog-teaser a:hover, .blog-teaser a:focus {
  color: #FF974C;
  text-decoration: underline;
}
.blog-teaser:hover,
.blog-teaser:focus-within {
  background: #181818;
  box-shadow: 0 7px 20px 0 rgba(128,51,0,0.11);
}

@media (max-width: 800px) {
  .blog-teaser-list {
    flex-direction: column;
    gap: 16px;
  }
  .blog-teaser {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* --- CALL TO ACTION GROUP --- */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 10px;
}
@media (max-width:600px){
  .cta-group{
    flex-direction:column;
    gap:14px;
  }
}

/* --- TEXT SECTIONS & GENERAL --- */
.text-section {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-bottom: 8px;
}
.text-section li {
  color: #F7E5D3;
  font-size: 1rem;
  margin-bottom: 4px;
}
.text-section a {
  color: #FF974C;
  font-weight: 700;
  transition: color .17s;
}
.text-section a:hover, .text-section a:focus {
  color: #803300;
  text-decoration: underline;
}


/* --- FOOTER --- */
footer {
  background: #19191b;
  color: #D9D6CD;
  padding: 36px 0 12px 0;
  font-size: 0.98rem;
  border-top: 2.5px solid #803300;
  box-shadow: 0 -2px 18px 0 #1113;
}
footer .container {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #FF974C;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  footer .container {
    gap: 10px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232325;
  color: #FFFAF2;
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2000;
  box-shadow: 0 -4px 20px 0 rgba(128,51,0,0.13);
  border-top: 2px solid #803300;
  transition: transform 0.28s ease, opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  background: #803300;
  color: #fff;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(80,30,20,0.11);
  margin: 0;
  transition: background .15s, color .12s, box-shadow .18s;
}
.cookie-banner .cookie-btn.secondary {
  background: #232325;
  color: #FF974C;
  border: 1.5px solid #803300;
}
.cookie-banner .cookie-btn:focus,
.cookie-banner .cookie-btn:hover {
  background: #0B3B2E;
  color: #FF974C;
  box-shadow: 0 5px 12px 0 rgba(11,59,46,0.18);
}
.cookie-banner .cookie-btn.secondary:focus,
.cookie-banner .cookie-btn.secondary:hover {
  background: #803300;
  color: #fff;
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18, 20, 22, 0.92);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-content {
  background: #FFF4E6;
  color: #212225;
  border-radius: 20px;
  max-width: 450px;
  width: 92vw;
  padding: 36px 26px 24px 26px;
  box-shadow: 0 4px 24px 0 rgba(128,51,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #803300;
  margin-bottom: 10px;
}
.cookie-modal-content ul {
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #22232a;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border: none;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  background: #803300;
}
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #DDD0C0;
  border-radius: 26px;
  transition: background .2s;
}
.switch input:checked + .slider {
  background-color: #803300;
}
.slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform .20s;
}
.switch input:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-essential {
  color: #0B3B2E;
  font-weight: 700;
}
.cookie-category[aria-disabled='true'] {
  opacity: .55;
}

/* --- MICRO-INTERACTIONS & HOVERS --- */
button, .cta-btn, .cookie-btn {
  transition: background .18s, color .17s, box-shadow .17s, border .14s, transform .16s;
}
.card, .feature-item, .service-item, .blog-teaser {
  will-change: transform, box-shadow;
}
.card:hover, .service-item:hover, .feature-item:hover, .blog-teaser:hover {
  transform: translateY(-3.5px) scale(1.014);
}

/* --- TYPOGRAPHY HIERARCHY & SPACING --- */
h1, h2 { margin-top: 0.5em; }
h3, h4, h5, h6 { margin-top: 0.32em; }
p, ul, ol, blockquote { margin-bottom: 1.2em; }
.cta-btn, .main-nav a, .footer-nav a, .cookie-btn {
  font-size: 1rem;
}

/* --- SELECTION COLOR --- */
::selection {
  background: #803300;
  color: #FFF4E6;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; background: #241C18; }
::-webkit-scrollbar-thumb { background: #803300; border-radius: 6px; }

/* --- ACCESSIBILITY FOCUS --- */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .cookie-btn:focus {
  outline: 2.5px solid #803300;
  outline-offset: 2px;
}

/* --- GENERAL RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .container { padding: 0 5vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  section, .section { padding: 18px 4px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.1rem; }
  .card, .feature-item, .service-item, .testimonial-card, .blog-teaser {
    padding: 11px 7px;
    border-radius: 8px;
  }
  .cookie-modal-content {
    padding: 18px 5vw 18px 5vw;
    border-radius: 10px;
  }
}

/* --- MISC: Z-INDEX MANAGEMENT --- */
.mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { z-index: 9999; }

/* --- A11Y: Prevent content overlap with banners/menus --- */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* END OF STYLE.CSS */
