/* 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,
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;
}

body {
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F5F6F9;
  color: #295D53;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

ul li, ol li {
  margin-bottom: 8px;
  font-size: 16px;
}

strong, b {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* Font imports (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 900;
  color: #295D53;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.16;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #B3947E;
}
h4 {
  font-size: 18px;
  margin-bottom: 14px;
}
p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #295D53;
}
a {
  color: #B3947E;
  text-decoration: underline dotted #B3947E 1.5px;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #295D53;
  text-decoration: underline solid #295D53 2px;
}

/* Navigation */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(41,93,83,0.08);
  position: sticky;
  z-index: 1002;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
  font-weight: 700;
  font-size: 16px;
  padding: 8px 16px;
  color: #295D53;
  border-radius: 6px;
  transition: background-color 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #B3947E;
  border-radius: 6px;
  transition: width 0.25s cubic-bezier(0.65,0.05,0.36,1) 0s;
  margin: 0 auto;
}
header nav a:hover:after {
  width: 80%;
}
header nav a:hover, header nav a:focus {
  background: #F5F6F9;
  color: #B3947E;
  box-shadow: 0 2px 8px 0 rgba(41,93,83,0.09);
}
header nav img {
  height: 40px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
header nav img:hover { box-shadow: 0 4px 16px 0 #B3947E33; }

/* Mobile menu hamburger button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B3947E;
  color: #FFF;
  font-size: 2rem;
  border: none;
  border-radius: 11px;
  width: 48px;
  height: 48px;
  margin: 0 12px 10px auto;
  box-shadow: 0 2px 8px #B3947E22;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  z-index: 1025;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #295D53;
  color: #FFF;
  box-shadow: 0 6px 18px #295D5340;
}

/* Hide mobile menu on desktop */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  box-shadow: 0 0 0 999vw #295D5355;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #B3947E;
  color: #FFF;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 18px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px #B3947E15;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #295D53;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-weight: bold;
  color: #295D53;
  background: #F5F6F9;
  border-radius: 10px;
  padding: 13px 14px;
  margin-bottom: 6px;
  text-decoration: none;
  box-shadow: 0 2px 10px #B3947E13;
  transition: background 0.17s, color 0.18s, transform 0.16s;
  will-change: background, color, transform;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B3947E;
  color: #FFF;
  transform: translateX(8px) scale(1.045);
}

@media (min-width: 900px) {
  header nav {
    gap: 38px;
    padding: 22px 26px;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 899px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Main layout & responsive helpers */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 19px;
  box-shadow: 0 7px 32px 0 #B3947E22;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.23s cubic-bezier(0.55,0,0.45,1), box-shadow 0.15s;
  min-width: 240px;
}
.card:hover, .card:focus-within {
  transform: translateY(-8px) scale(1.03) rotate(-2deg);
  box-shadow: 0 20px 46px 0 #295D5344;
}

.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;
    align-items: center;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* Feature & service items */
.features,
.services {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 20px #295D5313;
}
.features ul,
.services ul { margin-bottom: 16px; }

.features .content-wrapper > ul,
.services .content-wrapper > ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
}

/* Button styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  border-radius: 14px;
  padding: 15px 32px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 21px #B3947E14;
  transition: background 0.14s, color 0.16s, box-shadow 0.16s, transform 0.16s;
  letter-spacing: 1.2px;
  min-width: 165px;
}
.btn.primary {
  background: #B3947E;
  color: #FFF;
}
.btn.primary:hover, .btn.primary:focus {
  background: #295D53;
  color: #FFF;
  box-shadow: 0 10px 32px #295D5330;
  transform: translateY(-3px) scale(1.03);
}

.btn.secondary {
  background: #295D53;
  color: #FFF;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #B3947E;
  color: #FFF;
  transform: scale(1.045);
}

/* Cards for inspiration etc. */
.top-picks, .trend-highlights, .how-to-guides {
  background: #F5F6F9;
  border-radius: 15px;
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px #B3947E07;
}
.top-picks ul, .trend-highlights ul, .how-to-guides ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hero Section */
.hero {
  width: 100%;
  padding: 60px 0 40px 0;
  margin-bottom: 40px;
  background: #B3947E;
  color: #FFF;
  border-bottom-left-radius: 60px 34px;
  border-bottom-right-radius: 60px 34px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 720px;
  text-align: center;
}
.hero h1 {
  color: #FFF;
  font-size: 2.6rem;
  animation: popUp 1.04s cubic-bezier(.39,1.4,.72,1.1);
}
.hero p, .hero a {
  color: #FFF;
}
@keyframes popUp {
  from { opacity:0; transform:translateY(45px) scale(0.95); }
  to { opacity:1; transform:translateY(0) scale(1); }
}

/* Testimonial Cards */
.testimonials {
  background: #F5F6F9;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 22px;
  box-shadow: 0 3px 19px #295D5340;
  border-left: 6px solid #B3947E;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card blockquote {
  color: #295D53;
  font-size: 1.12rem;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 9px;
}
.testimonial-card b {
  color: #295D53;
  font-weight: 700;
  margin-left: 9px;
  font-size: 1em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 11px 32px #B3947E33;
  transform: scale(1.015) rotate(-1.5deg);
  border-left: 6px solid #295D53;
}
.rating-summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #295D53;
  background: #FFF;
  display: inline-block;
  margin-top: 6px;
  padding: 7px 16px;
  border-radius: 11px;
  font-weight: 700;
  box-shadow: 0 2px 6px #B3947E12;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  border-radius: 11px;
  overflow: hidden;
  margin: 22px 0 18px 0;
  box-shadow: 0 1px 14px #295D5318;
}
.pricing-table th, .pricing-table td {
  padding: 14px 20px;
  background: #F5F6F9;
  color: #295D53;
  font-size: 16px;
  border-bottom: 2px solid #B3947E27;
  text-align: left;
}
.pricing-table th {
  background: #B3947E;
  color: #FFF;
}
.pricing-table tr:last-child td { border-bottom: none; }

/* Footer */
footer {
  background: #FFF;
  padding: 34px 0 16px 0;
  border-top-left-radius: 44px 25px;
  border-top-right-radius: 44px 25px;
  box-shadow: 0 -2px 12px #B3947E12;
  margin-top: 40px;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
footer nav a {
  color: #295D53;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 8px;
  transition: background 0.14s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #B3947E;
  background: #F5F6F9;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #295D53;
  opacity: 0.88;
  flex-direction: row;
}
.footer-info a {
  color: #B3947E;
  text-decoration: underline;
  font-weight: 700;
}

/* Section for legal text pages (privacy, GDPR, cookies, terms) */
.footer.section { /* for .footer class on main legal pages */
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 1px 13px #B3947E12;
}

/* Map/Showroom Embed Fallback */
.map-embed {
  background: #FFF;
  border-radius: 11px;
  box-shadow: 0 2px 10px #295D530a;
  padding: 22px 12px;
  margin-top: 15px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #295D53;
  text-align: center;
}

/* Animations for playful/dynamic touch */
.card, .testimonial-card, .btn, .hero h1, .hero .btn.primary {
  will-change: transform, box-shadow;
}
.card:after, .testimonial-card:after {
  content: '';
  display: none;
}

/* Spacing utilities */
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 18px !important; }
.mb-4 { margin-bottom: 28px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 18px !important; }
.mt-4 { margin-top: 28px !important; }

/* Responsive Typography */
@media (max-width: 1000px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.47rem; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.14rem; }
  .hero h1 { font-size: 1.2rem; }
}

/* Responsive Layouts */
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  .features, .services, .testimonials, .section {
    padding: 31px 7px;
  }
  .content-wrapper { gap: 20px; }
}
@media (max-width: 600px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features, .services, .testimonials, .section, .footer.section {
    padding: 17px 2px;
  }
  .card, .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 22px 10px;
  }
  .footer-info, footer nav {
    gap: 6px;
    flex-direction: column;
  }
  .hero {
    padding: 28px 0 20px 0;
    border-bottom-left-radius: 30px 10px;
    border-bottom-right-radius: 30px 10px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #B3947E;
  color: #FFF;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 -3px 18px #295D5320;
  font-size: 17px;
  gap: 20px;
  animation: cookie-slide-in 0.45s cubic-bezier(.7,.13,.62,1.01);
}
@keyframes cookie-slide-in {
  from { transform: translateY(220px); opacity: 0; }
  to   { transform: translateY(0px); opacity: 1; }
}
.cookie-banner.hide {
  display: none !important;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 11px;
  padding: 11px 20px;
  margin-right: 4px;
  cursor: pointer;
  margin-bottom: 2px;
  transition: background 0.17s, color 0.17s, transform 0.17s;
}
.cookie-banner .accept {
  background: #295D53;
  color: #FFF;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #263f39;
}
.cookie-banner .reject {
  background: #F5F6F9;
  color: #B3947E;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFF0e2;
  color: #263f39;
}
.cookie-banner .settings {
  background: #FFF;
  color: #295D53;
  border: 1px solid #B3947E40;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F5F6F9;
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    font-size: 15px;
    padding: 18px 6px;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* Cookie modal/popup */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2111;
  width: 100vw;
  height: 100vh;
  background: rgba(41,93,83,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.24s cubic-bezier(.8,.09,.62,1.32);
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 20px;
  padding: 36px 23px 24px 23px;
  min-width: 90vw;
  max-width: 420px;
  box-shadow: 0 7px 32px #B3947E35;
  color: #295D53;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-size: 17px;
  position: relative;
  animation: popUp 0.4s cubic-bezier(.25,1.2,.72,1);
}
@media (max-width: 540px) {
  .cookie-modal-content {
    min-width: 98vw;
    padding: 24px 8px;
    font-size: 15px;
  }
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  color: #295D53;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-category label {
  font-size: 1rem;
  color: #295D53;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B3947E;
  width: 18px;
  height: 18px;
}
.cookie-category input[disabled] {
  opacity: 0.5;
}
.cookie-modal-content .modal-btns {
  margin-top: 17px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-content .close {
  background: #B3947E;
  color: #FFF;
  border-radius: 7px;
  padding: 9px 18px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 13px;
  z-index: 15;
  transition: background 0.18s;
}
.cookie-modal-content .close:hover {
  background: #295D53;
}

/* Playful microinteractions */
.btn, .mobile-nav a, .card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.16s, color 0.14s, transform 0.18s;
}
.btn:active, .mobile-nav a:active {
  transform: scale(0.96) rotate(-2deg);
}

/* Decorative playful accent - rotating emoji/shape for .hero */
.hero::after {
  content: '🌱';
  position: absolute;
  right: 36px;
  bottom: 14px;
  font-size: 5rem;
  opacity: 0.16;
  pointer-events: none;
  transform: rotate(-11deg);
  animation: accent-rotate 10s linear infinite;
}
@keyframes accent-rotate {
  0% { transform: rotate(-11deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.07); }
  100% { transform: rotate(-11deg) scale(1); }
}

/* Playful dynamic background dots */
body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: -40vw;
  top: -30vw;
  width: 120vw;
  height: 120vw;
  background: radial-gradient(circle 250px at 15% 23%, #B3947E13 0%, transparent 80%), radial-gradient(circle 128px at 84% 52%, #295D5311 0%, transparent 85%);
  pointer-events: none;
  opacity: 0.6;
}

/* Accessibility: focus ring for all clickable elements */
:focus-visible {
  outline: 2px dashed #295D53; /* Accessible color */
  outline-offset: 2px;
}

/* Hide visually but keep accessible for screen readers */
.sr-only {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
}

/* Utilities for playful highlights */
.playful-highlight {
  color: #B3947E;
  background: #F5F6F9;
  border-radius: 7px;
  padding: 3px 8px;
  transition: background 0.18s;
}

/* --- END OF MAIN CSS --- */
