/* =====================
   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, 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #132d26;
  color: #F9F8F6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
*::selection {
  background: #A8C256;
  color: #132d26;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #A8C256;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9F8F6;
}
ul, ol {
  list-style: none;
}
/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  color: #A8C256;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: #A8C256;
  font-weight: 700;
}
em {
  color: #5cffcf;
  font-style: normal;
}
.text-section ul,
.content-wrapper ul {
  margin-bottom: 16px;
}
.text-section ul li,
.content-wrapper ul li {
  margin-bottom: 10px;
  padding-left: 0.5em;
}
.text-section ul li::before {
  content: '\2022';
  color: #22fcc6;
  font-size: 1.1em;
  padding-right: 0.5em;
  position: relative;
  top: 1px;
}
/* ===============
   LAYOUT
   =============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  flex: 1 0 auto;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 30px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #184C43;
  color: #F9F8F6;
  padding: 28px 22px;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 24px 0 #13132270;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 #09fbd394, 0 1.5px 7px 0 #13132244;
  transform: translateY(-6px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: 900px) {
  .text-image-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 22px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F9F8F6;
  color: #144438;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 #09fbd340, 0 1px 6px #1111110b;
  min-width: 230px;
  max-width: 600px;
  word-break: break-word;
  border-left: 5px solid #22fcc6;
}
.testimonial-card strong {
  color: #21554c;
  font-size: 1.05em;
  letter-spacing: 0.01em;
}
.testimonial-card p {
  margin: 0 0 4px 0;
  color: #222;
  font-style: italic;
  font-size: 1.07em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 18px 0 0 0;
}
.capacity-filter {
  display: inline-block;
  margin-top: 0.5em;
  font-size: 1.11em;
  color: #09fbd3;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
}
/* ===============
   HEADER / NAVBAR
   =============== */
header {
  background: #101d17;
  border-bottom: 2px solid #1b3c32;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 90;
  box-shadow: 0 2px 18px #09fbd32a;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 16px 0;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #A8C256;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.07em;
  border-radius: 4px;
  padding: 4px 11px;
  transition: background 0.16s, color 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #22fcc6a6;
  color: #132d26;
}
header nav img {
  height: 42px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 3px #22fcc6c0);
}
.mobile-menu-toggle {
  display: block;
  background: #184C43;
  color: #F9F8F6;
  border: none;
  font-size: 2.2rem;
  padding: 6px 16px 6px 6px;
  border-radius: 8px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, transform 0.2s;
  z-index: 101;
  box-shadow: 0 1px 6px #22fcc620;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22fcc6;
  color: #144438;
  transform: scale(1.09);
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
  header nav {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (max-width: 899px) {
  header nav {
    display: none;
  }
}
/* ===============
   MOBILE MENU
   =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #09362fa4;
  backdrop-filter: blur(7px);
  z-index: 200;
  transition: transform 0.35s cubic-bezier(0.63, 0.01, 0.38, 0.99);
  transform: translateX(-102vw);
  display: flex;
  flex-direction: column;
  gap: 30px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: #A8C256;
  color: #184C43;
  font-size: 2.2rem;
  border: none;
  border-radius: 8px;
  align-self: flex-end;
  margin: 22px 26px 0 0;
  padding: 2px 12px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.18s;
  z-index: 210;
  box-shadow: 0 2px 6px #22fcc640;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #22fcc6;
  color: #101d17;
  transform: scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 42px;
}
.mobile-nav a {
  color: #F9F8F6;
  background: #21554c77;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: 12px;
  width: 80vw;
  max-width: 400px;
  text-align: center;
  transition: background 0.14s, color 0.19s, box-shadow 0.21s;
  box-shadow: 0 2px 18px #184C4389;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A8C256;
  color: #144438;
  box-shadow: 0 3px 19px #22fcc680;
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ===============
   BUTTONS
   =============== */
.btn-primary {
  display: inline-block;
  background: #22fcc6;
  color: #144438;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 15px 38px;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-bottom: 6px;
  box-shadow: 0 2px 14px #22fcc684;
  transition: background 0.2s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  cursor: pointer;
  text-shadow: 0 1px #f7f7f7d3, 0 0 9px #14ffe2a6;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A8C256;
  color: #0e1e18;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 3px 20px #A8C25699;
}
/* ===============
   CARDS / WIDGETS
   =============== */
.card {
  background: #101d17;
  border: 1.5px solid #184C43;
  box-shadow: 0 2px 16px 0 #09fbd337;
  border-radius: 16px;
  color: #F9F8F6;
}
.card h3,
.card strong {
  color: #22fcc6 !important;
}
.card em {
  color: #A8C256;
}
.card img {
  height: 38px;
  margin-bottom: 9px;
  filter: drop-shadow(0 1.5px 3px #22fcc690);
}
/* ===============
   FOOTER
   =============== */
footer {
  background: #101d17;
  border-top: 2px solid #1b3c32;
  color: #A8C256;
  padding: 36px 0 14px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 24px #184C4350;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
}
footer nav a {
  color: #22fcc6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
  font-weight: 500;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #A8C256;
  text-decoration: underline;
}
footer img {
  height: 46px;
  filter: drop-shadow(0 1.5px 3px #22fcc699);
}
footer p {
  color: #b5d9ca;
  font-size: 0.95em;
  margin-bottom: 0;
}
/* ===============
   COOKIE BANNER & MODAL
   =============== */
#cookie-consent-banner,
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 500;
  background: #132d26ee;
  color: #F9F8F6;
  box-shadow: 0 -2px 16px #184C4384;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 16px;
  justify-content: center;
  animation: cookieFadeIn 0.5s;
  font-size: 16px;
}
@keyframes cookieFadeIn {
  from { bottom: -80px; opacity: 0; }
  to { bottom: 0; opacity: 1; }
}
.cookie-consent-banner p {
  flex: 1 1 200px;
  color: #F9F8F6;
  margin: 0 0 0 0;
}
.cookie-btn,
.cookie-btn-primary {
  background: #22fcc6;
  color: #142924;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01em;
  padding: 10px 18px;
  border: none;
  border-radius: 7px;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.22s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 1px 5px #22fcc655;
}
.cookie-btn:hover,.cookie-btn:focus,
.cookie-btn-primary:hover,.cookie-btn-primary:focus {
  background: #A8C256;
  color: #101d17;
  box-shadow: 0 3px 14px #A8C2567d;
}
.cookie-btn-border {
  background: transparent;
  color: #A8C256;
  border: 2px solid #A8C256;
  margin-right: 12px;
}
.cookie-settings-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 510;
  background: #101d179c;
  backdrop-filter: blur(7px);
  padding: 30px 22px 28px 22px;
  border-radius: 19px;
  border: 2px solid #22fcc6;
  box-shadow: 0 2px 36px #22fcc620;
  min-width: 300px;
  max-width: 88vw;
  color: #F9F8F6;
  display: none;
  flex-direction: column;
  gap: 19px;
}
.cookie-settings-modal.open {
  display: flex;
  animation: cookieModalIn 0.36s;
}
@keyframes cookieModalIn {
  from { transform: translate(-50%, -42%) scale(0.94); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 14px 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  color: #A8C256;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
}
.cookie-category input[type="checkbox"] {
  accent-color: #22fcc6;
  width: 19px;
  height: 19px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: transparent;
  color: #22fcc6;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  align-self: flex-end;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #A8C256;
}
/* ===============
   UTILS & MICRO INTERACTIONS
   =============== */
.shadow-neon {
  box-shadow: 0 0 16px #22fcc6, 0 1.5px 7px #184C4344, 0 0.5px 2px #09fbd344;
}
.neon-intext {
  color: #22fcc6;
  text-shadow: 0 2px 12px #22fcc680;
}
.gradient-accent-text {
  background: linear-gradient(90deg, #A8C256 15%, #22fcc6 55%, #A8C256 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          text-fill-color: transparent;
}
.bg-accent {
  background: #A8C256;
  color: #184C43;
}
/* Neutral dotted divider for UI separation */
.divider {
  border-top: 1.5px dotted #22fcc688;
  border-bottom: none;
  height: 0;
  margin: 29px 0 26px 0;
  width: 100%;
}
/* ICON helper */
.content-wrapper ul li img,
.card ul li img {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  filter: drop-shadow(0 0 6px #22fcc650);
}
@media (max-width: 600px) {
  .content-wrapper ul li img,
  .card ul li img {
    width: 20px;
    height: 20px;
    margin-right: 0.33em;
  }
}
/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 1100px) {
  .container {
    max-width: 940px;
  }
  .section, section {
    padding: 32px 9px;
  }
  footer .container {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .section, section {
    padding: 22px 5vw;
    margin-bottom: 44px;
  }
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    width: 96vw;
    max-width: 480px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .section, section {
    padding: 18px 2vw;
    margin-bottom: 34px;
  }
  .testimonial-card {
    padding: 15px;
    font-size: 0.97em;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .section, section {
    padding: 8px 2vw;
    margin-bottom: 20px;
  }
  .container {
    padding: 0 1.5vw;
  }
  .content-wrapper, footer .container {
    gap: 9px;
    font-size: 0.97em;
  }
  .btn-primary {
    padding: 12px 20px;
    font-size: 1em;
  }
  .testimonial-card {
    min-width: 0;
    width: 98vw;
    padding: 10px 6px;
    font-size: 0.95em;
  }
  .card {
    padding: 13px 7px;
    border-radius: 9px;
  }
  .card-container {
    gap: 12px;
  }
}
/* ===============
   ACCESSIBILITY
   =============== */
.sr-only { position: absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; border:0!important; }

/* Ensure high contrast in testimonials */
.testimonial-card p { color: #222; }
.testimonial-card strong { color:#184C43; }

/* Utility margin classes */
.mt-6 { margin-top: 6px !important; }
.mr-10 { margin-right: 10px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* Hide native scrollbars for mobile nav */
.mobile-nav { -ms-overflow-style:none; scrollbar-width:none; }
.mobile-nav::-webkit-scrollbar { display:none; }

/* ===============
   Z-INDEX LAYERS
   =============== */
header { z-index: 90; }
.mobile-menu { z-index: 200; }
.cookie-consent-banner { z-index: 500; }
.cookie-settings-modal { z-index: 510; }

/* ===============
   TRANSITIONS & ANIMATION MICROINTERACTIONS
   =============== */
a, .btn-primary, .card, .testimonial-card, .cookie-btn, .mobile-nav a, .mobile-menu-toggle {
  transition: background 0.15s, color 0.18s, box-shadow 0.15s, transform 0.18s;
}

/* ===============
   FORM FIELDS (kontakt.html, only if form added in the future)
   =============== */
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  background: #184C43;
  color: #F9F8F6;
  border: 1.5px solid #22fcc6;
  border-radius: 8px;
  padding: 13px 15px;
  margin-bottom: 16px;
  width: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 7px #184C4322;
  transition: border 0.15s;
}
input:focus, textarea:focus {
  outline: none;
  border: 1.5px solid #A8C256;
}

/* For decorative accent lines under headings */
h2:after {
  content: '';
  display: block;
  width: 46px;
  height: 4px;
  background: #22fcc6;
  border-radius: 2px;
  margin: 7px 0 0 0;
}

/* For benefit icons on backpack page */
.benefit-icons img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 1.5px 11px #22fcc650);
}
@media (max-width: 700px) {
  .benefit-icons img { width: 23px; height: 23px; }
}

/* Additional helpers for lists with images */
.content-wrapper ul li img, .card ul li img {
  margin-right: 9px;
  vertical-align:middle;
}

/* Ensure adequate margin below all sections */
section + section { margin-top: 0; }

/* ======================
   End of CSS
   ====================== */
