/* ----------------------------------------------------------
   FROSTED VOYAGE GARTENWELT - INDUSTRIAL MODERN CSS
   Mobile-first · Flexbox-only layouts · Brand adherence
   ---------------------------------------------------------- */

/* 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, menu, 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, 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 { height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; font-family: 'Arial', sans-serif; background: #222627; color: #E3ECDF; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
button,input,select,textarea { font-family: inherit; font-size: 100%; border: none; outline: none; background: none; }

/* ------------------- BRAND VARIABLES --------------------- */
:root {
  --color-primary: #2F5D34;
  --color-secondary: #497B47;
  --color-accent: #E3ECDF;
  --color-bg-dark: #181B1C;
  --color-metal: #666A6D;
  --color-bg-section: #222627;
  --color-border: #393D3F;
  --color-text: #E3ECDF;
  --color-text-light: #BAC4BC;
  --color-black: #111314;
  --color-error: #e74c3c;
  --shadow-card: 0 2px 12px rgba(30, 34, 36, 0.18), 0 1px 2px rgba(23, 26, 28, 0.07);
  --shadow-btn: 0 1px 3px rgba(60,70,70,.18);
  --radius: 10px;
  --radius-btn: 6px;
  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

/* -------------------- TYPOGRAPHY ------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--color-accent);
  line-height: 1.15;
  text-shadow: 0 1px 0 #171B1C, 0 0.5px 8px #21292B88;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; color: var(--color-secondary); }
h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--color-metal); }
h4, h5, h6 { font-size: 1.15rem; color: var(--color-metal); }

p,li,span,label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}
p.hero-subheadline {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 28px;
  text-shadow: 0 0 6px #11131430;
}
strong { color:var(--color-secondary); font-weight:700; }
em, i { color: var(--color-text-light); font-style: italic; }

/* -------------------- LAYOUT COMPONENTS ----------------- */
.container {
  width: 100%; max-width: 1150px; margin: 0 auto; padding: 0 16px;
}
.content-wrapper {
  display: flex; flex-direction: column;
  gap: 18px; align-items: flex-start;
  background: none;
  position: relative;
}
.text-section {
  background: var(--color-bg-section);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px 20px 36px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #191C1E;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  transition:transform .18s,box-shadow .18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.024);
  box-shadow: 0 8px 28px rgba(30,34,36,0.23),0 1.5px 5px rgba(76,82,84,0.13);
  border-color: var(--color-secondary);
}
.card-content {
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  padding: 28px 22px 18px 22px;
}

.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;
  margin-bottom: 36px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  color: var(--color-black);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  border-left: 6px solid var(--color-secondary);
  min-width: 240px; max-width: 620px;
  align-self: flex-start;
  transition: box-shadow .14s, border .14s;
}
.testimonial-card p {
  color: var(--color-black); font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.98rem; color: var(--color-metal);
  font-style: italic; align-self: flex-end;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px #2F5D3453;
  border-left: 6px solid var(--color-primary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232526;
  padding: 30px 18px;
  border-radius: var(--radius-btn);
  border: 1px solid #353839;
  margin-bottom: 20px;
}

/* -------------------- HEADER/NAVIGATION ----------------- */
header {
  width: 100vw;
  min-height: 78px;
  background: #191C1E;
  box-shadow: 0 3px 24px #1e222430;
  border-bottom: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position:relative;
  z-index: 50;
}
header img { height: 48px; margin-right: 8px; }
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--color-accent);
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.17s, color 0.12s;
  letter-spacing: 0.3px;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cta-button {
  font-family: var(--font-head);
  font-size: 1.15rem;
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: var(--shadow-btn);
  border-radius: var(--radius-btn);
  padding: 11px 30px 10px 30px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-left: 22px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  border: 1.5px solid var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: var(--color-black);
  transform: translateY(-1px) scale(1.025);
  border-color: var(--color-primary);
  box-shadow: 0 3px 22px #191c1e41;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-black);
  font-size: 2.1rem;
  border-radius: 7px;
  border: 1.5px solid #222829;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
}
.mobile-menu-toggle:focus,.mobile-menu-toggle:hover{
  background: var(--color-accent); color: var(--color-primary);
  box-shadow: 0 1.5px 11px #497B4790;
}

/* -------------------- MOBILE MENU ----------------------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(26, 26, 28, 0.98);
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.88,-0.06,.08,1.12);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 0 80px;
  width: 100vw; height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  margin: 32px 38px 0 0;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 8px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.16s, color 0.16s;
  border:2px solid var(--color-accent);
}
.mobile-menu-close:hover {
  background: var(--color-accent); color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 44px 22px 44px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.33rem;
  color: var(--color-accent);
  padding: 14px 6px;
  border-radius: 5px;
  background: none;
  transition: background 0.13s, color 0.13s;
  text-shadow: 0 2px 16px #10131395;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--color-primary);
  color: var(--color-black);
}

/* Hide desktop nav & show burger on mobile */
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* -------------- MAIN CONTENT LAYOUT SPACING ------------- */
main {
  min-height: 53vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
@media (max-width: 700px) {
  section { padding: 24px 4vw; }
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
ul li, ol li {
  padding-left: 0; /* reset */
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-text-light);
}
ul li img, ol li img {
  width: 28px; height: 28px; margin-right: 10px;
}

/* --------------- FOOTER ------------------------------- */
footer {
  width: 100vw;
  background: #181B1C;
  border-top: 2.5px solid var(--color-primary);
  box-shadow: 0 -2px 22px #1e222434;
  padding: 0;
}
footer .container { padding: 0 16px; }
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 33px 0 18px 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  font-size: 0.99rem;
}
footer nav a, footer nav span{
  color: var(--color-metal);
  font-family: var(--font-head);
  padding: 0 2px;
  letter-spacing: 0.16px;
}
footer nav a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 0.98rem;
  color: var(--color-text-light);
}
.contact-footer img { width: 17px; height: 17px; margin-right: 9px; vertical-align: middle; opacity: 0.85; }
.contact-footer span { display: flex; align-items: center; gap: 9px; }

/* ------------- RESPONSIVE FLEX LAYOUTS ---------------- */
@media (max-width: 900px) {
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
  }
  .testimonials { flex-direction: column; }
  .card { min-width: 200px; width: 100%; }
}
@media (max-width: 768px) {
  .section, section, .text-section {
    margin-bottom: 46px;
    padding: 22px 5vw;
  }
  .container {
    padding: 0 6px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .testimonial-card {
    align-items: flex-start;
    padding: 16px 13px;
  }
}

/* -------------------- BUTTON STYLES ------------------- */
button, .cta-button {
  transition: background .18s, color .18s, transform .13s, box-shadow .13s;
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/* --------------- FORMS (if any in the future) --------- */
input, textarea, select {
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: #222627;
  color: var(--color-text);
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
}
label { font-size: 1rem; color: var(--color-accent); }

/* --------------- COOKIE CONSENT BANNER ---------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1B1E1F;
  color: var(--color-accent);
  box-shadow: 0 -2px 30px #0008;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9000;
  padding: 18px 16px 22px 16px;
  gap: 18px;
  animation: banner-in .32s cubic-bezier(0.7, 0.1, 0.31, 1.04) both;
}
@keyframes banner-in {
  from { transform: translateY(85px); opacity:0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 0px;
  color: var(--color-accent);
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex; flex-wrap: wrap; gap: 15px; justify-content: center;
}
.cookie-btn, .cookie-settings-btn {
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  border: 1.5px solid var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-accent);
  cursor: pointer;
  transition: background .13s, color .13s;
  margin: 0 3px; min-width: 110px; box-shadow: 0 1px 9px #232b2478;
}
.cookie-btn.accept {
  background: var(--color-primary); border-color: var(--color-secondary); color: var(--color-accent);
}
.cookie-btn.reject {
  background: #323537; border-color: #444849; color: #e74c3c;
}
.cookie-btn.accept:hover { background: var(--color-secondary); color: var(--color-black); }
.cookie-btn.reject:hover { background: #513141; color: #fff; }
.cookie-settings-btn {
  background: var(--color-metal);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.cookie-settings-btn:hover { background: var(--color-accent); color: #2F5D34; }

/* ----------- COOKIE CONSENT MODAL --------------------- */
.cookie-modal {
  position: fixed;
  background: #181B1C;
  color: var(--color-accent);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 12px;
  box-shadow: 0 4px 32px #000a;
  z-index: 9500;
  min-width: 300px;
  max-width: 97vw;
  padding: 35px 22px 25px 22px;
  display: flex; flex-direction: column; gap: 22px;
  animation: modal-in .32s cubic-bezier(0.7, 0.1, 0.31, 1.04) both;
}
@keyframes modal-in {
  from { opacity:0; transform: translate(-50%, calc(-47% + 60px)) scale(.93); }
  to   { opacity:1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  color: var(--color-secondary); margin-bottom: 9px; font-size: 1.35rem;
}
.cookie-modal ul {
  gap: 16px;
}
.cookie-modal li {
  display: flex; align-items: center; gap: 14px; color: var(--color-accent);
}
.cookie-modal .cookie-switch {
  flex: 0 0 auto;
  width: 40px; height: 22px; background: #444a48; border-radius: 12px; position: relative;
}
.cookie-modal .cookie-switch input {
  opacity: 0; width: 100%; height: 100%; position: absolute; top: 0; left: 0; margin: 0; z-index: 2;
}
.cookie-modal .cookie-switch span {
  display: block; width: 20px; height: 20px; border-radius: 50%; background: #BABEC1; position: absolute; left: 1px; top: 1px; transition: left .13s, background .13s;
}
.cookie-modal .cookie-switch input:checked + span {
  background: var(--color-secondary); left: 19px; }
.cookie-modal .cookie-categories {
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 16px;
}
.cookie-modal .modal-actions {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end;
}
.cookie-modal .close-modal-btn {
  background: none; color: var(--color-metal); font-size: 1.9rem; border:none; position:absolute; right:10px; top:10px;
  cursor:pointer; transition:color .13s;
}
.cookie-modal .close-modal-btn:hover { color: var(--color-accent); }


/* -------------- ICONS DECOR ------------------- */
section img, .text-section img, ul img, .contact-footer img {
  filter: grayscale(25%) brightness(1.1);
}

/* -------------- MICRO-INTERACTIONS -------------- */
a, button, .cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none; transition: box-shadow .14s, color .14s;
}
a:focus, button:focus, .cta-button:focus, .mobile-menu-toggle:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 2px var(--color-secondary), 0 0 8px #191c1edd;
}

/* -------------- UTILITY CLASSES ------------------ */
.d-flex { display: flex !important; }
.flex-center { justify-content: center; align-items: center; }
.mt-2 { margin-top: 12px; } .mt-3 { margin-top: 20px; } .mb-2 { margin-bottom: 12px; } .mb-3 { margin-bottom: 20px; }
.text-center { text-align: center !important; }

/* -------------- SCROLLBAR ------------------ */
::-webkit-scrollbar { width: 10px; background: #232627; }
::-webkit-scrollbar-thumb { background: #282D2E; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3a423f; }

/* -------------- ACCESSIBILITY ------------------ */
@media (forced-colors: active) {
  body { background: Window; color: WindowText }
}

/* --------------- PRINT --------------- */
@media print {
  header,.mobile-menu,footer,.cookie-banner,.cookie-modal { display:none !important; }
  section,main { box-shadow:none !important; }
}
