/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #131a20 0%, #276076 100%);
  color: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: background 0.5s;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin: 0 0 1.5em 1.2em;
  padding: 0;
}
ul {
  list-style: disc inside;
}
li+li {
  margin-top: 0.5em;
}
a {
  color: #61f7ee;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6A66D;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 {
  font-size: 2.67rem;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px #29515787;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
p, label, input, span, q {
  font-size: 1rem;
}
q {
  quotes: "\201E" "\201C";
  font-style: italic;
  color: #F6A66D;
}
.text-section > p, .text-section > ul {
  margin-bottom: 18px;
}

/* COLOR PALETTE (BRAND) */
:root {
  --color-primary: #295157;
  --color-secondary: #9D432C;
  --color-accent: #FFFFFF;
  --color-bg: #101820;
  --color-bg-alt: #20323A;
  --color-neon: #61f7ee;
  --color-danger: #E74C3C;
  --color-success: #14FF90;
  --color-shadow: 0 4px 24px 0 #000a2c44;
  --color-shadow-card: 0 2px 18px 0 #29515733;
  --color-footer-bg: #18343A;
  --color-border: #294c520f;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: rgba(40, 81, 87, 0.30);
  border-radius: 20px;
  box-shadow: var(--color-shadow-card);
  padding: 40px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--color-bg-alt);
  box-shadow: var(--color-shadow-card);
  padding: 28px 20px 24px 20px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F5F7FA;
  color: #182024;
  border-left: 4px solid var(--color-neon);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 #29515722;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 540px;
  width: 100%;
  font-size: 1rem;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97em;
  color: var(--color-secondary);
  opacity: 0.95;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* BUTTONS & CTA */
.cta-btn, .content-wrapper .cta-btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  background: linear-gradient(100deg, #61f7ee 0%, #14FF90 100%);
  color: #182024;
  border: none;
  margin-top: 18px;
  box-shadow: 0 2px 12px 0 #61f7ee44;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.22s, background 0.2s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus, button:hover, button:focus {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(90deg, #14FF90 10%, #61f7ee 90%);
  box-shadow: 0 4px 24px 0 #14FF904d;
  color: #18343A;
}
.content-wrapper button, .content-wrapper .cta-btn {
  margin-top: 8px;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
}

/* INPUTS */
input[type="text"], input[type="search"] {
  width: 100%;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid #61f7ee;
  background: #12212B;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px 0 #12212B44;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none;
  transition: border 0.18s, background 0.18s;
}
input[type="text"]:focus, input[type="search"]:focus {
  border-color: #14FF90;
  background: #182024;
}

/* HEADER & NAV */
header {
  width: 100%;
  background: rgba(29, 62, 79, 0.92);
  box-shadow: 0 2px 24px 0 #29515744;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img[alt*="NovaGathering Küche"] {
  height: 36px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: #E5FBFB;
  font-size: 1rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 3px;
  margin-right: 8px;
  transition: color 0.18s;
}
header nav a:last-child {
  margin-right: 0;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(100deg, #61f7ee 0%, #14FF90 100%);
  transition: width 0.22s;
  border-radius: 3px;
  margin: 0 auto;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
header nav a:hover, header nav a:focus {
  color: #14FF90;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #61f7ee;
  padding: 5px 14px 5px 8px;
  cursor: pointer;
  z-index: 201;
}
@media (max-width: 900px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, #18343A 80%, #61f7ee22 100%);
  z-index: 250;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.4s cubic-bezier(.77, .2, .05, 1.0);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 40px #101820c0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 16px 22px 12px auto;
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.18s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #14FF90;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 36px 22px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 8px 0;
  border-bottom: 1px solid #294c521c;
  width: 100%;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #61f7ee;
  background: none;
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTION LAYOUTS */
.section .container {
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
  .content-wrapper {
    padding: 32px 12px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    padding: 26px 7px;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 96vw;
    font-size: 0.99rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 4px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* FOOTER */
footer {
  background: var(--color-footer-bg);
  border-top: 2px solid #29515755;
  box-shadow: 0 -4px 44px #18343A55;
  color: #FFFFFF;
  padding: 0 0 0 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 34px 18px 22px 18px;
}
footer img[alt*="logo-mark"] {
  height: 34px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
footer nav a {
  color: #B4FFF7;
  font-size: 1rem;
  transition: color 0.17s;
  border-bottom: 2px solid #61f7ee00;
  padding-bottom: 1px;
}
footer nav a:hover, footer nav a:focus {
  color: #14FF90;
  border-bottom: 2px solid #14FF90;
}
footer .text-section {
  font-size: 0.97rem;
  color: #dae4de;
}
footer .contact-details {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.97rem;
  color: #c3e7e2;
}
footer .contact-details img {
  width: 19px;
  opacity: 0.83;
  margin-right: 5px;
}

/* SPECIAL LAYOUTS & COMPONENTS */
.text-section {
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 22px;
}
.privacy-note {
  background: #29515717;
  border-left: 4px solid #61f7ee;
  border-radius: 6px;
  padding: 12px 18px;
  color: #fff;
  font-size: 0.99rem;
  margin-top: 18px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #18343A;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 0.97rem;
  margin-top: 9px;
}
.location-map img {
  width: 38px;
  height: 38px;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta-btn, button {
  transition: transform 0.18s, box-shadow 0.19s, background 0.22s, color 0.22s;
}
.cta-btn:active, button:active {
  transform: scale(0.97);
  box-shadow: 0 1px 6px #14FF9033;
}
input[type="text"]:focus, input[type="search"]:focus {
  box-shadow: 0 0 0 2px #14FF908f;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  min-width: 330px;
  width: 90vw;
  max-width: 550px;
  background: #20323A;
  color: #E5FBFB;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -2px 24px 0 #18343A99;
  padding: 28px 18px 22px 18px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-size: 1rem;
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.77, .2, .05, 1);
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  color: #B4FFF7;
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.45;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-actions button, .cookie-actions .cta-btn {
  font-size: 0.98rem;
  padding: 8px 20px;
  margin: 0;
  border-radius: 20px;
  font-weight: 500;
  border: none;
  box-shadow: 0 1px 8px #61f7ee22;
}
.cookie-actions .accept {
  background: linear-gradient(100deg, #14FF90 0%, #61f7ee 100%);
  color: #1f2e32;
}
.cookie-actions .reject {
  background: #E74C3C;
  color: #fff;
}
.cookie-actions .settings {
  background: none;
  color: #61f7ee;
  border: 1.5px solid #61f7ee;
}
.cookie-actions .accept:hover, .cookie-actions .accept:focus {
  background: linear-gradient(90deg, #61f7ee 10%, #14FF90 90%);
  color: #1f2e32;
}
.cookie-actions .reject:hover, .cookie-actions .reject:focus {
  background: #B73222;
}
.cookie-actions .settings:hover, .cookie-actions .settings:focus {
  background: #20323A;
  color: #14FF90;
  border-color: #14FF90;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #101820bb;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #18343A;
  border-radius: 20px;
  padding: 38px 24px 24px 24px;
  box-shadow: 0 8px 44px 0 #10182099;
  width: 96vw;
  max-width: 410px;
  min-width: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  color: #61f7ee;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.cookie-modal li {
  margin-bottom: 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal-toggle {
  width: 38px;
  height: 22px;
  border-radius: 16px;
  background: #2B5364;
  border: 2px solid #61f7ee;
  position: relative;
  cursor: pointer;
  transition: background 0.18s, border 0.18s;
  margin-right: 8px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cookie-modal-toggle[data-enabled="true"] {
  background: #14FF90;
  border-color: #14FF90;
}
.cookie-modal-toggle .dot {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
  box-shadow: 0 1px 2px #0005;
}
.cookie-modal-toggle[data-enabled="true"] .dot {
  left: 20px;
  background: #fff;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 2px;
  top: 4px;
  background: none;
  border: none;
  padding: 3px 9px 3px 9px;
  color: #fff;
  font-size: 1.55rem;
  cursor: pointer;
  border-radius: 14px;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #61f7ee44;
  color: #14FF90;
}

/* NEON ACCENT RING (DECORATIVE) */
.card:before {
  content: '';
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 22px;
  border: 2px solid transparent;
  box-shadow: 0 0 18px 2px #61f7ee66;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* VISUAL HIERARCHY & SPACING */
main {
  margin-bottom: 36px;
  margin-top: 0;
}
div + section, section + section {
  margin-top: 28px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 10px;
}

/* UTILITIES */
.hide-desktop {
  display: none;
}
@media (max-width: 900px) {
  .hide-desktop {
    display: block;
  }
  .hide-mobile {
    display: none !important;
  }
}

/* ACCESSIBILITY & FOCUS STATES */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2px dashed #61f7ee;
  outline-offset: 2px;
}

/* SPECIAL COMPONENT CLASSES */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #B4FFF7;
}

/* Z-INDEX CONTROL */
header { z-index: 100; }
.mobile-menu { z-index: 250; }
.cookie-banner { z-index: 300; }
.cookie-modal-overlay { z-index: 350; }

/* DARK/LIGHT TESTIMONIAL CONTRAST */
.testimonial-card {
  background: #F5F7FA;
  color: #182024;
  box-shadow: 0 2px 8px #29515714;
}

/* Others */
::-webkit-input-placeholder { color: #9ceeed; }
::-moz-placeholder { color: #9ceeed; }
:-ms-input-placeholder { color: #9ceeed; }
::placeholder { color: #9ceeed; }

/* Style for special cookie settings disabled toggles */
.cookie-modal-toggle[data-always="true"] {
  background: #14FF90;
  border-color: #14FF90;
  opacity: 0.62;
  cursor: not-allowed;
}
.cookie-modal-toggle[data-always="true"] .dot {
  left: 20px;
}
/* End CSS */
