/* ====== 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, main, section, article, aside, nav, header, footer, figure, figcaption, details, summary, hr {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #232B36;
  color: #F3EAD9;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #8CB4A2;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #F6C94A;
  text-shadow: 0 0 8px #F6C94A44;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}
:focus-visible {
  outline: 2px dashed #8CB4A2;
  outline-offset: 2px;
}

/* ====== BRAND TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #F3EAD9;
  line-height: 1.13;
  letter-spacing: .01em;
  font-weight: 700;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.6rem;
  }
}
p, li, span, a, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #F3EAD9;
}
.section p, .section ul, .section ol {
  margin-bottom: 10px;
}
/* Subdued text for secondary */
.secondary-text, small {
  color: #8CB4A2;
}

/* ====== CONTAINER & LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ====== SECTIONS ====== */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ====== CARDS & FLEX LAYOUTS (no grid/columns!) ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #26394e;
  border-radius: 18px;
  box-shadow: 0 4px 22px #212d3c70, 0 1.5px 14px #8cb4a270;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 250px;
  color: #F3EAD9;
}
.card:hover, .card:focus-within {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 40px #2c3a4b60, 0 2.5px 16px #F6C94A66;
}
.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 !important;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F3EAD9;
  color: #232B36;
  border-radius: 16px;
  box-shadow: 0 4px 22px #212d3c35, 0 1.5px 14px #8cb4a265;
  position: relative;
  max-width: 560px;
  width: 100%;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  color: #232B36;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.6;
}
.testimonial-card p,
.testimonial-card strong {
  color: #2C3A4B;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 34px #2c3a4b44, 0 2.5px 16px #8cb4a235;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ====== HERO + CTA BUTTONS ====== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 46px;
  padding: 0 32px;
  background: #2C3A4B;
  color: #F3EAD9;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 25px;
  box-shadow: 0 0 0 2px #8CB4A2, 0 8px 26px #2c3a4b55;
  transition: background 0.16s, box-shadow 0.2s, transform 0.12s;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #8CB4A2;
  color: #232B36;
  box-shadow: 0 0 0 2.5px #F6C94A, 0 12px 32px #f6c94a33;
  transform: scale(1.05);
  text-shadow: 0 2px 16px #f6c94a44;
}

/* ====== NAVIGATION ====== */
header {
  background: #232B36;
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 3px 28px #2c3a4b48;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav a {
  color: #8CB4A2;
  font-weight: 400;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #2C3A4B;
  color: #F3EAD9;
  box-shadow: 0 2px 18px #8cb4a26a;
}
header img {
  height: 44px;
  width: auto;
}
@media (max-width: 1080px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
}

/* ====== MOBILE NAVIGATION ====== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #232B36;
  color: #F3EAD9;
  font-size: 2rem;
  border-radius: 9px;
  border: 2px solid #8CB4A2;
  position: absolute;
  right: 18px;
  top: 22px;
  z-index: 1120;
  transition: background 0.14s, color 0.14s, border 0.15s;
  cursor: pointer;
  box-shadow: 0 1px 8px #2c3a4b33;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #8CB4A2;
  color: #2C3A4B;
  border-color: #F6C94A;
}

@media (min-width: 880px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 880px) {
  .main-nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #212B35EE;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.65,.15,.23,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: hidden;
  box-shadow: 0 2px 32px #2C3A4BCF;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 25px 28px 10px 0;
  font-size: 2.2rem;
  color: #F3EAD9;
  background: none;
  border: none;
  z-index: 2003;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6C94A;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 24px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #8CB4A2;
  background: transparent;
  font-size: 1.2rem;
  border-radius: 8px;
  padding: 10px 16px;
  width: 90%;
  display: block;
  font-weight: 500;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2C3A4B;
  color: #F3EAD9;
}
@media (min-width: 880px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ====== COMMON BUTTONS ====== */
button, .button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  background: #8CB4A2;
  color: #232B36;
  padding: 8px 24px;
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #F6C94A;
  color: #212B35;
  box-shadow: 0 0 0 2px #8CB4A2, 0 2px 12px #2c3a4b28;
}

/* ====== FOOTER ====== */
footer {
  background: #16181C;
  color: #8CB4A2;
  padding: 48px 0 20px 0;
  box-shadow: 0 -2px 20px #232b3640;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  margin-bottom: 10px;
}
footer img {
  height: 38px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #8CB4A2;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 5px;
  transition: background 0.15s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #8CB4A2;
  color: #212B35;
}
footer p {
  color: #8CB4A2;
  font-size: 0.98rem;
  opacity: 0.85;
}

/* ====== FORMS, MAP, SOCIAL LINKS ====== */
.text-section {
  margin-bottom: 16px;
  color: #F3EAD9;
}
.address-map {
  margin: 16px 0 16px 0;
  padding: 16px 12px;
  background: #2C3A4B;
  color: #F3EAD9;
  border-radius: 10px;
  box-shadow: 0 2px 14px #8CB4A234;
}
.social-links {
  margin: 18px 0 13px 0;
}
.social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.social-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8CB4A2;
  font-weight: 500;
}
.social-links img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* ====== FLEXIBLE LIST LAYOUTS (for all UL/OL in content) ====== */
.content-wrapper ul,
.content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  margin-left: 18px;
}
.content-wrapper li {
  padding-left: 0.25em;
}
ul li::before, ol li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: #8CB4A2;
  vertical-align: middle;
}

/* ====== SPECIAL: HERO SECTIONS - BG EFFECTS & NEON ACCENTS ====== */
section:first-of-type, 
section.hero, 
.section.hero {
  background: linear-gradient(170deg, #232B36 40%, #2C3A4B 100%);
  box-shadow: 0 4px 32px #2c3a4b22;
  border-radius: 0 0 38px 38px / 0 0 28px 28px;
}

.cta-primary {
  background: linear-gradient(90deg,#2C3A4B 75%, #8CB4A2 100%);
  border: 2.5px solid #8CB4A2;
  text-shadow: 0 0 12px #8CB4A280;
  filter: drop-shadow(0 0 8px #2c3a4b51);
}
.cta-primary:hover, .cta-primary:focus {
  background: #F6C94A;
  color: #232B36;
  border-color: #2C3A4B;
  text-shadow: 0 0 12px #2c3a4b80;
}

/* ====== CARDS IN GRIDS ====== */
.content-wrapper > ul,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.content-wrapper > ul > li,
.card {
  flex: 1 1 260px;
  min-width: 240px;
  background: #26394e;
  border-radius: 18px;
  box-shadow: 0 4px 22px #212d3c31, 0 1.5px 14px #8cb4a231;
  padding: 24px 16px 18px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #F3EAD9;
  position: relative;
}
.content-wrapper > ul > li strong {
  color: #F6C94A;
  font-family: 'Merriweather', serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.content-wrapper > ul > li span {
  font-size: 1.1rem;
  color: #8CB4A2;
  font-weight: 600;
  margin-bottom: 8px;
}
.content-wrapper > ul > li a {
  color: #8CB4A2;
  text-decoration: underline;
  font-weight: 600;
  margin-top: 5px;
}
.content-wrapper > ul > li a:hover {
  color: #F6C94A;
}
.content-wrapper > ul > li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 32px #2c3a4b48, 0 3px 18px #8cb4a231;
}

/* ====== TEXT BLOCKS FOR POLICY PAGES ====== */
.text-section {
  color: #F3EAD9;
  background: none;
  padding: 0;
  margin-bottom: 8px;
}
.text-section h3 {
  color: #F6C94A;
  font-size: 1.1rem;
}
.policy-content ul li::before {
  background: #F6C94A;
}

/* ====== CONFIRMATION / THANK-YOU PAGES ====== */
.confirmation-message {
  color: #8CB4A2;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 12px 0 8px 0;
}
.next-steps {
  color: #F3EAD9;
  font-size: 1rem;
  margin-bottom: 18px;
}

/* ====== COOKIE CONSENT BANNER & MODAL ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232B36;
  color: #F3EAD9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 24px 18px;
  box-shadow: 0 -2px 24px #8CB4A275;
  z-index: 9998;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.37s cubic-bezier(.9,.14,.1,1), opacity 0.17s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
}
.cookie-banner .cookie-btn {
  border-radius: 20px;
  background: #8CB4A2;
  color: #232B36;
  padding: 8px 20px;
  margin-right: 8px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #F6C94A;
  color: #232B36;
}
.cookie-banner .cookie-btn.settings {
  background: #2C3A4B;
  color: #F3EAD9;
  border: 1.5px solid #8CB4A2;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #8CB4A2;
  color: #232B36;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10010;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #212B35CC;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #232B36;
  color: #F3EAD9;
  border-radius: 18px;
  box-shadow: 0 10px 40px #2c3a4b66;
  padding: 36px 30px;
  width: 94vw;
  max-width: 430px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal h3 {
  color: #F6C94A;
  margin-bottom: 11px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  font-size: 2rem;
  color: #8CB4A2;
  border: none;
  cursor: pointer;
  z-index: 3;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F6C94A;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #F3EAD9;
}
.cookie-category .toggle {
  width: 40px;
  height: 21px;
  border-radius: 14px;
  background: #8CB4A2;
  position: relative;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.cookie-category .toggle[aria-checked="true"] {
  background: #F6C94A;
}
.cookie-category .toggle-switch {
  width: 18px;
  height: 18px;
  background: #232B36;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  transform: translateX(0);
  transition: left 0.15s;
}
.cookie-category .toggle[aria-checked="true"] .toggle-switch {
  left: 20px;
  background: #232B36;
}
.cookie-category .cookie-essential {
  opacity: 0.6;
  font-style: italic;
  color: #8CB4A2;
  margin-left: 4px;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
  margin-right: 10px;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 18px;
    padding-left: 0;
    padding-right: 0;
  }
  section, .section {
    padding: 34px 0 34px 0;
  }
  .footer-nav {
    gap: 13px;
    font-size: 0.93rem;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .cta-primary {
    min-width: 112px;
    font-size: 0.96rem;
    padding: 0 18px;
  }
  .testimonial-card {
    font-size: 0.96rem;
    padding: 16px 8px;
  }
  .footer-nav a {
    font-size: 0.91rem;
  }
  .main-nav a {
    font-size: 0.91rem;
  }
  .content-wrapper > ul > li, .card {
    min-width: 165px;
    font-size: 0.99rem;
    padding: 14px 8px 11px 8px;
  }
}

/* ====== MICRO-ANIMATIONS ====== */
.card, .content-wrapper > ul > li {
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:active, .content-wrapper > ul > li:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px #8CB4A288;
}

.cta-primary:active {
  transform: scale(0.98);
}

/* ====== VISUAL ENHANCEMENTS: NEON & SHADOW ACCENTS ====== */
.card, .testimonial-card, .content-wrapper > ul > li {
  border: 1.5px solid #2C3A4B;
  box-shadow: 0 2px 14px #8CB4A244, 0 6px 24px #2C3A4B16;
}
.card:hover, .content-wrapper > ul > li:hover {
  box-shadow: 0 5px 24px #F6C94A55, 0 10px 38px #2C3A4B22;
}

/* ====== FOCUS STATES for ACCESSIBILITY ====== */
a:focus, button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px solid #F6C94A;
  outline-offset: 2px;
  box-shadow: 0 0 4px #F6C94A;
}

/* ====== SPACING & WHITE SPACE ====== */
.section, section, .content-wrapper, .card-container, .content-grid, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* ====== Z-INDEX SAFETY ====== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 2000;
}

/* ====== Print & Selection ====== */
::selection {
  background: #F6C94A;
  color: #232B36;
}

/* ====== Hide/Show Cookie Banner & Modal by JS classes (to be toggled) ====== */
.cookie-banner.hide, .cookie-modal-overlay.hide {
  display: none !important;
}

/* ====== END - CSS for Einsame Dämmerung Reisen - TECH FUTURISTIC ====== */
