/* -------------------------------------
   CSS RESET & BASE
   ------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
  min-height: 100vh;
  padding-bottom: 100px; /* for cookie banner */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px solid #181818;
  outline-offset: 2px;
}
button,
input[type="button"],
input[type="submit"] {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* -------------------------------------
   TYPOGRAPHY
   ------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', "Roboto", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0b0b0b;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.17; }
h3 { font-size: 1.33rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #212121;
}
p {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: #111;
}
.subheadline, .tagline {
  font-size: 1.18rem;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
blockquote {
  font-style: italic;
  color: #212121;
  font-size: 1.13rem;
  border-left: 3px solid #333;
  padding-left: 14px;
  margin-bottom: 14px;
  margin-top: 0;
}
cite {
  display: block;
  font-size: 0.98rem;
  color: #888;
  margin-top: -5px;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* -------------------------------------
   COLORS
   ------------------------------------- */
:root {
  --brand-primary: #264653;
  --brand-accent: #F4A261;
  --brand-secondary: #E9C46A;

  --grey-900: #212121;
  --grey-800: #2c2c2c;
  --grey-700: #474747;
  --grey-200: #f5f5f5;
  --grey-100: #f9f9f9;

  --white: #fff;
  --black: #111;
}

/* -------------------------------------
   LAYOUT: Containers & Sections
   ------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.05);
}

/* -------------------------------------
   HEADER / MAIN NAVIGATION
   ------------------------------------- */
header {
  background: var(--white);
  box-shadow: 0 3px 22px 0 rgba(0,0,0,0.03);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 18px 0;
  position: relative;
}
.main-nav > a img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  color: var(--grey-900);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  padding: 7px 11px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--grey-200);
  color: var(--brand-primary);
}
.main-nav .primary-cta {
  background: var(--brand-primary);
  color: var(--white) !important;
  border-radius: 7px;
  padding: 9px 22px;
  margin-left: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 6px 0 rgba(38,70,83,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: none;
}
.main-nav .primary-cta:hover,
.main-nav .primary-cta:focus {
  background: var(--black);
  color: var(--brand-secondary) !important;
  box-shadow: 0 4px 14px 0 rgba(38,70,83,0.13);
}

/* -------------------------------------
   MOBILE NAVIGATION (BURGER MENU)
   ------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 16px;
  width: 44px;
  height: 44px;
  background: var(--brand-primary);
  color: var(--white);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  z-index: 301;
  transition: background 0.20s;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--black);
  color: var(--brand-secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1),
              transform 0.33s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 305;
  transition: background 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}
.mobile-nav {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
}
.mobile-nav a {
  color: var(--brand-primary);
  background: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--grey-900);
  color: var(--brand-secondary);
}

/* -------------------------------------
   HERO & MAJOR SECTIONS
   ------------------------------------- */
.hero-section, .about-hero, .shop-hero, .game-night-hero, .contact-hero, .sammler-hero, .thank-you-hero {
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  background: linear-gradient(120deg, #fff 60%, #f2f2f2 100%);
}
.hero-section h1,
.about-hero h1,
.shop-hero h1,
.game-night-hero h1,
.contact-hero h1,
.sammler-hero h1,
.thank-you-hero h1 {
  color: var(--black);
  margin-bottom: 8px;
}
.hero-cta, .contact-cta, .shop-hero .hero-cta, .about-hero .primary-cta, .thank-you-hero .primary-cta {
  display: inline-block;
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 32px;
  border-radius: 44px;
  font-size: 1.13rem;
  margin-top: 16px;
  box-shadow: 0 3px 18px 0 rgba(38,70,83,0.10);
  transition: background 0.16s, color 0.17s, border 0.16s, box-shadow 0.18s;
}
.hero-cta:hover, .contact-cta:hover, .shop-hero .hero-cta:hover, .about-hero .primary-cta:hover, .thank-you-hero .primary-cta:hover {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 0 7px 30px 0 rgba(38,70,83,0.15);
}

/* -------------------------------------
   SECTION & SPACING FLEXBOX PATTERNS
   ------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(38,70,83,0.05);
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(38,70,83,0.07);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 440px;
  transition: box-shadow 0.18s, transform 0.20s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(50,50,50,0.10);
  transform: translateY(-3px) scale(1.022);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------------------
   FEATURE/OVERVIEW GRIDS
   ------------------------------------- */
.feature-grid, .unique-points-list, .category-grid, .workshop-grid, .service-list, .consultation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid > li, .category-grid > li, .workshop-grid > li {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  background: var(--grey-100);
  padding: 22px 18px 18px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(38,70,83,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, border 0.13s, background 0.15s;
  margin-bottom: 20px;
}
.feature-grid > li:hover, .category-grid > li:hover, .workshop-grid > li:hover {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  box-shadow: 0 7px 26px 0 rgba(38,70,83,0.13);
  z-index: 2;
}
.feature-grid img, .category-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 8px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list > li {
  background: var(--grey-100);
  border-radius: 12px;
  padding: 18px 15px 16px 15px;
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px 0 rgba(51,51,51,0.05);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list > li .price {
  margin-top: 4px;
  color: var(--black);
  font-weight: 700;
  font-size: 1.04rem;
}

.unique-points-list li,
.consultation-types li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #191919;
}
.unique-points-list li:before,
.consultation-types li:before {
  content: '\2022';
  color: var(--brand-primary);
  font-weight: 700;
  position: absolute;
  left: 3px;
  font-size: 1.25em;
  top: 2px;
}

/* -------------------------------------
   TESTIMONIALS SLIDER (simple horizontal flex)
   ------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: flex-start;
}

/* -------------------------------------
   PRICING / INFO / ORDER BLOCKS
   ------------------------------------- */
.text-section,
.valuation-process,
.rare-items-highlights,
.appointment-info,
.city-geo-info,
.map-embed,
.order-information,
.pricing-info,
.participation-info,
.popular-games-list {
  margin-bottom: 20px;
  background: var(--grey-100);
  padding: 18px 15px;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(80,80,80,0.04);
}
.text-section ul {
  margin-top: 10px;
}

.price, .price-note {
  color: var(--brand-accent);
  font-weight: 700;
  margin-left: 3px;
}

/* -------------------------------------
   FOOTER
   ------------------------------------- */
footer {
  background: var(--grey-900);
  color: var(--grey-200);
  padding: 44px 0 22px 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand img {
  height: 34px;
  width: auto;
  border-radius: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--grey-100);
  text-decoration: underline dotted;
  font-weight: 400;
  padding: 3px 0;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-social img {
  height: 25px;
  width: 25px;
  opacity: 0.77;
  transition: opacity 0.13s;
}
.footer-social img:hover {
  opacity: 1;
}

/* -------------------------------------
   LEGAL PAGES / CONTENT
   ------------------------------------- */
.legal-section {
  margin-bottom: 60px;
  padding: 30px 0 80px 0;
  background: var(--grey-100);
  border-radius: 18px;
}
.legal-section h1 {
  font-size: 2.1rem;
  margin-bottom: 24px;
}
.terms-content, .privacy-content, .gdpr-content, .cookie-policy-content {
  background: var(--white);
  padding: 28px 24px 18px 24px;
  border-radius: 13px;
}
.terms-content ul,
.privacy-content ul,
.gdpr-content ul,
.cookie-policy-content ul {
  margin-left: 16px;
  margin-bottom: 14px;
}

/* -------------------------------------
   COOKIE CONSENT BANNER
   ------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1200;
  background: #262626;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  padding: 26px 24px 22px 24px;
  box-shadow: 0 -3px 24px 0 rgba(20,20,20,0.23);
  transition: transform 0.30s cubic-bezier(.4,0,.2,1), opacity 0.15s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  max-width: 540px;
  font-size: 0.98rem;
  color: #ededed;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner__button,
.cookie-banner__settings {
  background: var(--grey-100);
  color: var(--brand-primary);
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 700;
  border: 1.7px solid var(--brand-primary);
  transition: background 0.16s, color 0.16s, border 0.15s;
}
.cookie-banner__button:hover,
.cookie-banner__settings:hover {
  background: var(--brand-primary);
  color: var(--white);
}
.cookie-banner__button.accept {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--black);
}
.cookie-banner__button.accept:hover {
  background: var(--black);
  color: var(--brand-secondary);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2000;
  background: rgba(18,18,18,0.52);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  animation: fadeInModal 0.38s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 36px 0 rgba(20,20,20,0.18);
  max-width: 410px;
  width: 100%;
  padding: 34px 28px 25px 28px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: var(--brand-primary);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal__close:hover { background: var(--black); }
.cookie-modal__title {
  font-size: 1.30rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--black);
}
.cookie-settings-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.cookie-setting {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
}
.cookie-setting input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-primary);
}
.cookie-setting.essential input[type="checkbox"] {
  accent-color: var(--grey-900);
}
.cookie-setting.essential label {
  color: #222;
  font-weight: 700;
}
.cookie-setting label {
  color: #3b3b3b;
}
.cookie-modal__save {
  margin-top: 20px;
  align-self: flex-end;
  background: var(--brand-primary);
  color: var(--white);
  border-radius: 5px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.14s;
  border: none;
}
.cookie-modal__save:hover {
  background: var(--black);
}

/* -------------------------------------
   UTILITIES / ANIMATIONS / MISC
   ------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #ececec;
}
::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 5px;
}

hr {
  border: 0;
  height: 1px;
  background: var(--grey-200);
  margin: 24px 0;
}

/* Card shadow effect for all cards */
.card, .feature-grid>li, .category-grid>li, .workshop-grid>li, .testimonial-card {
  transition: box-shadow 0.20s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}
.card:hover, .feature-grid>li:hover, .category-grid>li:hover, .workshop-grid>li:hover, .testimonial-card:hover {
  box-shadow: 0 9px 28px 0 rgba(38,70,83,0.10);
  z-index: 10;
  transform: scale(1.015);
}

/* -------------------------------------
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ------------------------------------- */
@media (max-width: 992px) {
  .content-wrapper,
  .footer .content-wrapper {
    gap: 16px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .main-nav ul {
    gap: 9px;
  }
  .main-nav .primary-cta {
    margin-left: 4px;
    padding: 9px 13px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .main-nav {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .main-nav ul {
    display: none;
  }
  .main-nav .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section, .legal-section {
    margin-bottom: 35px;
    padding: 26px 7px;
    border-radius: 11px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid,
  .category-grid,
  .workshop-grid,
  .service-list {
    flex-direction: column;
    gap: 17px;
  }
  .about-benefits .unique-points-list,
  .consultation-types {
    gap: 13px;
  }
  .content-grid,
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    padding: 13px 7px;
  }
  .feature-grid>li, .category-grid>li, .workshop-grid>li {
    min-width: 100%;
    max-width: 100%;
  }
  footer {
    padding: 27px 0 14px 0;
  }
  .footer-social {
    gap: 7px;
    font-size: 0.98rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 7px 14px 7px;
  }
}
@media (max-width: 544px) {
  .card-container {
    flex-direction: column;
    gap: 9px;
  }
  .main-nav {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero-section, .about-hero, .shop-hero, .game-night-hero, .contact-hero, .sammler-hero, .thank-you-hero {
    padding: 26px 0 18px 0;
    margin-bottom: 22px;
    border-radius: 0 0 20px 20px;
  }
  h1 { font-size: 1.31rem; }
  h2 { font-size: 1.01rem; }
  .testimonial-card {
    font-size: 0.98rem;
    padding: 8px 4px 11px 7px;
  }
}

/* -------------------------------------
   OVERRIDE: EDGE CASES/HIGH CONTRAST FOR TESTIMONIAL CARDS
   ------------------------------------- */
.testimonials-section .testimonial-card {
  background: var(--white);
  color: #222;
  border: 1.1px solid var(--grey-200);
}
.testimonials-section .testimonial-card blockquote {
  color: #1a1a1a;
}

/* -------------------------------------
   END
   ------------------------------------- */
