/* 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #191b24;
  color: #F9F6F0;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}
:focus { outline: 2px solid #B7A16B; outline-offset: 2px; }

/* BRAND COLORS & FONTS */
:root {
  --color-primary: #2C3246;
  --color-secondary: #B7A16B;
  --color-accent: #F9F6F0;
  --color-background: #1a1c25;
  --color-bg-lighter: #23263a;
  --color-bg-darker: #191b24;
  --color-neon: #adffef;
  --shadow-light: 0 4px 16px 0 rgba(183, 161, 107, 0.12);
  --shadow-neon: 0 0 8px #B7A16B, 0 0 32px #adffef33;
  --transition-main: 0.25s cubic-bezier(.4,0,.2,1);
  --radius-main: 18px;
  --radius-card: 16px;
  --radius-btn: 40px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main { flex: 1 1 0; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.card-container, .content-grid, .service-list, .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.card {
  background: var(--color-bg-lighter);
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f3f2ec;
  color: #191b24;
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  box-shadow: 0 4px 32px 0 rgba(44,50,70,0.08), 0 0 0 #B7A16B;
  position: relative;
}

/* TYPOGRAPHY HIERARCHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--color-accent);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.16;
  text-shadow: 0 2px 24px #B7A16B40;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.6px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.2;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-secondary);
  font-weight: 600;
}
p, li, span, small {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 400;
  line-height: 1.65;
}
strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* LINKS */
a {
  color: var(--color-neon);
  transition: color var(--transition-main);
}
a:hover, a:focus {
  color: #fff;
}

/* HEADER & NAVIGATION */
header {
  background: #222433;
  box-shadow: 0 2px 12px 0 rgba(44,50,70,0.045);
  width: 100%;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img[alt="Forement Arc Weinerlebnisse"] {
  height: 54px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 32px;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
  color: var(--color-accent);
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-secondary);
  color: #191b24;
  box-shadow: 0 0 8px #B7A16B77;
}
.cta-button {
  background: linear-gradient(90deg, #B7A16B 0%, #adffef 100%);
  border-radius: var(--radius-btn);
  color: #191b24;
  padding: 10px 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 32px 0 #B7A16B22;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background var(--transition-main), color var(--transition-main), box-shadow 0.24s;
  margin-left: 24px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #adffef 0%, #B7A16B 100%);
  color: #2C3246;
  box-shadow: 0 0 24px 0 #adffefBB, 0 0 64px #B7A16B60;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  color: #222433;
  padding: 6px 16px;
  cursor: pointer;
  margin-left: 20px;
  border: none;
  transition: background var(--transition-main);
  z-index: 1000;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #adffef;
  color: #2C3246;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,30,44,0.95);
  backdrop-filter: blur(3px);
  z-index: 9999;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.8,.4,.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 30px 0 0 0;
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-secondary);
  font-size: 2.5rem;
  margin: 0 24px 14px 0;
  border: none;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 40px 0 40px;
  width: 100%;
  max-width: 320px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding: 14px 0;
  border-bottom: 1px solid #32324644;
  text-align: left;
  transition: color var(--transition-main);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-neon);
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #1a1c25 40%, #2C3246 100%);
  min-height: 290px;
  display: flex;
  align-items: center;
  padding: 60px 0 40px 0;
  margin-bottom: 40px;
  box-shadow: 0 6px 64px #B7A16B0C;
  position: relative;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #adffef;
  font-size: 2.3rem;
  text-shadow: 0 6px 32px #adffef50;
  margin-bottom: 12px;
}
.hero p {
  color: #F9F6F0;
  font-size: 1.18rem;
  max-width: 600px;
  margin-bottom: 16px;
}
.hero .cta-button {
  margin-left: 0;
  margin-top: 10px;
}

/* FEATURES LIST */
.features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  justify-content: flex-start;
}
.features .content-wrapper > ul > li {
  background: var(--color-bg-lighter);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  padding: 28px 20px;
  min-width: 230px;
  min-height: 120px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 1.07rem;
  line-height: 1.48;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s;
  border: 1.5px solid #22243344;
}
.features .content-wrapper > ul > li img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px #B7A16B22) drop-shadow(0 0 14px #adffef33);
}
.features .content-wrapper > ul > li:hover, .features .content-wrapper > ul > li:focus {
  background: #181828;
  box-shadow: 0 0 16px 0 #adffef33, 0 0 0 #B7A16B;
}

/* SERVICES / TOUR CARDS */
.service-list {
  gap: 24px;
  margin-bottom: 30px;
}
.service-card {
  background: var(--color-bg-lighter);
  border-radius: var(--radius-card);
  padding: 32px 26px 30px 26px;
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-card h3 {
  color: var(--color-neon);
  margin-bottom: 3px;
  font-size: 1.18rem;
  font-family: var(--font-display);
}
.service-card p, .service-card strong {
  font-size: 1rem;
}
.service-card .cta-button {
  align-self: flex-start;
  margin-top: 14px;
  margin-left: 0;
}
.services .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.services .content-wrapper > ul > li {
  background: var(--color-bg-lighter);
  border-radius: var(--radius-card);
  padding: 22px 18px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  box-shadow: var(--shadow-light);
  min-width: 218px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.services .content-wrapper > ul > li span {
  color: var(--color-secondary);
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 4px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 14px 0;
  box-shadow: var(--shadow-light);
  background: var(--color-bg-lighter);
  border-radius: var(--radius-card);
  overflow: hidden;
  font-size: 1rem;
}
thead {
  background: #191b24;
  color: var(--color-secondary);
}
th, td {
  padding: 15px 12px;
  text-align: left;
}
tbody tr {
  border-top: 1px solid #22243333;
}
td {
  color: var(--color-accent);
}
table caption {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 6px;
  margin-top: 12px;
}

/* ABOUT / TEXT SECTIONS */
.about .content-wrapper.text-section,
.contact .content-wrapper.text-section {
  background: var(--color-bg-lighter);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  padding: 28px 22px;
  gap: 18px;
}
.about .content-wrapper.text-section ul, .contact .content-wrapper.text-section ul {
  margin-top: 10px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* CONTACT DETAILS */
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--color-accent);
  font-size: 1.04rem;
}
.contact-details img {
  width: 22px; height: 22px;
  display: inline-block;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  gap: 18px;
}
.testimonials h2 {
  margin-bottom: 16px;
  color: var(--color-neon);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #191b24;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #544b2a;
  font-size: 0.98rem;
  font-weight: 600;
}
.testimonial-card:before {
  content: '⭐';
  color: #B7A16B;
  font-size: 1.6rem;
  position: absolute;
  top: 12px; left: 20px;
  opacity: 0.55;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}

/* FOOTER */
footer {
  background: #222433;
  color: var(--color-accent);
  padding: 0 0 0 0;
  box-shadow: 0 -2px 24px #191b240c;
  border-top: 1.5px solid #32324633;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 0 18px 0;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-columns > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  max-width: 320px;
}
.footer-columns img {
  height: 38px;
  width: auto;
  margin-bottom: 14px;
}
.footer-columns h4 {
  margin-bottom: 6px;
  color: var(--color-neon);
}
.footer-bottom {
  padding: 10px 0 14px 0;
  text-align: center;
}
.footer-bottom small {
  color: #9c967f;
  letter-spacing: 0.04em;
  font-size: 0.96rem;
}
footer nav a {
  color: var(--color-accent);
  font-size: 1rem;
  transition: color var(--transition-main);
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 32px;
  z-index: 99991;
  background: #23263a;
  color: var(--color-accent);
  box-shadow: 0 2px 32px #1a1c2588, 0 1.5px 0 #B7A16B11;
  border-radius: 12px;
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 410px;
  animation: fadeInCookie 0.6s cubic-bezier(.62, .09, .29, 1.22);
}
@keyframes fadeInCookie {
  0% { opacity: 0; transform: translateY(100px) scale(0.97) }
  100% { opacity: 1; transform: translateY(0) scale(1) }
}
.cookie-banner__row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #191b24;
  border-radius: 40px;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  margin-left: 0;
  cursor: pointer;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
  box-shadow: 0 2px 12px #B7A16B22;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #adffef;
  color: #2C3246;
  box-shadow: var(--shadow-neon);
}
.cookie-btn--settings {
  background: none;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  box-shadow: none;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #191b24;
  color: #adffef;
  border-color: #adffef;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,28,38,0.97);
  z-index: 99992;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.33s cubic-bezier(.62, .09, .29, 1.22);
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal__content {
  background: #23263a;
  color: var(--color-accent);
  border-radius: 14px;
  padding: 36px 36px 28px 36px;
  box-shadow: 0 8px 56px #191b240f;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 24px;
  background: none;
  color: var(--color-secondary);
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal__toggle {
  width: 44px;
  height: 26px;
  border-radius: 18px;
  background: #191b24;
  border: 2px solid var(--color-secondary);
  position: relative;
  cursor: pointer;
  transition: border var(--transition-main), background var(--transition-main);
}
.cookie-modal__toggle.checked {
  background: #adffef;
  border-color: #adffef;
}
.cookie-modal__toggle:after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.20s;
  box-shadow: 0 2px 10px #B7A16B44;
}
.cookie-modal__toggle.checked:after {
  left: 21px;
  background: #2C3246;
}
.cookie-modal__category--always .cookie-modal__toggle {
  opacity: 0.4;
  pointer-events: none;
}

.cookie-modal__row {
  display: flex; flex-direction: row; gap: 24px; justify-content: flex-end; align-items: center; margin-top: 8px;
}

@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1;}
}

/* ANIMATIONS & TRANSITIONS */
.section, .card, .cta-button, .testimonial-card, .service-card, .features .content-wrapper > ul > li {
  transition: box-shadow 0.22s, background 0.22s, color 0.18s, border 0.18s;
}

/* UTILITIES */
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-20 { margin-bottom: 20px; }

/* MEDIA QUERIES - RESPONSIVE */
@media (max-width: 1024px) {
  .container { max-width: 900px; }
  .footer-columns { gap: 28px; }
}
@media (max-width: 820px) {
  .container { max-width: 98vw; }
  .footer-columns { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-columns > div { max-width: 100%; }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; padding-left: 10px; padding-right: 10px; }
  header .container { flex-direction: row; gap: 12px; padding-right: 6px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .cta-button { margin-left: 0; font-size: 1.08rem; padding: 10px 20px; }
  .hero { padding: 40px 0 30px 0; min-height: 210px; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 1rem; }
  .features .content-wrapper > ul, .services .content-wrapper > ul, .service-list, .footer-columns,
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .about .content-wrapper.text-section, .contact .content-wrapper.text-section {
    padding: 18px 8px;
  }
  table, th, td { font-size: 0.98rem; }
  .testimonial-card { padding: 17px; }
  .cookie-banner { left: 5px; right: 5px; max-width: 99vw; bottom: 11px; }
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 1.2rem; }
  h2, .h2 { font-size: 1.07rem; }
  .hero { padding: 26px 0 18px 0; }
  .section { padding: 20px 3px; }
  .content-wrapper { gap: 14px; }
}
