/* Lightwave Hub Creative Artistic CSS Stylesheet */
/* === 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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.7;
  background: #fafbff;
  color: #2c3350;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
:root {
  --color-primary: #1F365D;
  --color-secondary: #E5EEF7;
  --color-accent: #FFB400;
  --color-bg1: #FAFBFF;
  --color-bg2: #F4F6FF;
  --color-contrast: #2C3350;
  --color-focus: #E2C687;
  --radius: 20px;
  --shadow1: 0 2px 12px rgba(31,54,93,0.08);
  --shadow2: 0 6px 16px rgba(255,180,0,0.08);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 800;
}
h1 {
  font-size: 2.7rem;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  letter-spacing: 0.1px;
}
h4, h5, h6 {
  opacity: 0.9;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: #2C3350;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
strong { font-weight: 700; }

/* === GLOBAL SPACING & CONTAINERS === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg2);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--color-bg1);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 16px 0 rgba(31,54,93,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
.logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 8px #FFB40033);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 2px;
  font-size: 1rem;
  position: relative;
  padding: 6px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #1F365D;
}

.cta-btn {
  background: var(--color-accent);
  color: var(--color-primary)!important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  padding: 10px 28px;
  border-radius: 35px;
  margin-left: 18px;
  transition: background .18s, color .18s, box-shadow .22s;
  box-shadow: var(--shadow2);
  letter-spacing: 0.05em;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #f8c74b;
  color: var(--color-primary);
  box-shadow: 0 4px 28px #E5EEF7;
  transform: translateY(-2px) scale(1.02);
}

/* --- BURGER MENU (MOBILE NAVIGATION) --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2.05rem;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .18s, box-shadow .14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #ffe4a1;
  box-shadow: 0 2px 10px #FFB40052;
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 22px #1f365d18;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,.2,.05,1), box-shadow .25s;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0 0 30px 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 48px #1F365D22;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 16px 0 0;
  background: var(--color-secondary);
  font-size: 1.85rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
  padding: 0 32px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 7px;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 420px) {
  .mobile-menu {
    width: 94vw;
    min-width: 0;
  }
  .mobile-nav {
    padding: 0 10vw;
  }
}

/* Overlay disabled for touch outside menu to be handled in JS (not in CSS) */

/* === HERO & GENERAL CONTENT === */
main {
  background: none;
  padding-bottom: 40px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 0;
}
.feature-grid, .service-cards, .team-list, .guide-list, .inspiration-tiles, .tip-blocks, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.feature-grid > div, .service-cards > div, .team-list > div, .guide-list > div, .inspiration-tiles > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 32px 24px 24px 24px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 20px;
  position: relative;
  gap: 10px;
}
.feature-grid > div:hover,
.service-cards > div:hover,
.team-list > div:hover,
.guide-list > div:hover,
.inspiration-tiles > div:hover {
  box-shadow: 0 8px 36px #FFB40020;
  transform: translateY(-5px) scale(1.025);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 3px 10px #FFB40033);
}

/* Testimonials - special contrast */
.testimonials {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px #1F365D09, var(--shadow2);
  min-width: 250px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  position: relative;
  color: #222;
  font-size: 1.07rem;
  font-family: var(--font-body);
  transition: box-shadow .17s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px #FFB40026;
  transform: scale(1.02);
}
.testimonial-card p {
  font-style: italic;
  color: #21284c;
  margin-bottom: 10px;
}
.testimonial-card span {
  align-self: flex-end;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: .98rem;
  font-weight: 700;
}

/* Distinctive card explanations (Kontakt, About, etc.) */
.contact-info {
  background: var(--color-secondary);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.contact-info img {
  width: 28px;
}
.map-embed {
  margin-top: 12px;
  background: #fff1c8;
  border-radius: 10px;
  padding: 16px 18px;
  color: #26304a;
  font-family: var(--font-display);
  font-size: .98rem;
}

.tip-blocks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 14px;
  background: var(--color-secondary);
  border-radius: 13px;
}
.tip-blocks h3 {
  color: var(--color-primary);
  margin-bottom: 6px;
}
.tip-blocks ul {
  margin-left: 16px;
  list-style: disc inside;
  color: #555;
}

/* List style for text-sections, FAQs, etc. */
.text-section ul {
  margin-left: 24px;
  list-style: disc;
  color: #445;
  margin-bottom: 18px;
}
.text-section li {
  margin-bottom: 9px;
  font-size: 1.01rem;
}
.text-section h2, .text-section h3 {
  color: var(--color-accent);
  margin-top: 24px;
  margin-bottom: 8px;
}

/* Confirmation & callout blocks */
.confirmation {
  background: #F4FDE5;
  border-radius: 14px;
  padding: 32px 18px;
  box-shadow: 0 8px 24px #B7EFB26e, var(--shadow2);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.confirmation h1 {
  color: #49AA47;
}

/* --- CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .17s;
}
.card:hover {
  box-shadow: 0 10px 45px #FFB40012;
  transform: translateY(-4px) scale(1.01);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FOOTER STYLES --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 20px 0;
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
footer .logo img {
  filter: brightness(2.5) drop-shadow(0 2px 8px #FFB40066);
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-size: .98rem;
  font-family: var(--font-display);
  margin-bottom: 4px;
  opacity: 0.85;
  transition: color .17s, text-shadow .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  text-shadow: 0 1px 12px #FFB400aa;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  opacity: 0.93;
  margin: 0;
}
.footer-contact img {
  width: 18px;
  filter: invert(1);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 980px) {
  .feature-grid > div, .service-cards > div, .team-list > div, .guide-list > div, .inspiration-tiles > div {
    min-width: 48%;
    max-width: 100%;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7vw;
  }
  .content-wrapper, .feature-grid, .service-cards, .testimonials, .team-list, .guide-list, .inspiration-tiles {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .team-list > div, .service-cards > div,
  .guide-list > div, .inspiration-tiles > div, .card {
    min-width: 98%;
    padding: 20px 12px 15px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  h3 {
    font-size: 1rem;
  }
  .container {
    padding: 0 6vw;
  }
}

/* === BUTTONS & MICROLEVEL INTERACTIONS === */
button, .cta-btn {
  cursor: pointer;
  outline: none;
}
button:active, .cta-btn:active {
  filter: brightness(0.95);
  transform: scale(0.98);
}

/* --- FOCUS STYLES FOR ACCESSIBILITY --- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  background: #fff9e5;
}

/* --- HOVER EFFECTS --- */
a:hover, .cta-btn:hover {
  text-decoration: none;
}

/* --- CUSTOM SCROLLBAR for artistic accent --- */
::-webkit-scrollbar {
  width: 8px;
  background: var(--color-bg1);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 8px;
}

/* === COOKIE BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff8ef;
  color: #1f365d;
  z-index: 1500;
  box-shadow: 0 -2px 24px #1F365D15;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px 16px 28px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  animation: cookieSlideIn 0.6s cubic-bezier(.66,.2,.25,1.2);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: 12px;
}
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
  transition: background .16s, color .12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  transition: background .15s, color .13s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 14px 16px;
    font-size: 0.99rem;
    gap: 14px;
  }
  .cookie-banner-buttons {
    gap: 10px;
  }
}
.cookie-modal-overlay {
  position: fixed;
  z-index: 1999;
  inset: 0;
  background: rgba(30,44,89,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeIn .4s cubic-bezier(.55,.16,.33,1);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff8ef;
  border-radius: 22px;
  box-shadow: 0 8px 42px #1F365D26;
  padding: 38px 32px 28px 32px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--font-body);
  color: #263251;
  animation: popIn .33s cubic-bezier(.54, 1.35, .55, .93);
}
@keyframes popIn {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.32rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-toggle {
  width: 42px;
  height: 26px;
  border-radius: 16px;
  background: var(--color-secondary);
  position: relative;
  cursor: pointer;
  transition: background .17s;
  margin-right: 7px;
}
.cookie-modal .cookie-toggle.enabled {
  background: var(--color-accent);
}
.cookie-modal .cookie-toggle::after {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px #FFB40033;
  transition: left .19s cubic-bezier(.52,.6,.5,1.45), background .16s;
}
.cookie-modal .cookie-toggle.enabled::after {
  left: 20px;
  background: #fff5dc;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
}
.cookie-modal .cookie-category.essential label {
  color: #a3a5b2;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  background: #b0cdee;
  cursor: not-allowed;
  pointer-events: none;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-buttons button {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 9px;
  font-size: 1rem;
  padding: 9px 22px;
  border: none;
  transition: background .13s, color .13s;
}
.cookie-modal .cookie-modal-buttons button:hover,
.cookie-modal .cookie-modal-buttons button:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 26px 7vw 20px 7vw;
  }
  .cookie-modal h2 {
    font-size: 1.02rem;
  }
}

/* === ARTISTIC FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

/* For future SVG decorations, add .decor and style with position: absolute as needed */

/* ARTISTIC HIGHLIGHT RIBBONS */
h1, h2, h3 {
  position: relative;
  z-index: 1;
}
h1::after, h2::after, h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 69%;
  width: 54px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 12px;
  opacity: 0.13;
  z-index: -1;
  pointer-events: none;
}
h2::after {
  width: 38px;
  height: 6px;
}
h3::after {
  width: 26px;
  height: 5px;
}

/* === VISUAL HIERARCHY AND SPACING === */
.section + .section {
  margin-top: 0;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 14px;
}
.content-wrapper {
  margin-bottom: 30px;
}

/* --- ACCESSIBLE COLOR CONTRAST FOR TESTIMONIALS & REVIEWS --- */
.testimonial-card {
  background: #fff;
  color: #21284c;
}

/* --- Z-INDEX LAYERING EXAMPLES (mobile, cookie, header) --- */
header { z-index: 1000; }
.mobile-menu { z-index: 2000; }
.cookie-banner, .cookie-modal-overlay { z-index: 1999; }

/* === END === */
