/* =========================
   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, menu, 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, 
main, 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;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #181E1A;
  color: #FAFFF8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  position: relative;
}

*, *:before, *:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

img, picture {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #E5A788;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FAFFF8;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* =========================
   BRAND & COLOR VARIABLES
   ========================= */
:root {
  --primary: #205C3B;
  --secondary: #E5A788;
  --accent: #FAFFF8;
  --surface: #232F27;
  --surface-light: #284B39;
  --neon-green: #38FF88;
  --neon-cyan: #45E4E2;
  --heading: 'Bree Serif', 'Roboto Slab', serif;
  --body: 'Roboto', Arial, sans-serif;
  --shadow: 0 4px 24px 0 rgba(32,92,59,0.13);
  --border-radius: 16px;
  --transition: 0.3s cubic-bezier(.7,.3,.2,1);
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FAFFF8;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.1rem;
  color: #E5A788;
  font-weight: 500;
  margin-bottom: 24px;
}
p, li, address {
  font-family: var(--body);
  font-size: 1rem;
  color: #FAFFF8;
}
l i strong {
  color: var(--neon-green);
  font-weight: 700;
}

/* TYPOGRAPHY SCALE for responsive */
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
  p, li, address { font-size: 1.1rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.5rem; }
  p, li, address { font-size: 1.13rem; }
}

/* =========================
   LAYOUT CONTAINERS
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.text-section {
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(69,228,226,0.11);
  transform: translateY(-4px) scale(1.015);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid var(--neon-cyan);
  background: #FAFFF8;
  color: #202620;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 24px 0 rgba(32,92,59,0.10);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card p {
  color: #202620;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #205C3B;
  font-weight: 500;
  opacity: 0.84;
}
.testimonial-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 2px 32px 0 rgba(56,255,136,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.address-block, .email-block, .opening-hours {
  margin-bottom: 12px;
}

/* =========================
   NAVIGATION & HEADER
   ========================= */
header {
  background: #181E1A;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(32,92,59,0.12);
}
header nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 16px 16px;
}
header nav a {
  color: var(--accent);
  font-family: var(--heading);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-right: 2px;
  padding: 8px 18px;
  border-radius: 32px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
  line-height: 1.1;
}
header nav a:hover, header nav a:focus {
  background: var(--primary);
  color: var(--neon-green);
  box-shadow: 0 0 6px #38FF88;
}
header nav img {
  height: 42px;
  width: auto;
  margin-right: 8px;
  filter: drop-shadow(0 4px 12px #205c3b55);
}

/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  background: var(--primary);
  color: #FAFFF8;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 12px #205c3b44;
  margin-left: auto;
  margin-right: 10px;
  transition: background var(--transition), color var(--transition);
  z-index: 220;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--neon-cyan);
  color: #202620;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 94vw;
  max-width: 370px;
  background: #232F27;
  box-shadow: -4px 0 32px 0 rgba(32,92,59,0.27);
  padding: 30px 24px 24px 24px;
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(110%);
  transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: relative;
  align-self: flex-end;
  top: 0;
  right: 0;
  background: none;
  color: var(--neon-cyan);
  font-size: 2.2rem;
  padding: 8px 8px;
  margin-bottom: 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--surface-light);
  color: var(--neon-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #FAFFF8;
  font-family: var(--heading);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  padding: 14px 10px 14px 0;
  border-radius: 3px 20px 20px 3px;
  transition: background var(--transition), color var(--transition), padding-left 0.15s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--neon-green);
  padding-left: 10px;
}
.header nav {
  flex-wrap: wrap;
}

/* Hide desktop nav/show burger by screen */
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex;
  }
}

/* =========================
   MAIN, SECTIONS, CARDS
   ========================= */
main {
  width: 100%;
  background: #181E1A;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feature/Service List Styles */
ul {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
ul > li {
  position: relative;
  padding-left: 22px;
}
ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px #45E4E2;
}

/* Service/Feature Section Accents */
strong {
  color: var(--neon-green);
  font-weight: 700;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.012em;
  border-radius: 32px;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  background: var(--neon-cyan);
  color: #202620;
  box-shadow: 0 2px 20px 0 rgba(69,228,226,0.16);
  margin-top: 8px;
}
.cta.primary {
  background: var(--primary);
  color: #FAFFF8;
  box-shadow: 0 2px 18px 0 rgba(32,92,59,0.21);
  border: 2px solid var(--neon-green);
}
.cta.secondary {
  background: var(--secondary);
  color: #202620;
  border: 2px solid var(--neon-cyan);
}
.cta:hover, .cta:focus {
  background: var(--neon-green);
  color: #202620;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px 0 #38FF8840;
}

/* =========================
   FOOTER
   ========================= */
footer {
  width: 100%;
  background: #232F27;
  padding: 22px 0 0 0;
  color: #FAFFF8;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  margin-top: 60px;
}
footer .container {
  padding-bottom: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer address, footer p {
  font-size: 0.98rem;
  color: #FAFFF8;
  margin-bottom: 3px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
footer nav a {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--neon-cyan);
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-right: 8px;
  padding: 6px 13px;
  border-radius: 16px;
  transition: background var(--transition), color var(--transition);
}
footer nav a:hover, footer nav a:focus {
  background: var(--primary);
  color: var(--neon-green);
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 300;
  background: #1b2322ee;
  color: #FAFFF8;
  padding: 24px 32px;
  box-shadow: 0 -2px 18px 0 rgba(69,228,226,0.13);
  font-size: 1.08rem;
  border-top: 2px solid var(--neon-cyan);
  animation: cookie-banner-slide-in 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookie-banner-slide-in {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 22px;
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  border: none;
  background: var(--primary);
  color: #FAFFF8;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn.accept {
  background: var(--neon-green);
  color: #202620;
  box-shadow: 0 0 8px #38FF8855;
}
.cookie-btn.reject {
  background: #66423B;
  color: #FAFFF8;
}
.cookie-btn.settings {
  background: var(--neon-cyan);
  color: #202620;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: #202620;
  box-shadow: 0 0 16px #E5A78844;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 47, 39, 0.93);
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-modal-content {
  background: #232F27;
  color: #FAFFF8;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 320px;
  max-width: 95vw;
  padding: 40px 34px 26px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  animation: cookie-modal-slide-down 0.45s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookie-modal-slide-down {
  0% { transform: translateY(-36px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 20px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #E5A788;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--neon-cyan);
  border-radius: 6px;
  background: #282C28;
  cursor: pointer;
  margin-right: 8px;
  transition: border-color 0.2s;
  position: relative;
}
.cookie-category input[type="checkbox"]:checked {
  border-color: var(--neon-green);
  background: #222C21;
  box-shadow: 0 0 4px #38ff8828;
}
.cookie-category input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 2px;
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  color: var(--neon-cyan);
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #284B39;
  color: var(--neon-green);
}

/* =========================
   RESPONSIVE LAYOUT
   ========================= */
@media (max-width: 1023px) {
  .content-wrapper {
    gap: 20px;
  }
  .container {
    max-width: 97vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    padding-left: 8px;
    padding-right: 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,.card-container,.content-grid,.text-image-section,.card-content,
  .testimonial-card, footer .content-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .section, section {
    margin-bottom: 44px;
    padding: 21px 2vw;
  }
  .container {
    padding: 0 2vw;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  p, li { font-size: 0.99rem; }
  header nav a {
    font-size: 1rem;
    padding: 7px 10px;
  }
  .testimonial-card {
    padding: 14px;
    margin-bottom: 14px;
  }
}
@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 12px;
    font-size: 0.98rem;
    gap: 10px;
  }
  .cookie-banner .cookie-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cookie-modal-content {
    min-width: 92vw;
    padding: 24px 7vw 18px 7vw;
  }
}

/* =========================
   SCROLLBAR & MICRO INTERACTIONS
   ========================= */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
}

/* Card & Button Micro-Interactions */
.card, .cta, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:active, .cta:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px 0 rgba(32,92,59,0.25);
}

/* =========================
   Z-INDEX LAYERING
   ========================= */
header {
  z-index: 100;
}
.mobile-menu {
  z-index: 210;
}
.cookie-banner {
  z-index: 300;
}
.cookie-modal {
  z-index: 350;
}

/* =========================
   UTILITY CLASSES
   ========================= */
.hide {
  display: none !important;
}
.show {
  display: flex !important;
}
/* Spacing Helpers */
.mb-4 { margin-bottom: 4px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-20 { gap: 20px !important; }

/* =========================
   ACCESSIBILITY
   ========================= */
:focus {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* =========================
   END OF CSS
   ========================= */
