/* ===================================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
button {
  outline: none;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* ===================================================
   VARIABLES (with Fallbacks for wide support)
=================================================== */
:root {
  --brand-primary: #4A3623;
  --brand-secondary: #D2B48C;
  --brand-accent: #EAEAEA;
  --creative1: #FFB347; /* light orange */
  --creative2: #36bcc6; /* light teal */
  --creative3: #F8718B; /* coral pink */
  --creative4: #71CA8C; /* mint green */
  --creative5: #423B73; /* deep violet */
  --highlight: #FFF6DC;
}

/* Load artistic fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Roboto:wght@400;500&display=swap');

/* ===================================================
   BASE TYPOGRAPHY
=================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p, ul, li, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--brand-primary);
}
p {
  margin-bottom: 18px;
}
strong {
  color: var(--creative5);
  font-weight: 600;
}
em {
  color: var(--creative3);
  font-style: italic;
}

/* ===================================================
   LAYOUT, CONTAINERS & FLEXBOX
=================================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.content-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px 0 rgba(74, 54, 35, 0.06), 0 1.5px 6px rgba(55,44,102,0.08);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 28px 8px;
    border-radius: 14px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg,var(--creative4) 0%,var(--brand-accent) 60%,var(--creative2) 100%);
  border-radius: 40px;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(55,44,102,0.07);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s cubic-bezier(.46,1.46,.76,1.17), box-shadow 0.18s;
}
.card:hover { 
  transform: translateY(-6px) scale(1.03) rotate(-1.1deg);
  box-shadow: 0 10px 32px 0 rgba(74,54,35,0.13), 0 3.5px 8px rgba(112,124,198,0.06);
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--highlight);
  border-left: 8px solid var(--creative3);
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(55,44,102,0.04);
  margin-bottom: 24px;
  color: #211616;
  font-size: 1.07rem;
  line-height: 1.5;
  transition: box-shadow 0.14s;
}
.testimonial-card strong {
  color: var(--creative1);
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
}
.testimonial-card em {
  color: var(--brand-primary);
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================================
   HEADER, NAVIGATION & LOGO
========================================= */
header {
  padding: 0;
  background: var(--brand-primary);
  color: var(--brand-accent);
  box-shadow: 0 8px 32px 0 rgba(74,54,35,0.11);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 16px;
}
.logo img {
  width: 132px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.07));
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 18px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: var(--brand-accent);
  padding: 6px 0 6px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.14s, color 0.14s;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: var(--creative3);
  border-color: var(--creative3);
}

.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(92deg, var(--creative3), var(--brand-secondary));
  padding: 13px 26px;
  border-radius: 32px;
  box-shadow: 0 3px 8px 0 rgba(55,44,102,0.03);
  letter-spacing: 0.07em;
  transition: background 0.16s, box-shadow 0.17s, color 0.15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(91deg, var(--creative3), var(--creative1));
  color: var(--brand-primary);
  box-shadow: 0 7px 22px 0 rgba(200,68,102,0.14);
}
.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: var(--creative4);
  border-radius: 32px;
  border: 2px solid var(--creative2);
  padding: 11px 23px;
  margin-top: 10px;
  box-shadow: 0 1.5px 5px 0 rgba(82,162,178,0.05);
  letter-spacing: 0.06em;
  transition: border 0.14s, color 0.13s, box-shadow 0.14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  color: var(--creative5);
  border-color: var(--creative5);
  background: var(--creative2);
  box-shadow: 0 7px 14px 0 rgba(71,202,140,0.12);
}

/* ======= Mobile Burger ======= */
.mobile-menu-toggle {
  display: none;
  background: var(--creative3);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  z-index: 102;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(150,44,102,0.11);
  border: 0;
  transition: background 0.14s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--creative5);
}
@media (max-width: 950px) {
  nav.main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg,var(--brand-secondary),var(--creative3), var(--creative2));
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.46s cubic-bezier(.68,-0.4,.32,1.3);
  padding: 0 0 0 0;
  width: 100vw;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.85);
  color: var(--brand-primary);
  position: absolute;
  top: 21px; right: 25px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  z-index: 8;
  font-size: 2rem;
  box-shadow: 0 2px 12px 0 rgba(55,44,102,0.08);
  border: none;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--creative2);
  color: #fff;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 76px;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
  z-index: 2;
}
nav.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.52);
  border-radius: 16px;
  padding: 14px 28px 14px 18px;
  margin: 0;
  box-shadow: 0 2.5px 12px rgba(74,54,35,0.17);
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
}
nav.mobile-nav a:active, nav.mobile-nav a:focus, nav.mobile-nav a:hover {
  background: var(--creative4);
  color: var(--creative5);
}

@media (max-width: 600px) {
  nav.mobile-nav {
    padding-left: 18px;
    margin-top: 58px;
    gap: 15px;
  }
  nav.mobile-nav a {
    font-size: 1.11rem;
    padding: 10px 18px 10px 11px;
  }
  .mobile-menu-close {
    top: 8px; right: 9px;
  }
}


/* =================================================
   HOMEPAGE / GENERAL COMPONENT LAYOUTS & CARDS
================================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
ul, ol {
  margin-bottom: 18px;
  color: var(--brand-primary);
  line-height: 1.6;
}
ul li, ol li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
ul li:before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--creative2);
  border-radius: 50%;
  margin-right: 9px;
  position: absolute;
  left: 0; top: 8px;
}
ol li:before {
  display: none;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
  color: var(--creative5);
}

.location-map {
  background: var(--creative2);
  color: #fff;
  border-radius: 12px;
  padding: 17px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2.5px 13px 0 rgba(44,142,166,0.14);
  margin-top: 12px;
}

/* Responsive for main content*/
@media (max-width: 820px) {
  .container {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 20px 0;
    border-radius: 20px;
  }
}
@media (max-width: 530px) {
  .content-wrapper,
  .section {
    padding: 12px 0;
    border-radius: 10px;
  }
}

/* ===============================
   FEATURE / CARD STYLING
=============================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.card-title {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  margin-bottom: 6px;
  color: var(--brand-primary);
}
.card-price {
  font-size: 1.14rem;
  color: var(--creative3);
  font-weight: 700;
}

/* =======================
   SECTION HEADS & DECOS
======================== */
h1, h2 {
  position: relative;
  z-index: 1;
}
h2::after {
  content: '';
  display: inline-block;
  width: 49px; height: 5px;
  border-radius: 2px;
  background: var(--creative3);
  margin-left: 10px;
  position: relative;
  top: -5px;
}

h3 {
  color: var(--creative5);
}

/* ====================
   FOOTER
==================== */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 38px 0 24px 0;
  position: relative;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--creative3);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: #eee;
}
.footer-brand img {
  width: 48px;
  margin-bottom: 7px;
}
.footer-brand a {
  color: var(--creative4);
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 650px) {
  .footer-nav {
    flex-direction: column;
    gap: 11px;
  }
  .footer-brand {
    align-items: stretch;
  }
}

/* ================== 
   MICRO-INTERACTIONS
=================== */
.card, .card-container, .testimonial-card, .cta-primary, .cta-secondary, .mobile-menu-close, nav.main-nav a, nav.mobile-nav a {
  transition: box-shadow 0.13s, background 0.13s, color 0.13s, transform 0.12s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.98);
  box-shadow: 0 4px 8px rgba(74,54,35,0.09);
}

/* ====================
   COOKIE CONSENT BANNER
==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4500;
  background: #fffbe6;
  color: var(--brand-primary);
  box-shadow: 0 -3px 16px rgba(55,44,102,0.08);
  padding: 22px 20px 22px 35px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.03rem;
  border-top: 4px solid var(--brand-secondary);
  min-height: 40px;
}
.cookie-banner p {
  flex: 2 1 280px;
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.03rem;
}
.cookie-banner button {
  margin-left: 10px;
  margin-top: 2px;
  background: var(--creative4);
  color: var(--brand-primary);
  border-radius: 18px;
  padding: 10px 20px;
  border: none;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(55,44,102,0.09);
  transition: background 0.12s, color 0.13s;
}
.cookie-banner .accept {
  background: var(--creative3);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--creative1);
  color: var(--brand-primary);
}
.cookie-banner .reject {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner .reject:hover {
  background: var(--creative2);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--creative2);
  color: #fff;
}
.cookie-banner .settings:hover {
  background: var(--creative5);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 13px 10px 13px 17px;
    font-size: 0.96rem;
    gap: 8px;
  }
  .cookie-banner button {
    margin-left: 0;
    margin-bottom: 5px;
  }
}

/* =============================
   COOKIE PREFERENCES MODAL
============================= */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(50,40,46,0.27);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 25px;
  max-width: 410px;
  width: 94%;
  padding: 32px 26px 28px 26px;
  box-shadow: 0 6px 32px 0 rgba(74,54,35,0.20);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeinmodal 0.48s cubic-bezier(.81,-0.10,.15,1.14);
}
@keyframes fadeinmodal {
  from {transform: scale(0.91) translateY(38px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-content h2 {
  margin-bottom: 7px;
  color: var(--brand-primary);
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  color: var(--brand-primary);
}
.category-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: var(--brand-secondary);
  position: relative;
  margin-left: 8px;
  transition: background 0.13s;
}
.category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.category-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--creative4);
  transition: left 0.18s, background 0.18s;
}
.category-toggle input:checked + .slider {
  left: 18px;
  background: var(--creative3);
}
.category-toggle[aria-disabled='true'] {
  background: var(--creative2);
  cursor: not-allowed;
}
.category-toggle[aria-disabled='true'] .slider {
  background: var(--creative2);
}
.cookie-modal-buttons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 16px;
  font-family: 'Montserrat',Arial,sans-serif;
  padding: 9px 19px;
  font-size: 1rem;
  border: none;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-buttons .save {
  background: var(--creative4);
  color: var(--brand-primary);
}
.cookie-modal-buttons .save:hover {
  background: var(--creative2);
  color: #fff;
}
.cookie-modal-buttons .cancel {
  background: var(--creative3);
  color: #fff;
}
.cookie-modal-buttons .cancel:hover {
  background: var(--creative5);
  color: #fff;
}

@media (max-width: 499px) {
  .cookie-modal-content {
    padding: 14px 8px 14px 9px;
    border-radius: 12px;
  }
}

/* =============================
   RESPONSIVE UTILITIES
============================= */
@media (max-width: 850px) {
  h1 {font-size: 1.59rem;}
  h2 {font-size: 1.24rem;}
}
@media (max-width: 470px) {
  h1 {font-size: 1.17rem;}
  h2 {font-size: 1.08rem;}
  .footer-brand img {width: 34px;}
}


/* =============================
   ARTISTIC DECORATIVE ELEMENTS
============================= */
/* Painted brush effect underlines (for headings artistic touch) */
h1, h2, h3 {
  position: relative;
  z-index: 1;
}
h1::before, h2::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 100%;
  height: 14px;
  width: 82px;
  background: var(--creative1);
  border-radius: 50% 33% 42% 33% / 40% 76% 31% 75%;
  opacity: 0.18;
  z-index: -1;
}
h2::before {
  left: 8px;
  width: 57px;
  height: 10px;
  background: var(--creative3);
  opacity: 0.20;
  border-radius: 60% 36% 33% 58% / 25% 56% 71% 45%;
}

/* RANDOMIZED Section Decorations */
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 18px; right: 34px;
  width: 60px; height: 60px;
  border-radius: 38% 48% 35% 68%/55% 85% 32% 60%;
  background: var(--creative2);
  opacity: 0.11;
  filter: blur(2.5px);
  z-index: 0;
}
.section:nth-child(even)::after {
  background: var(--creative4);
  left: 18px; right:auto;
  bottom: 34px; top: auto;
  width: 34px; height: 44px;
}

@media (max-width: 700px) {
  .section::after {
    width: 32px; height: 27px; right: 12px; bottom: 9px;
  }
}

/* Artistic Separator between section cards */
.section + .section {
  margin-top: 30px;
}

/* ============== 
   MISC UTILS 
================= */
::-webkit-scrollbar {
  width: 11px;
  background: var(--brand-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 22px;
}

[tabindex]:focus-visible,
a:focus-visible, button:focus-visible {
  outline: 2.5px solid var(--creative1);
  outline-offset: 3px;
}

/* Hide content from screen readers, e.g. decorative only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============== END ============= */
