/* 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html {
  /* Use 10px base for easier rem math, but scale for mobile */
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F4F7FB;
  color: #2B2B24;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  position: relative;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #28677B;
  transition: color 0.25s cubic-bezier(.6,.04,.98,.335);
}
a:hover, a:focus {
  color: #FDBD3E;
  outline: none;
}
ul, ol {
  margin-left: 28px;
  padding-left: 12px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23596B;
  font-weight: 700;
  letter-spacing: 0.025em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
blockquote {
  font-style: italic;
  background: rgba(255,255,255,.6);
  border-left: 4px solid #FDBD3E;
  padding: 15px 22px 15px 18px;
  border-radius: 8px;
  margin-bottom: 14px;
  color: #2B2B24;
}
.container {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

/* ========== RETRO COLOR PALETTE & VINTAGE FONTS ========== */
:root {
  --nh-primary: #23596B;
  --nh-accent: #FDBD3E;
  --nh-secondary: #F4F7FB;
  --nh-bg: #F4F7FB;
  --nh-light: #FFFFFF;
  --nh-text: #2B2B24;
  --vintage-brown: #7D6B4F;
  --vintage-blue: #426A8C;
  --vintage-green: #B5C59E;
  --vintage-orange: #FFB471;
  --vintage-cream: #EAE6DA;
}
body {
  background: var(--nh-bg);
  color: var(--nh-text);
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--nh-light);
  border-bottom: 4px solid var(--nh-accent);
  box-shadow: 0 2px 8px 0 rgba(40,103,123,0.06);
  padding: 0 0 0 0;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 8px 12px 8px 10px;
  color: var(--nh-primary);
  letter-spacing: 0.04em;
  border-radius: 6px;
  background: none;
  position: relative;
  transition: background 0.22s cubic-bezier(.6,.04,.98,.335), color 0.22s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--nh-accent);
  background: #faeed4;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--nh-accent);
  color: var(--nh-primary);
  padding: 11px 28px 11px 22px;
  border-radius: 28px;
  box-shadow: 0 2px 10px 0 rgba(253,189,62, 0.09);
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  border: none;
  outline: none;
  margin-left: 12px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--nh-primary);
  color: var(--nh-light);
  box-shadow: 0 6px 22px 0 rgba(40,103,123, 0.13);
}

/****** MOBILE MENU ******/
.mobile-menu-toggle {
  display: none;
  background: var(--nh-accent);
  color: var(--nh-primary);
  font-size: 2rem;
  padding: 4px 18px;
  border-radius: 12px;
  border: none;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s;
  z-index: 5001;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--nh-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--nh-light);
  box-shadow: 0px 14px 36px 0 rgba(40,103,123,0.14);
  z-index: 5000;
  transform: translateX(-110vw);
  transition: transform 0.40s cubic-bezier(.78,.16,.32,1.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--nh-primary);
  margin: 16px 22px 0 0;
  z-index: 5100;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--nh-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  margin-top: 40px;
  padding-left: 48px;
  padding-right: 48px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 12px 0 8px 0;
  color: var(--nh-primary);
  letter-spacing: 0.04em;
  background: none;
  width: 100%;
  border-radius: 0;
  transition: color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--nh-accent);
  background: #faeed4;
}

@media (max-width: 980px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== Hero Section, Section Layouts, Spacing ===== */
.hero {
  background: repeating-linear-gradient(-15deg, #FFB471 0 20px, #FDBD3E 21px 40px, #EAE6DA 41px 60px, #F4F7FB 61px 80px), var(--nh-secondary);
  padding-bottom: 0;
  margin-bottom: 62px;
}
.hero .container {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-wrapper {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 23px 0 11px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper h1, .content-wrapper h2, .content-wrapper h3 {
  text-align: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--nh-light);
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(125,107,79,0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 22px 8px;
    margin-bottom: 36px;
  }
}

/* ==== Service Cards & Product Lists ===== */
.service-cards, .products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: center;
}
.service-card, .products-list > li {
  background: #FFFCEE;
  border: 2px solid #E4D8C4;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(66,106,140,0.08);
  padding: 22px 24px 18px 24px;
  width: 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.service-card:hover, .products-list > li:hover {
  box-shadow: 0 6px 34px 0 rgba(66,106,140,0.13);
  border: 2px solid var(--nh-accent);
  z-index: 2;
}
@media (max-width: 700px) {
  .service-cards, .products-list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .service-card, .products-list > li {
    width: 98%;
    max-width: 400px;
  }
}
.products-list {
  list-style: none;
  padding-left: 0;
}
.products-list > li {
  margin-bottom: 20px;
}

/* ==== Testimonial Section ===== */
#testimonials {
  background: linear-gradient(90deg, #EAE6DA 0, #F4F7FB 100%);
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF;
  border: 2px solid #B5C59E;
  box-shadow: 0 2px 14px 0 rgba(125,107,79,0.10);
  border-radius: 14px;
  max-width: 380px;
  min-width: 250px;
  flex-direction: column;
  transition: box-shadow 0.15s, border 0.15s;
}
.testimonial-card:hover {
  border-color: var(--nh-accent);
  box-shadow: 0 6px 30px rgba(66,106,140,0.11);
}
blockquote {
  font-size: 1.07rem;
  color: #1c1912;
  background: none;
}
.testimonial-info {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #84684a;
  font-size: 0.98rem;
  margin-top: 3px;
  letter-spacing: 0.045em;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    min-width: 0;
    width: 98%;
    max-width: 440px;
  }
}

/* ==== Card and Flex Layout Utility Classes ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFCEE;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(125,107,79,0.08);
  padding: 18px 21px;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0 0 14px 0;
}

/* ===== Content Section Spacing ===== */
section {
  margin-bottom: 60px;
}
@media (max-width: 700px) {
  section {
    margin-bottom: 36px;
  }
}


/* ====== FOOTER ====== */
footer {
  background: var(--nh-primary);
  color: var(--nh-light);
  padding: 24px 0 18px 0;
  font-size: 1rem;
  margin-top: 44px;
  border-top: 5px solid var(--nh-accent);
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--nh-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 4px;
  border-radius: 6px;
  padding: 5px 8px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--nh-accent);
  color: var(--nh-primary);
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social img {
  width: 33px;
  height: 33px;
  filter: grayscale(0.13) brightness(1.07) contrast(1.3);
  opacity: 0.83;
  transition: filter 0.19s, opacity 0.19s;
}
.footer-social img:hover {
  filter: none;
  opacity: 1;
}
.footer-contact {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  margin-top: 6px;
  color: #DAD2B6;
}
.footer-contact a {
  color: var(--nh-accent);
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .footer-nav {
    gap: 14px;
    flex-wrap: wrap;
  }
}

/* ====== FAQ (dl) Styling ========== */
.faq-list {
  margin-bottom: 22px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vintage-blue);
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin-top: 19px;
  margin-bottom: 5px;
}
.faq-list dd {
  margin-left: 0;
  font-size: 1rem;
  background: #FFE6BF;
  border-radius: 7px;
  padding: 10px 15px;
  margin-bottom: 13px;
  transition: background 0.14s;
}

/* ===== VINTAGE/RETRO ACCENTS ===== */
section, .card, .service-card, .products-list>li {
  box-shadow: 0 2px 12px 0 rgba(125,107,79,0.04);
}
hr {
  border: none;
  border-top: 2px dashed #D1BB84;
  margin: 24px 0;
}
strong, b {
  color: #AF8134;
  font-weight: bold;
}
/* Decorative classic retro pattern on some sections */
.hero, #testimonials {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, #FDBD3E, #FDBD3E 42px,#FFB471 43px, #FFB471 64px);
  opacity: 0.68;
  z-index: 2;
}

/* ===== CONTACT INFO BLOCK (kontakt page) ===== */
.contact-info-block {
  background: #EAE6DA;
  border: 1.5px dotted #7D6B4F;
  border-radius: 12px;
  padding: 18px 19px;
  color: #2c2a1b;
  box-shadow: 0 2px 10px 0 rgba(125,107,79,0.08);
  margin: 18px 0 10px 0;
}
.contact-info-block a {
  color: var(--nh-primary);
  text-decoration: underline;
}

/* ===== FORM/ERROR (kontakt page, retro style) ===== */
input, textarea, select {
  border-radius: 6px;
  border: 1.5px solid #dbc08a;
  padding: 9px 13px;
  background: #ffffff;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px 0 #e8e1ca44;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FDBD3E;
}

/* ========== BUTTONS (main, accent, retro style) ========= */
.btn, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  outline: none;
  padding: 11px 24px;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
  margin: 0 6px 8px 0;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(253,189,62, 0.10);
}
.cookie-btn {
  background: var(--nh-accent);
  color: var(--nh-primary);
  box-shadow: 0 2px 13px 0 rgba(253,189,62, 0.14);
}
.cookie-btn:hover {
  background: var(--nh-primary);
  color: #fffaf0;
}
.btn.secondary {
  background: #fffaf0;
  color: var(--nh-primary);
  border: 1.2px solid var(--nh-primary);
}
.btn.secondary:hover, .cookie-btn.secondary:hover {
  background: #F3E1B6;
  color: var(--nh-primary);
}
.btn.ghost {
  background: transparent;
  color: var(--nh-primary);
  border: 1.2px solid #866e38;
}

/* ========== Misc Typography =========== */
section ul, .content-wrapper ul {
  margin-bottom: 18px;
  padding-left: 20px;
  list-style: disc outside;
}
section ul li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/* ========== Animations & Micro-Interactions ============= */
.cta-btn, .btn, .service-card, .card, .products-list > li, .testimonial-card,
.main-nav a, .mobile-nav a, .footer-nav a, .cookie-btn {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, border 0.17s;
}
section, .hero, .service-card, .products-list > li, .card, .testimonial-card, .footer-contact {
  animation: fadeInUp 0.78s cubic-bezier(.6,.04,.98,.335);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(19px); }
  to { opacity: 1; transform: none; }
}

/* ========== COOKIE CONSENT BANNER & MODAL =========== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120%);
  width: 97vw;
  max-width: 440px;
  background: #fffaf0;
  box-shadow: 0px -5px 32px 0 rgba(40,103,123,0.12);
  border: 2px solid var(--nh-accent);
  border-radius: 18px 18px 0 0;
  padding: 22px 22px 19px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  z-index: 7000;
  transition: transform 0.38s cubic-bezier(.77, .07, .26, 1.01), opacity 0.2s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  color: #624d23;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 2px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 7px;
  align-items: center;
  justify-content: flex-end;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 7100;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: rgba(40,103,123,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid var(--nh-accent);
  min-width: 300px;
  max-width: 97vw;
  box-shadow: 0 2px 20px 0 rgba(40,103,123,0.15);
  padding: 34px 24px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInUp 0.43s cubic-bezier(.6,.04,.98,.335);
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: var(--nh-primary);
  background: transparent;
  border: none;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--nh-accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.cookie-category input[type='checkbox'] {
  margin-right: 12px;
  accent-color: var(--nh-accent);
  width: 19px;
  height: 19px;
}
.cookie-category .category-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 9px;
}
.cookie-category .required {
  color: #B83F00;
  font-size: 0.95em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-left: 2px;
}

@media (max-width: 560px) {
  .cookie-banner {
    left: 0;
    right: 0;
    border-radius: 9px 9px 0 0;
    width: 100vw;
    max-width: 100vw;
    padding: 18px 7vw 15px 7vw;
  }
  .cookie-modal {
    padding-left: 7vw;
    padding-right: 7vw;
    min-width: 0;
  }
}

/* ========== TYPOGRAPHY: RETRO DETAILS ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
h1, h2 {
  text-shadow: 0 2px 0 #FFB471, 0 4px 6px #EAE6DA33;
  letter-spacing: 0.012em;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--vintage-blue);
  text-shadow: 0 2px 0 #FDBD3E, 0 10px 64px #EAE6DA53;
}
@media (max-width: 470px) {
  .hero h1 { font-size: 1.27rem; }
}
h2 {
  color: var(--vintage-brown);
  font-size: 1.53rem;
}
h3 {
  color: var(--nh-primary);
  font-size: 1.16rem;
}

/* ========== Misc Utility Classes ============= */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 18px !important; }
.mb-0 { margin-bottom: 0!important; }
.mb-1 { margin-bottom: 12px!important; }

/* ACCESSIBILITY COLORS ON WHITE BG */
.testimonial-card, .testimonial-card blockquote {
  color: #222 !important;
  background: #ffffff !important;
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar { width: 10px; background: #EAE6DA; }
::-webkit-scrollbar-thumb {
  background: #B5C59E;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FDBD3E;
}

/* ==== Simple Anim Bounce for CTA ===== */
.cta-btn {
  animation: btnBounce 2.7s infinite cubic-bezier(0.39, 0.54, 0.74, 1.05);
}
@keyframes btnBounce {
  0%, 100% { transform: translateY(0); }
  8% { transform: translateY(-5px); }
  16% { transform: translateY(0); }
}

/* ========== END OF STYLE.CSS ============= */
