/* -----------------------
   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, 
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #151E1B;
  color: #F2E9D2;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #6BF7B5;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,0,.1,1);
}
a:hover, a:focus {
  color: #A38343;
  outline: none;
}
ul, ol {
  margin: 20px 0 20px 25px;
}
li {
  margin-bottom: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FAFFD8;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(32,91,52,0.12);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
p, blockquote, cite, em, strong {
  font-family: 'Roboto', Arial, sans-serif;
}
strong { color: #A38343; font-weight: 700; }
em { color: #6BF7B5; }
blockquote {
  font-size: 1.125rem;
  border-left: 4px solid #A38343;
  margin-bottom: 8px;
  padding-left: 20px;
  color: #F2E9D2;
  font-style: italic;
}
cite {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  color: #205B34;
  font-style: normal;
  font-weight: 700;
}

/* Typography hierarchy */
.section h1, .section h2, .section h3 {
  margin-top: 0;
  margin-bottom: 24px;
}

/*------------------------
  BRAND COLORS & EFFECTS
------------------------*/
:root {
  --primary: #205B34;
  --primary-dark: #183D25;
  --secondary: #A38343;
  --accent: #F2E9D2;
  --bg-main: #151E1B;
  --bg-section: #1A2A23;
  --neon-green: #6BF7B5;
  --neon-gold: #FFE16B;
  --neon-blue: #48D3F2;
}

/* NEON + MODERN FUTURISTIC EFFECTS */
.neon {
  color: var(--neon-green);
  text-shadow: 0 0 6px var(--neon-green),0 0 14px var(--primary)
}

/*----------------------
    LAYOUT CONTAINERS
----------------------*/
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: 20px;
  box-shadow: 0 2px 32px 0 rgba(32,91,52,.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #1A2A23;
  border: 1px solid rgba(107,247,181, .12);
  box-shadow: 0 4px 28px 0 rgba(107,247,181,.06);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(.55,0,.1,1), border 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(107,247,181,0.17);
  border-color: var(--neon-green);
  z-index: 2;
}
.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;
  background: #F2E9D2;
  color: #205B34;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(163,131,67,0.08);
  margin-top: 12px;
  min-width: 0;
  max-width: 680px;
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  border-left: 4px solid #A38343;
  color: #205B34;
  margin: 0;
}
.testimonial-card cite {
  color: #A38343;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*-------------------------
         BUTTONS
--------------------------*/
.primary-cta, .secondary-cta, .testimonial-card a, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: linear-gradient(90deg, #A38343 0%, #6BF7B5 100%);
  color: #151E1B;
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: bold;
  border-radius: 22px;
  padding: 11px 32px;
  cursor: pointer;
  text-shadow: 0 1px 5px rgba(107,247,181,.18);
  letter-spacing: .05em;
  box-shadow: 0 4px 18px 0 rgba(163,131,67,0.11);
  margin: 10px 5px;
  transition: background 0.18s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.primary-cta:hover, .secondary-cta:hover, .cookie-banner button:hover {
  background: linear-gradient(90deg,#6BF7B5 0%,#A38343 100%);
  color:#205B34;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 30px 0 rgba(163,131,67,0.2);
}
.secondary-cta {
  background: linear-gradient(90deg,#205B34 0%, #48D3F2 100%);
  color: #F2E9D2;
  border: 1.5px solid #6BF7B5;
}
.secondary-cta:hover{
  background: linear-gradient(90deg,#48D3F2 10%,#205B34 80%);
  color: #A38343;
  border-color: #A38343;
}

/*------------------------
          HEADER
------------------------*/
header {
  background: #141817;
  border-bottom: 1px solid rgba(107,247,181,.07);
  position: relative;
  z-index: 11;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px 18px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  width: 120px;
  max-height: 52px;
  filter: drop-shadow(0 2px 8px rgba(163,131,67,0.04));
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #F2E9D2;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 2px 0;
  transition: color 0.17s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#A38343,#6BF7B5);
  border-radius: 1px;
  margin: 2px 0 0 0;
  transition: width 0.23s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover { color: #6BF7B5; }

/* Burger hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #6BF7B5;
  font-size: 2.2rem;
  padding: 10px 18px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(32,91,52,0.09);
  border: 2px solid #6BF7B5;
  transition: background 0.17s, border 0.22s;
}
.mobile-menu-toggle:focus {
   outline: 2px solid #A38343;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,42,35,0.98);
  color: #F2E9D2;
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.66,.12,.41,1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  color: #A38343;
  border: 2px solid #A38343;
  border-radius: 50%;
  padding: 10px 12px 4px 12px;
  margin: 18px 0 8px 18px;
  align-self: flex-start;
  cursor: pointer;
  transition: border 0.16s, color 0.17s;
}
.mobile-menu-close:hover {
  border-color: #6BF7B5;
  color: #6BF7B5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 95vw;
  margin: 12px 0 0 18px;
}
.mobile-nav a {
  color: #ffffff;
  font-size: 1.28rem;
  padding: 10px 4px 10px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.16s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6BF7B5;
  border-bottom: 2px solid #A38343;
}

@media (max-width: 992px){
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 850px){
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    margin-right: 4px;
  }
}

/*------------------------
          HERO
------------------------*/
.hero-section {
  background: linear-gradient(90deg, #183D25 60%, #205B34 100%);
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
  position: relative;
}
@media (max-width: 780px){
  .hero-section {
     padding: 36px 0 24px 0;
  }
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 660px;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: #FAFFD8;
  text-shadow: 0 6px 32px #205B34, 0 0 8px #6BF7B5;
}
.hero-section p {
  font-size: 1.22rem;
  color: #D3EBD2;
  margin-bottom: 6px;
}

/*--------------------------
   FEATURES, ABOUT, ETC.
---------------------------*/
.features-section ul, .services-overview ul, .about-section ul, .parks-features ul, .safety-section ul, .faq-section ul, .contact-preview ul, .contact-section ul, .privacy-policy-section ul, .gdpr-policy-section ul, .terms-section ul, .cookie-policy-section ul, .inspirace-section ul {
  list-style: disc outside;
  margin: 18px 0 18px 24px;
  padding-left: 16px;
}
.features-section li, .services-overview li, .about-section li, .parks-features li, .safety-section li, .faq-section li, .contact-preview li, .contact-section li, .privacy-policy-section li, .gdpr-policy-section li, .terms-section li, .cookie-policy-section li, .inspirace-section li{
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
}
.services-overview ul, .services-section ul {
  margin-bottom: 16px;
}
.services-section li {
  border-left: 3px solid #6BF7B5;
  padding-left: 22px;
  background: rgba(32,91,52,0.035);
  margin-bottom: 18px;
  border-radius: 8px;
}

.content-wrapper ul {
  margin-bottom: 10px;
}

.inspirational-quote {
  font-size: 1.28rem;
  font-style: italic;
  color: #A38343;
  border-left: 4px solid #A38343;
  padding-left: 18px;
  margin-bottom: 10px;
}

/*---------------------------
   SECTIONS (SPACING)
----------------------------*/
.section,
.features-section,
.about-section,
.services-overview,
.services-section,
.contact-section,
.contact-preview,
.privacy-policy-section,
.gdpr-policy-section,
.terms-section,
.cookie-policy-section,
.thank-you-section,
.inspired-nature-section,
.inspirace-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: 20px;
  box-shadow: 0 2px 32px 0 rgba(32,91,52,.05);
}

@media (max-width: 768px) {
  .section, .features-section, .about-section, .services-overview, .services-section, .contact-section, .contact-preview, .privacy-policy-section, .gdpr-policy-section, .terms-section, .cookie-policy-section, .thank-you-section, .inspired-nature-section, .inspirace-section {
    padding: 22px 8px;
    border-radius: 13px;
    margin-bottom: 32px;
  }
}

/*---------------------------
         TESTIMONIALS
----------------------------*/
.testimonial-preview .testimonial-card,
.services-section .testimonial-card,
.inspirace-section .testimonial-card {
  background: #F2E9D2;
  color: #205B34;
  box-shadow: 0 4px 25px 0 rgba(163,131,67,.08);
  border-radius: 18px;
  padding: 22px 18px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  max-width: 680px;
  font-size: 1.08rem;
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  color: #205B34;
  border-left: 4px solid #A38343;
}
.testimonial-card cite {
  color: #A38343;
}

@media (max-width: 600px) {
  .testimonial-card,
  .testimonial-preview .testimonial-card {
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
    padding: 17px 9px;
  }
}

/*---------------------------
         FOOTER
----------------------------*/
footer {
  background: #151E1B;
  border-top: 1.5px solid rgba(163,131,67,0.14);
  color: #FAFFD8;
  margin-top: 18px;
}
footer .container {
  padding: 18px 9px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-main-nav,
.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-main-nav a, .footer-legal-nav a {
  color: #FAFFD8;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-main-nav a:hover, .footer-legal-nav a:hover {
  color: #6BF7B5;
}
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 6px;
}
.brand-info img {
  height: 32px;
  margin-bottom: 3px;
}
.brand-info span {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #A38343;
}
.brand-info small {
  font-size: 0.85rem;
  color: #6BF7B5;
}
.contact-info {
  margin-top: 4px;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-size: 0.98rem;
}
.contact-info li {
  margin-bottom: 5px;
}

@media (max-width: 820px){
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/*---------------------------
      RESPONSIVE FLEXBOX
-----------------------------*/
@media (max-width: 992px) {
  .content-wrapper, .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/*---------------------------
    ANIMATIONS & EFFECTS
-----------------------------*/
@media (hover: hover) {
  .card:hover,
  .testimonial-card:hover {
    box-shadow: 0 10px 36px 0 rgba(107,247,181,0.23);
    border-color: #6BF7B5;
  }
}
section, .card, .testimonial-card { transition: box-shadow 0.22s, border 0.18s; }

.primary-cta, .secondary-cta,
.mobile-menu-toggle, .mobile-menu-close, .cookie-banner button {
  transition: background 0.18s, color 0.2s, transform 0.21s;
}

/* Micro-interaction for cta */
.primary-cta:active, .secondary-cta:active { transform: scale(0.97); }

/*---------------------------
          COOKIE BANNER
-----------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #151E1B;
  color: #F2E9D2;
  border-top: 2px solid #A38343;
  box-shadow: 0 -4px 22px 0 rgba(107,247,181,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  z-index: 15000;
  padding: 20px 16px;
  font-size: 1.03rem;
  animation: bannerPopIn 0.7s cubic-bezier(.42,0,.58,1) 0s 1;
}
@keyframes bannerPopIn {
  0% { transform: translateY(100%); opacity: 0; }
  80% { transform: translateY(-12px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 180px;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 18px;
  margin: 0 2px;
  padding: 9px 20px;
  font-weight: 700;
  border: none;
}
.cookie-banner .accept {
  background: #6BF7B5;
  color: #151E1B;
}
.cookie-banner .reject {
  background: #A38343;
  color: #151E1B;
}
.cookie-banner .settings {
  background: #151E1B;
  color: #F2E9D2;
  border: 1.5px solid #A38343;
}
.cookie-banner .settings:hover {
  color: #A38343;
  background: #222;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px;
    gap: 8px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
  }
}

/* COOKIE MODAL/POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,42,35,0.98);
  z-index: 16000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #F2E9D2;
  color: #205B34;
  border-radius: 16px;
  box-shadow: 0 8px 48px 0 rgba(32,91,52,0.25);
  padding: 32px 22px 24px 22px;
  max-width: 440px;
  min-width: 240px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popupFade 0.55s cubic-bezier(.33,1.06,.69,.98) 0s 1;
}
@keyframes popupFade {
  0% { transform: scale(0.85) translateY(38px); opacity: 0; }
  60% { transform: scale(1.04); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #205B34;
  margin-bottom: 8px;
  font-size: 1.24rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #6BF7B5;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 6px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  font-size: 1.5rem;
  color: #A38343;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover{ color: #6BF7B5; }
.cookie-modal .category-essential {
  color: #205B34;
  font-weight: bold;
}

/*---------------------------
         MISC STYLES
-----------------------------*/
::-webkit-input-placeholder { color: #6BF7B5; }
::-moz-placeholder { color: #6BF7B5; }
:-ms-input-placeholder { color: #6BF7B5; }
::placeholder { color: #6BF7B5; }

hr {
  border: none;
  border-top: 1.5px dashed #A38343;
  margin: 28px 0;
}

/*------ UTILITY CLASSES ------*/
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 22px; }
.mt-4 { margin-top: 34px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 22px; }
.mb-4 { margin-bottom: 34px; }

/*------ OVERRIDE FOR LEGAL PAGES -----*/
.privacy-policy-section,
.gdpr-policy-section,
.terms-section,
.cookie-policy-section {
  background: #191F18;
  color: #F2E9D2;
}
.privacy-policy-section h1,
.gdpr-policy-section h1,
.terms-section h1,
.cookie-policy-section h1 {
  color: #6BF7B5;
}

/*-------------------------
        SCROLL BAR
--------------------------*/
::-webkit-scrollbar { width: 10px; background: #222; }
::-webkit-scrollbar-thumb { background: #205B34; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #6BF7B5; }

/*-------------------------
     FONT-FACE FALLBACKS
--------------------------*/
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather'), local('Merriweather-Bold'), url(https://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-fCZJkQ.ttf) format('truetype');
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.ttf) format('truetype');
  unicode-range: U+000-5FF;
}

/*-------------------------
     PRINT OPTIMIZATION
--------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: white !important; color: black !important; }
}
