/* CSS RESET & NORMALIZE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F6F8;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; border: 0; }
a { color: #225B7C; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F29F05; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
  font-weight: bold;
}

/* TYPOGRAPHY SCALE */
h1 { font-size: 2.2rem; line-height: 1.15; letter-spacing: -1px; }
h2 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 24px; }
h3 { font-size: 1.15rem; line-height: 1.25; margin-bottom: 8px; }
.subheadline { font-size: 1.12rem; color: #225B7C; font-weight: 500; margin-bottom: 2rem; }
strong { font-weight: bold; color: #225B7C; }

/* BRAND COLORS */
:root {
  --brand-primary: #225B7C;
  --brand-secondary: #F4F6F8;
  --brand-accent: #F29F05;
  --brand-accent-dark: #C67900;
  --gray-900: #222;
  --gray-700: #454545;
  --gray-200: #F0F0F0;
  --white: #fff;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .content-wrapper { flex-direction: column; gap: 24px; }
}

/* HEADER / NAVIGATION */
.site-header {
  background: var(--brand-primary);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 110;
  box-shadow: 0 2px 12px rgba(34, 91, 124, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.logo-link img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  color: var(--brand-accent);
}

.main-nav .btn-primary {
  margin-left: 12px;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2rem;
  cursor: pointer;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover { color: var(--brand-accent-dark); }

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,91,124,0.97);
  color: var(--white);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
  z-index: 1120;
  display: flex;
  flex-direction: column;
  padding: 36px 24px 24px 32px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--brand-accent-dark); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* HERO STYLE */
.hero {
  background: linear-gradient(98deg, #F29F05 0 12%, #f4f6f8 68%); /* soft accent brush look */
  border-radius: 0 0 56px 0;
  box-shadow: 0 12px 32px rgba(242,159,5,0.04);
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
}
.hero .container {
  align-items: center;
}
.hero h1 {
  font-size: 2rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-shadow: 1px 1px 0 #fff9e8;
}
@media (min-width: 600px) {
  .hero h1 { font-size: 2.9rem; }
}
.hero .btn-primary {
  margin-top: 28px;
}

/* SECTION TITLE BRUSH DECORATION */
h2 {
  position: relative;
}
h2::after {
  content: '';
  display: block;
  background: var(--brand-accent);
  height: 8px;
  border-radius: 12px;
  width: 48px;
  margin: 14px 0 0 0;
}

/* BUTTONS STYLES */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 32px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(34,91,124,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  border: 2px solid var(--brand-accent);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-color: var(--brand-accent-dark);
  box-shadow: 0 4px 24px rgba(242,159,5,0.22);
}
.btn-secondary {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-color: var(--brand-accent);
  box-shadow: 0 3px 12px rgba(34,91,124,0.2);
}

/* INPUTS & SELECTS */
input[type="text"], 
select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #c9d8e4;
  font-size: 1rem;
  margin: 0 0 0 0;
  background: var(--gray-200);
  color: var(--gray-900);
  outline: none;
  min-width: 0;
  transition: border 0.2s, box-shadow 0.2s;
}
input[type="text"]:focus, select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 2px 8px rgba(34,91,124,0.08);
}

/* FLEX CONTAINERS FOR FEATURES, CARDS, ETC */
.features .content-wrapper, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,91,124,0.06);
  padding: 28px 24px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid var(--brand-accent);
  transition: transform 0.15s, box-shadow 0.23s;
}
.feature:hover {
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 28px rgba(242,159,5,0.18);
}
.feature img {
  width: 42px; height: 42px; background: #fffbe7; border-radius: 8px; box-shadow: 0 2px 8px #fbc64b33; margin-bottom: 10px;
}
.feature h3 { color: var(--brand-primary); margin-top: 0; font-size: 1.2rem; font-family: 'Montserrat', cursive, Arial, sans-serif; }

/* SEARCH SECTION */
.search .content-wrapper.search-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
}
.search .content-wrapper input[type="text"],
.search .content-wrapper select {
  flex: 1 1 160px;
  max-width: 228px;
  margin-bottom: 0;
}
.search .btn-primary { flex: none; align-self: stretch; }

/* CARD LISTS + TESTIMONIALS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 24px 8px 16px 8px;
  box-shadow: 0 2px 12px rgba(34,91,124,0.08);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 350px;
}

.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: flex-start; }
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,91,124,0.11);
  border-left: 5px solid var(--brand-accent);
  color: #1e2a39;
  font-size: 1.05rem;
  max-width: 360px;
  min-width: 220px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
}
.testimonial-card strong {
  font-size: 0.97rem;
  color: var(--brand-primary);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* CTA SECTION */
.cta {
  background: var(--brand-accent);
  border-radius: 20px 72px 16px 0;
  box-shadow: 0 4px 16px rgba(242,159,5,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta p { font-size: 1.2rem; color: var(--brand-primary); margin-bottom: 22px; font-weight: 700; }

/* SHOP / FILTERS SECTION */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  align-items: center;
}
.shop-filters input,
.shop-filters select {
  min-width: 130px;
}

.shop-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin-top: 24px;
}
.shop-list li {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 10px #225b7c13;
  padding: 20px 24px;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--brand-primary);
  transition: box-shadow 0.19s;
}
.shop-list li:hover { box-shadow: 0 8px 26px #225b7c2a; }
.shop-list h3 { color: var(--brand-accent-dark); font-weight: 700; font-family: 'Montserrat', cursive, Arial, sans-serif; }

/* SERVICES */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.service-item {
  background: #fff;
  border-radius: 16px 6px 26px 9px;
  box-shadow: 0 2.5px 13px #225b7c14;
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  border-left: 6px solid var(--brand-accent);
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
}
.service-item:hover {
  box-shadow: 0 8px 26px #f29f0522;
  transform: translateY(-3px) scale(1.02) rotate(1.2deg);
}
.service-price {
  font-weight: bold;
  color: var(--brand-primary);
  background: #f9f6ed;
  padding: 6px 18px;
  border-radius: 12px;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* NEWS LIST */
.news-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.news-highlight {
  background: #fffbf3;
  border-radius: 14px 8px 18px 8px;
  box-shadow: 0 2px 10px #f29f0544;
  padding: 20px 22px;
  min-width: 200px;
  max-width: 330px;
  border-left: 5px solid var(--brand-accent);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.13s;
}
.news-highlight:hover {
  box-shadow: 0 8px 24px #f29f052a;
  transform: translateY(-2px) scale(1.012);
}
.event-calendar {
  background: var(--brand-secondary);
  border-radius: 18px;
  padding: 20px 24px;
  min-width: 180px;
  max-width: 330px;
  border-left: 5px solid var(--brand-primary);
  margin-bottom: 20px;
}
.event-calendar h3 { color: var(--brand-primary); }
.event-calendar ul {
  list-style: disc inside;
  margin: 10px 0 0 16px;
}

/* ABOUT & TEAM SECTION */
.about-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.value-list ul {
  list-style: disc inside;
  margin-bottom: 12px;
}
.team-intro {
  background: var(--brand-secondary);
  padding: 16px 24px;
  border-radius: 13px;
  box-shadow: 0 2px 8px #225b7c10;
  max-width: 360px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px #225b7c10;
  padding: 20px 20px 16px 20px;
  position: relative;
  margin-bottom: 20px;
  border-left: 4px solid var(--brand-accent);
}
.faq-item h3 { color: var(--brand-primary); }

/* CONTACT SECTION */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 200px;
}
.map-placeholder {
  background: #fffbe7;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #f29f0540;
  min-width: 220px;
  max-width: 320px;
}

/* REGISTER SHOP */
.register-shop .content-wrapper, .thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.register-shop ul,
.thank-you-section ul {
  margin-left: 22px;
  margin-bottom: 14px;
  list-style: disc inside;
}

/* LEGAL SECTIONS */
.legal-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 8px #225b7c10;
}
.legal-section ul {
  margin: 12px 0 12px 22px;
  list-style: disc inside;
}

/* FOOTER */
footer {
  background: var(--brand-primary);
  color: var(--white);
  border-radius: 40px 0 0 0;
  box-shadow: 0 -2px 24px #225b7c12;
  margin-top: 60px;
  padding: 32px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-links a {
  color: var(--brand-accent);
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--white);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  height: 40px;
}
.footer-brand span { font-family: 'Montserrat', Arial, sans-serif; font-size: 0.95rem; }

@media (max-width: 768px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-brand { margin-top: 8px; }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  .container { padding: 0 8px; }
  .hero { padding: 36px 0 24px 0; border-radius: 0 0 32px 0; }
  .cta { border-radius: 11px 33px 9px 0; padding: 24px 7px; }
  .section, .features, .search { padding: 28px 6px; }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.13rem; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .feature, .card, .service-item, .news-highlight, .shop-list li, .testimonial-card {
  transition: box-shadow 0.18s, background 0.16s, color 0.16s, transform 0.18s;
}
.card:hover,
.news-highlight:hover,
.shop-list li:hover,
.service-item:hover,
.testimonial-card:hover {
  box-shadow: 0 8px 32px #f29f0577;
  transform: scale(1.012) rotate(-1deg);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand-primary);
  color: var(--white);
  padding: 18px 16px 16px 16px;
  box-shadow: 0 -4px 24px #0001, 0 -1.5px 9px var(--brand-accent);
  z-index: 2005;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookie-slide-up 0.7s cubic-bezier(0.21, 1.1, 0.62, 1);
  font-size: 1rem;
}
@keyframes cookie-slide-up {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0%); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 5px #f29f0577;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.accept {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--brand-accent-dark);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--white);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.cookie-btn.settings {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,91,124,.8);
  z-index: 2999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.5s cubic-bezier(0.21,1.1,0.62,1);
}
@keyframes cookie-modal-in {
  0% { opacity:0; transform: scale(0.92); }
  100% { opacity:1; transform: scale(1); }
}
.cookie-modal-content {
  background: #fff;
  color: var(--brand-primary);
  border-radius: 24px 6px 18px 9px;
  min-width: 320px; max-width: 98vw;
  padding: 32px 20px 20px 32px;
  box-shadow: 0 4.5px 28px #225b7c55;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 1.35rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
}
.cookie-modal-close:hover { color: var(--brand-primary); }
.cookie-modal h2 { color: var(--brand-primary); margin-bottom: 4px; font-size: 1.3rem; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin:14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-switch {
  width: 38px; height: 20px; appearance: none;
  background: #e8ecef;
  border-radius: 14px;
  position: relative;
  outline: none;
  margin-right: 6px;
  box-shadow: 0 1px 5px #225b7c18 inset;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: var(--brand-accent);
}
.cookie-switch:checked::before {
  left: 17px;
  background: var(--brand-primary);
}
.cookie-switch::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  transition: left 0.18s, background 0.17s;
  position: absolute;
  background: #fff;
  left: 2px; top: 2px;
  box-shadow: 0 1px 7px #225b7c18 inset;
}
/* Essential cookies are locked on */
.cookie-category.essential label { color: #999; cursor: not-allowed; }
.cookie-switch[disabled] { opacity: 0.4; cursor: not-allowed; }

.cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}

@media (max-width: 430px) {
  .cookie-modal-content {
    min-width: 90vw;
    padding: 18px 5px 14px 13px;
  }
}

/* GENERAL UTILITY */
ul, ol { padding-left: 20px; margin-bottom: 12px; }
::-webkit-scrollbar { width: 10px; background: #f0f0f0; }
::-webkit-scrollbar-thumb {
  background: var(--brand-accent);
  border-radius: 38px;
}

/* ARTISTIC/FUN EXTRAS */
.feature::before, .service-item::before, .news-highlight::before {
  content: '';
  position: absolute;
  top: -18px; left: -16px;
  width: 46px; height: 34px;
  background: rgba(242,159,5,0.09);
  border-radius: 16px 30px 22px 43px;
  z-index: 0;
  filter: blur(2px);
}

.card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  top: 2px; left: -10px;
  width: 19px; height: 95%;
  background: linear-gradient(180deg,#f29f0530 0%, #225b7c12 85%);
  border-radius: 20px;
  z-index: 0;
  filter: blur(1.2px);
}

@media (max-width:460px) {
  .main-nav { display: none !important; }
  .site-header .container { flex-direction: row; gap: 8px; }
}

/* Z-INDEX FIX FOR STICKY HEADER & OVERLAYS */
.site-header { z-index: 1001; }
.mobile-menu { z-index: 1120; }
.cookie-banner { z-index: 3120; }

/* ENSURE NO GRID/COLUMN SYSTEM */
/* All layout containers use only display:flex and related flexbox properties as above. */
