/* --------------------------------------------------------
  CSS RESET AND 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;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181F1B; /* Futuristic dark base */
  color: #F7F6F4;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #7eff99;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
:root {
  --primary: #24513C;
  --secondary: #91B486;
  --accent: #F7F6F4;
  --bg-dark: #181F1B;
  --bg-light: #242923;
  --neon-green: #37F9A1;
  --neon-blue: #30E4FF;
  --error: #FF4545;
  --shadow: 0 8px 24px 0 rgba(36, 81, 60, 0.16);
}

/* --------------------------------------------------------
  TYPOGRAPHY
-------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing:  0.02em;
  color: #7eff99;
  text-shadow: 0 2px 16px rgba(48, 228, 255, 0.16);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--neon-blue);
}
h4, h5, h6 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
p, ul, ol, li, address {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #F7F6F4;
}
strong {
  color: var(--neon-green);
  font-weight: 700;
}

/* --------------------------------------------------------
  LAYOUT CONTAINERS
-------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 34px;
    border-radius: 13px;
  }
}

/* --------------------------------------------------------
  HEADER & NAVIGATION
-------------------------------------------------------- */
header {
  background: #181F1B;
  border-bottom: 1px solid #26362B;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 0;
}
header a img {
  width: 135px;
  min-width: 90px;
  transition: filter 0.2s;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  z-index: 105;
}
.main-nav a {
  padding: 8px 18px;
  border-radius: 12px;
  color: var(--accent);
  position: relative;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.main-nav a.active,
.main-nav a:not(.cta):hover {
  background: rgba(48, 228, 255, 0.08);
  color: #7eff99;
}
.main-nav .cta {
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
  color: #181F1B;
  font-weight: 700;
  box-shadow: 0 4px 28px 0 rgba(38, 246, 171, 0.10);
  transition: background 0.16s, color 0.2s;
  border: none;
}
.main-nav .cta:hover {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  color: #181F1B;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #7eff99;
  font-size: 2rem;
  margin-left: 20px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(48, 228, 255, 0.15);
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -------------------- MOBILE MENU -------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #181F1B;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.55,.13,.46,.91);
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #30E4FF;
  margin: 18px 0 24px 0;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(48, 228, 255, 0.13);
  color: #29c7a6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid #26362B;
  color: #7eff99;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
  border-radius: 10px;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: rgba(48, 228, 255, 0.10);
  color: #30E4FF;
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --------------------------------------------------------
  HERO & SECTION STYLES
-------------------------------------------------------- */
section {
  margin-bottom: 60px;
}
section > .container {
  padding-top: 16px; padding-bottom: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 12px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-grid > li {
  flex: 1 1 220px;
  min-width: 220px;
  background: #202622;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(36,227,170,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid rgba(145,180,134,0.05);
  transition: box-shadow 0.2s, transform 0.19s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > li:hover,
.feature-grid > li:focus-within {
  box-shadow: 0 8px 32px 0 rgba(48, 228, 255, 0.13);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 38px; height: 38px;
}

/* --------------------------------------------------------
  CARDS & FLEX CONTAINERS
-------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #212B23;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 32px 20px 20px;
  box-shadow: 0 4px 28px 0 rgba(36, 81, 60, 0.08);
  position: relative;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(56,251,177,0.19);
  transform: translateY(-2px) scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* Species, reserve, team member lists */
.species-list, .reserve-list, .team-member-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.species-list > li, .reserve-list > li, .team-member-list > li {
  background: #212B23;
  border-radius: 14px;
  padding: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(145,180,134,0.07);
}
.species-list > li img, .reserve-list > li img, .team-member-list > li img {
  width: 22px; height: 22px; margin-right: 9px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .feature-grid, .species-list, .reserve-list, .team-member-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > li, .species-list > li, .reserve-list > li, .team-member-list > li {
    min-width: unset;
  }
}

/* Artikel/Beitrags Vorschau */
.articles-preview, .tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.articles-preview > li, .tip-list > li {
  background: #202622;
  border-radius: 11px;
  padding: 18px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.articles-preview > li:hover, .tip-list > li:hover {
  box-shadow: 0 4px 18px 0 rgba(48, 228, 255, 0.08);
  transform: translateY(-2px) scale(1.018);
}
.tip-list img {
  width: 24px; height: 24px; vertical-align: middle; margin-right: 10px;
}
@media (max-width: 768px) {
  .articles-preview, .tip-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* FOOTER */
footer {
  background: #181F1B;
  border-top: 1px solid #26362B;
  padding: 40px 0 0 0;
  color: var(--accent);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
}
.footer-content > * {
  min-width: 165px;
}
.footer-nav, .footer-quick-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
}
.footer-nav a, .footer-quick-links a {
  color: var(--secondary);
  font-size: 1rem;
  padding: 5px 0;
  border-radius: 8px;
  transition: color 0.18s, background 0.17s;
}
.footer-nav a:hover, .footer-quick-links a:hover {
  background: rgba(36,227,170,0.09);
  color: #7eff99;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.social-media-links a {
  display: inline-flex; height: 36px; width: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: #202622;
  transition: background 0.16s, box-shadow 0.15s;
}
.social-media-links a:hover {
  background: #37F9A1;
  box-shadow: 0 2px 12px #30E4FF50;
}
.social-media-links img {
  width: 18px; height: 18px;
}
address, .newsletter-signup {
  color: var(--accent);
  font-style: normal;
  font-size: 0.96rem;
  margin-bottom: 8px;
}
.newsletter-signup h4 {
  font-size: 1.1rem;
  color: #30E4FF;
  margin-bottom: 3px;
}
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  footer {
    padding-top: 19px;
  }
  .footer-content {
    padding-bottom: 18px;
  }
}

/* --------------------------------------------------------
  BUTTONS & CALLS TO ACTION
-------------------------------------------------------- */
.cta, button.cta, a.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
  color: #181F1B;
  border-radius: 16px;
  padding: 14px 38px;
  margin-top: 12px;
  box-shadow: 0 4px 26px 0 rgba(48,228,255,0.08);
  cursor: pointer;
  text-shadow: none;
  transition: background 0.2s, color 0.22s, box-shadow 0.19s, transform 0.14s;
}
.cta:hover, .cta:focus {
  color: #101211;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  box-shadow: 0 6px 32px #30E4FF40;
  transform: scale(1.03);
}

.button, .cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  margin-right: 10px;
  border: none;
  border-radius: 10px;
  background: var(--neon-blue);
  color: #181F1B;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s;
}
.button:hover, .cookie-btn:hover, .cookie-btn:focus {
  background: var(--neon-green);
  color: #101211;
  transform: scale(1.03);
}
.cookie-btn.reject {
  background: var(--error);
  color: #fff;
}
.cookie-btn.settings {
  background: #222923;
  color: #7eff99;
  border: 1px solid #30E4FF;
}
.cookie-btn.settings:hover {
  background: #30E4FF;
  color: #181F1B;
}

/* --------------------------------------------------------
  TESTIMONIALS
-------------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F6F4;
  color: #212B23;
  border-radius: 14px;
  box-shadow: 0 6px 34px #181F1B11;
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 0;
}
.testimonial-card p {
  color: #212B23;
  font-size: 1.13rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px 10px;
    font-size: 0.97rem;
  }
}

/* --------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
-------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #212B23 0%, #24513C 100%);
  color: #fff;
  width: 100vw;
  z-index: 10010;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -2px 24px #30E4FF24;
  padding: 17px 8px;
  gap: 22px;
  animation: cookieSlideIn 0.7s cubic-bezier(.56,.18,.36,.99);
}
#cookie-banner .cookie-text {
  max-width: 440px;
  font-size: 1rem;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
@media (max-width:600px) {
  #cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 18px 8px 28px;
  }
  #cookie-banner .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
}
@keyframes cookieSlideIn {
  from { transform: translateY(100px); opacity: 0;}
  to   { transform: translateY(0); opacity: 1;}
}

#cookie-modal {
  position: fixed;
  z-index: 10040;
  left:0; top: 0; right:0; bottom:0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(17,31,17,0.88);
}
.cookie-modal-content {
  background: #222923;
  border-radius: 18px;
  color: #fff;
  max-width: 420px;
  width: 88vw;
  padding: 34px 30px 28px 30px;
  box-shadow: 0 0 32px #30E4FF55;
  animation: modalFloat .46s cubic-bezier(.19,.65,.52,1.41);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalFloat {
  from { transform: scale(0.85) translateY(100px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  color: #7eff99;
  font-size: 1.22rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #181F1B;
  border-radius: 10px;
  padding: 10px 14px;
}
.cookie-category label {
  flex: 1;
  color: #F7F6F4;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #30E4FF;
  width: 21px;
  height: 21px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* Hide modal/banner (JS will add .hidden) */
.hidden {display:none !important;}

/* --------------------------------------------------------
  GENERAL SPACING AND COMPONENTS
-------------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
ul, ol {
  margin-left: 0;
  margin-bottom: 8px;
}
ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* LINKS */
a {
  color: #30E4FF;
  text-decoration: none;
  transition: color 0.18s; font-weight: 500;
}
a:hover, a:focus {
  color: #7eff99;
}
h2 + p {
  margin-top: 4px;
}

/* --------------------------------------------------------
  RESPONSIVE BEHAVIOR
-------------------------------------------------------- */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.05rem; }
  .footer-content {
    gap: 15px;
  }
  .card, .feature-grid > li, .species-list > li, .reserve-list > li, .team-member-list > li{
    padding: 14px 11px;
  }
}

/* --------------------------------------------------------
  MISC/STYLE DETAILS
-------------------------------------------------------- */
::-webkit-scrollbar {
  height: 7px;
  width: 7px;
  background: #222923;
}
::-webkit-scrollbar-thumb {
  background: #24513C;
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #a1bcab; }
::-moz-placeholder { color: #a1bcab; }
:-ms-input-placeholder { color: #a1bcab; }
::placeholder { color: #a1bcab; }

/* Neumorphic-like soft shadow for "futuristic" touch */
.section, .card, .feature-grid > li, .articles-preview > li, .tip-list > li {
  box-shadow: 0 4px 28px 0 rgba(36,81,60,0.11);
}

/* --------------------------------------------------------
  VISUAL ACCENTS - NEON GLOWS
-------------------------------------------------------- */
h1, h2, h3, .cta, .main-nav .cta {
  text-shadow: 0 2px 16px rgba(48, 228, 255, 0.14), 0 0 8px #7eff9922;
}
.cta:focus, .main-nav .cta:focus {
  outline: 2px solid #30E4FF;
}

hr {
  border: none;
  border-top: 1px solid #26362B;
  margin: 24px 0;
}

/* Focus state for accessibility */
*:focus {
  outline: 2px solid #30E4FF;
  outline-offset: 2px;
}

/* --------------------------------------------------------
  PRINT STYLES (Optional)
-------------------------------------------------------- */
@media print {
  header, nav, footer, .mobile-menu, #cookie-banner, #cookie-modal { display: none !important; }
  section, main { background: #fff !important; color: #000 !important; }
}
