/* ========================================================
   RESET & BASE STYLES
======================================================== */

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  color: #56462A;
  background-color: #F7F4EE;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #56462A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #E77C13;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===================
   TYPOGRAPHY HIERARCHY
=================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .02em;
}
h1 {
  font-size: 2.625rem; /* 42px */
  color: #E77C13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  color: #56462A;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.125rem; /* 18px */
}

p, li, dd, dt {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #56462A;
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
}
.subheadline {
  color: #A67C52;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 24px;
  font-weight: 500;
}

/* ===============================
   GLOBAL BUTTONS & INTERACTIONS
============================== */

.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #E77C13;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 28px;
  padding: 0.7em 2em;
  box-shadow: 0 2px 12px rgba(224, 132, 19, 0.18),0 1.5px 6px rgba(0,0,0,0.09);
  cursor: pointer;
  outline: none;
  margin-top: 18px;
  transition: background 0.25s, transform 0.14s, box-shadow 0.22s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #fbbf46;
  color: #56462A;
  transform: translateY(-3px) scale(1.04) rotate(-1deg);
  box-shadow: 0 5px 20px rgba(231,124,19,0.19), 0 1px 12px rgba(0,0,0,0.13);
}

.btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #E77C13;
  border: 2px solid #E77C13;
  border-radius: 28px;
  padding: 0.7em 1.8em;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 7px rgba(231,124,19,.09);
  transition: background 0.22s, color 0.22s, border 0.22s;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFF5E7;
  border-color: #56462A;
  color: #56462A;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 16px;
}

/* ========================
   HEADER & MAIN NAVIGATION
======================== */

header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(214,183,123,0.07);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 70px;
}
.logo {
  margin-right: 22px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 0px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.19s, border 0.24s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E77C13;
  border-bottom: 2.5px solid #E77C13;
}
.btn-primary {
  margin-left: 18px;
}

.mobile-menu-toggle {
  display: none;
}

/* ------ Mobile Burger Menu Styles ------- */
.mobile-menu-toggle {
  background: #E77C13;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(224,123,19,.10);
  transition: background 0.2s, transform 0.18s;
}
.mobile-menu-toggle:active {
  background: #fbbf46;
  color: #56462A;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 2222;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 2px 32px rgba(0,0,0,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #E77C13;
  border: none;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
}
.mobile-menu-close:hover {
  color: #D07317;
  transform: scale(1.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 20px 40px;
}
.mobile-nav a {
  color: #56462A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 11px 0;
  border-radius: 12px;
  transition: background 0.19s, color 0.19s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF5E6;
  color: #E77C13;
}

/* Hide main nav for mobile, show burger menu */
@media (max-width: 1000px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==============================
   HERO SECTION & CONTENT BLOCKS
============================== */

.hero{
  background: #FFF0DA;
  border-bottom: 3px solid #E77C13;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.hero .container{
  min-height: 290px;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 32px rgba(214,183,123,0.09);
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFBEF;
  margin-bottom: 20px;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 14px rgba(231, 124, 19, 0.10);
  position: relative;
  transition: transform 0.18s, box-shadow 0.23s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 6px 35px rgba(231, 124, 19, 0.15),0 3px 10px rgba(214,183,123,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.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: flex-start;
    gap: 16px;
  }
  .hero .container{
    min-height: 195px;
    padding-bottom: 20px;
  }
}

.content-grid { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 20px; 
  justify-content: space-between; 
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 16px rgba(246, 194, 111, 0.13);
  padding: 20px;
  flex: 1 1 230px;
}
@media (max-width:650px) {
  .feature-item{
    padding: 15px;
  }
}

/* ==============
   SPECIAL LISTS
============== */
.feature-grid, .service-list, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 20px 0 0 0;
}

.feature-grid li, .service-list li, .product-grid li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 26px rgba(225,180,71,0.09);
  padding: 24px 18px 20px 18px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.17s;
  position: relative;
  margin-bottom: 14px;
  border: 2px solid transparent;
}
.feature-grid li:hover, .service-list li:hover, .product-grid li:hover {
  transform: translateY(-5px) scale(1.03) rotate(-1.3deg);
  box-shadow: 0 9px 38px rgba(231,124,19,0.13),0 3px 16px rgba(246,194,111,0.11);
  border-color: #FFE3AA;
}

.feature-grid img,.service-list img,.product-grid img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #FFF7E0;
  box-shadow:0 2px 8px #FFF2CC66;
  margin-bottom: 6px;
  object-fit: contain;
}
.service-price {
  font-family: 'Montserrat', sans-serif;
  color: #E77C13;
  font-weight: 700;
  font-size: 1.12rem;
  background: #FFF2CC;
  padding: 3px 10px;
  border-radius: 11px;
  margin-top: 6px;
  box-shadow: 0 1.5px 7px #EAC16A11;
}

.product-categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 19px;
}
.product-categories a {
  font-family: 'Montserrat', sans-serif;
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 1.02rem;
  color: #56462A;
  background: #FFF5E7;
  border: 2.7px solid #FFD293;
  font-weight: 500;
  transition: background 0.17s, color 0.18s, border 0.18s, transform 0.22s;
  cursor: pointer;
  box-shadow: 0 2px 9px #FFD2931A;
}
.product-categories a.active, .product-categories a:hover, .product-categories a:focus {
  background: #E77C13;
  color: #fff;
  border-color: #E77C13;
  transform: scale(1.08) rotate(-3deg);
}

.service-benefits, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  font-size: 1.02rem;
}
.service-benefits li, .feature-list li {
  background: #FFF7E1;
  color: #56462A;
  border-radius: 15px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px #EAC16A13;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}
.service-benefits img, .feature-list img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  object-fit: contain;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

/* ================================
   TESTIMONIALS & DISTINCTIVE CARDS
================================= */
.testimonials {
  background: #F7F4EE;
  padding: 40px 0 0 0;
}
.testimonials .container {
  align-items: center;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe4;
  border-radius: 16px;
  box-shadow: 0 3px 17px #F6C26F14;
  margin-bottom: 24px;
  border: 2px solid #FFE3AA;
  position: relative;
  overflow: hidden;
  min-width: 220px;
  max-width: 700px;
  font-size: 1.04rem;
  color: #56462A;
}
.testimonial-card p {
  color: #56462A !important;
  font-style: italic;
  font-size: 1.075rem;
  margin-bottom: 2px;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  color: #A67C52;
  font-size: .99rem;
  margin-left: 14px;
}
/* --- Testimonial quote icon (decorative) --- */
.testimonial-card::before {
  content: "\201C";
  color: #E77C13;
  font-size: 2.6rem;
  font-family: 'Montserrat', serif;
  opacity: 0.20;
  position: absolute;
  left: 10px;
  top: 6px;
  pointer-events: none;
  z-index: 0;
  animation: bounceQuote 2.4s infinite ease-in-out alternate;
}
@keyframes bounceQuote {
  0% { transform: translateY(0) scale(1); }
  75% { transform: translateY(-10px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}

/* Various blocks (ex: map) */
.map-embed {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px #F6C26F09;
  padding: 16px 20px;
}
@media (max-width: 700px) {
  .map-embed {
    flex-direction: column;
    gap: 11px;
    padding: 13px 6px;
  }
}

/* ===============================
   CTA (CALL TO ACTION) SECTIONS
=============================== */
.cta {
  background: #FFF5E0;
  border-radius: 20px;
  box-shadow: 0 4px 18px #FFD2931B;
  text-align: center;
  padding: 48px 0 42px 0;
  margin-bottom: 0;
}
.cta h2 {
  margin-bottom: 10px;
  color: #E77C13;
}
.cta .btn-primary {
  margin: 18px auto 0 auto;
  display: inline-block;
}

/* ================
   LEGAL & FOOTER
================== */
.legal {
  background: #fff;
  border-radius: 12px;
  padding: 38px 22px;
  margin: 35px 0;
  box-shadow: 0 3px 18px #F6C26F0E;
}
.legal h1, .legal h2 {
  color: #E77C13;
}
.legal ul {
  margin-left: 11px;
  margin-bottom: 20px;
}

footer {
  margin-top: 80px;
  background: #FFF6E6;
  border-top: 3.5px solid #E77C13;
  padding: 38px 0 14px 0;
}
.footer-logo img {
  height: 32px;
  margin-bottom: 9px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 15px 0 11px 0;
}
.footer-nav a {
  font-size: .99rem;
  font-family: 'Montserrat', sans-serif;
  color: #A67C52;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .18s, border .18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #E77C13;
  border-bottom: 2px solid #E77C13;
}
.footer-contact {
  color: #56462A;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 13px 0 6px 0;
}
.footer-copyright {
  color: #A67C52;
  font-size: 0.97rem;
  margin-top: 6px;
}

/* ===============
   FAQ SECTION
================ */
.faq dl {
  margin: 30px 0;
}
.faq dt {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 16px;
  color: #E77C13;
}
.faq dd {
  margin-left: 0px;
  margin-bottom: 5px;
  margin-top: 0;
  color: #56462A;
  font-size: 1rem;
}

/* ===============
    THANK YOU & MODALS
================== */
.thank-you, .thank-you .container, .thank-you .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.thank-you h1 {
  color: #E77C13;
}

/* ================================
         RESPONSIVE LAYOUTS
=================================== */
@media (max-width: 1000px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .main-nav, header .btn-primary {
    display: none;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 33px;
  }
  .feature-grid, .service-list, .product-grid {
    flex-direction: column;
    gap: 12px;
  }
  .product-categories {
    gap: 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }
  .footer-logo img {
    height: 26px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .section, .legal {
    padding: 14px 2px;
    border-radius: 9px;
  }
  .card, .card-container, .feature-item, .testimonial-card {
    border-radius: 10px;
    padding: 10px;
  }
}

/* ============================
    COOKIE CONSENT BANNER
============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4444;
  width: 100vw;
  background: #fff9ec;
  box-shadow: 0 -2px 18px #EAC16A19;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 60px;
  animation: fadeBannerIn 0.56s cubic-bezier(.89,-0.2,.39,1.45);
}
@keyframes fadeBannerIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  font-family: 'Roboto', Arial, sans-serif;
  color: #56462A;
  font-size: 1.06rem;
  max-width: 520px;
}
.cookie-banner .button-group .btn-primary,
.cookie-banner .button-group .btn-secondary {
  font-size: 0.99rem;
  padding: 0.5em 1.35em;
}
@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 7px;
  }
}
/* ----- Cookie Modal Popup ------ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(246,194,111, 0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeBannerIn 0.29s ease-out;
}
.cookie-modal {
  background: #fff;
  color: #56462A;
  padding: 39px 28px 30px 28px;
  border-radius: 24px;
  box-shadow: 0 5px 48px #EAC16A33;
  min-width: 320px;
  max-width: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cookie-modal h2 {
  color: #E77C13;
  font-size: 1.3rem;
  margin-bottom: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category label {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #E77C13;
  width: 18px;
  height: 18px;
  border-radius: 6px;
}
.cookie-modal .button-group {
  margin-top: 24px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: 1rem;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 14px;
  top: 11px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #E77C13;
  cursor: pointer;
  transition: color .15s, transform .17s;
}
.cookie-modal .close-modal:hover {
  color: #D07317;
  transform: scale(1.16);
}

/* ============================
   ANIMATION / MICROINTERACTIONS
============================ */
.card, .feature-grid li, .product-grid li, .service-list li,
.btn-primary, .btn-secondary,
.product-categories a,
.testimonial-card {
  transition: box-shadow 0.22s, transform 0.18s, border 0.21s, background 0.18s, color 0.17s;
}
@media (hover: hover) {
  .card:hover, .feature-grid li:hover, .product-grid li:hover, .service-list li:hover {
    transform: translateY(-7px) scale(1.035) rotate(-1deg);
    box-shadow: 0 11px 36px #E77C1320,0 2.5px 8px #D6B77B19;
  }
  .btn-primary:hover, .btn-secondary:hover {
    filter: brightness(1.04) saturate(1.18);
  }
  .product-categories a:hover {
    background: #E77C13;
    color: #fff;
    border-color: #E77C13;
    transform: scale(1.11) rotate(-4deg);
  }
  .footer-nav a:hover {
    color: #E77C13;
    border-bottom: 2px solid #E77C13;
  }
}

/* ============================
   UTILITIES & OVERRIDES
============================ */
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Animating playful floating on hero headline */
.hero h1 {
  animation: floatPlayful 2.7s infinite cubic-bezier(.77,-0.1,.26,1.09) alternate;
  position: relative;
  z-index: 1;
}
@keyframes floatPlayful {
  0%{transform: translateY(0) skewX(0deg);}
  65%{transform: translateY(-5px) skewX(-2deg);}
  100%{transform: translateY(2px) skewX(2deg);}
}

/* ============================
      PLAYFUL FUN FONTS
============================ */
body{
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1, h2, h3, .btn-primary, .btn-secondary, .product-categories a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ============================
         COLOR UTILS
============================ */
.bg-primary { background: #E77C13; color: #fff; }
.bg-accent  { background: #F7F4EE; color: #56462A; }
.bg-light   { background: #FFF5E7; }
.bg-white   { background: #fff; }
.text-accent { color: #E77C13 !important; }

/* ============================
   ACCESSIBILITY & CONTRAST
============================ */
.testimonial-card, .testimonial-card p, .testimonial-author {
  color: #56462A !important;
  background: #fffbe4 !important;
}

/* ============================
   FLEX WRAP AND CONSISTENT GAPS
============================ */
.card-container, .feature-grid, .service-list, .product-grid, .service-benefits, .feature-list {
  gap: 20px;
  flex-wrap: wrap;
}
.card, .feature-grid li, .product-grid li, .service-list li, .testimonial-card {
  margin-bottom: 20px;
  min-width: 0;
}

/***********************
  END OF FILE
**********************/
