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

html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #f7f7f7;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  color: #21373d;
  font-size: 16px;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: #21373d;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #81b29a;
  outline-offset: 2px;
}
a:hover, a:active {
  color: #81b29a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input[type="button"], input[type="submit"] {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #21373d;
  font-weight: 700;
}
h1 {
  font-size: 2.625rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.subtitle {
  color: #81b29a;
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 500;
}
strong {
  font-weight: 700;
}
p {
  margin-bottom: 12px;
  font-size: 1rem;
}
address {
  font-style: normal;
  font-size: 0.97rem;
  color: #425962;
  margin-top: 12px;
}

/* MAIN CONTAINER AND LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  background: #fff;
  padding: 16px 0 14px 0;
  border-bottom: 1px solid #e3e8eb;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 100;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #f6f9fa;
  color: #81b29a;
}

.main-nav img {
  height: 40px;
  margin-right: 20px;
}

.cta-button {
  background: #21373d;
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 700;
  margin-left: 10px;
  transition: background 0.28s, box-shadow 0.20s;
  box-shadow: 0 2px 10px rgba(33, 55, 61, 0.06);
  border: none;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #81b29a;
  color: #21373d !important;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #21373d;
  color: #fff;
  font-size: 2rem;
  border-radius: 6px;
  border: none;
  padding: 6px 16px;
  margin-left: auto;
  z-index: 201;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #81b29a;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,55,61,0.97);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.62,.11,.31,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  margin: 22px 22px 0 0;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #81b29a;
  color: #21373d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 40px 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 2px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(129,178,154,0.18);
  color: #81b29a;
}

/* Banner, Section, Layout Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(33, 55, 61, 0.08);
  padding: 30px 24px;
  min-width: 220px;
}
.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 2px 10px rgba(33,55,61,0.04);
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 7px;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(33,55,61,0.10);
  transform: translateY(-5px) scale(1.02);
}

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

/* Service List and Cards */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-list li {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 14px;
  padding: 26px 18px 22px 18px;
  box-shadow: 0 2px 8px rgba(33,55,61,0.05);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.service-list h3 {
  margin-bottom: 2px;
}
.service-list span {
  margin-top: 5px;
  color: #81b29a;
  font-size: 1rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(33,55,61,0.08);
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.service-card:hover {
  box-shadow: 0 8px 24px 0 rgba(33,55,61,0.12);
  transform: translateY(-5px) scale(1.01);
}
.service-card span {
  color: #81b29a;
  font-size: 1rem;
  margin-top: 7px;
}

.menu-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.menu-category {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(33,55,61,0.07);
  padding: 24px 18px 20px 18px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-category span {
  color: #81b29a;
  font-size: 1rem;
}

/* Testimonials */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  color: #21373d;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 4px 16px rgba(33, 55, 61, 0.09);
  min-width: 250px;
  max-width: 430px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
  font-size: 1.125rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #81b29a;
  margin-top: 8px;
}
.testimonial-card p {
  color: #21373d;
  font-size: 1.07rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(33,55,61,0.13);
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #21373d;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 22px 20px 18px 20px;
  z-index: 3000;
  box-shadow: 0 -2px 14px rgba(33, 55, 61, 0.12);
  animation: bannerIn 0.5s cubic-bezier(.62,.11,.31,1);
}
@keyframes bannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  font-size: 1rem;
  color: #fff;
  margin-right: 10px;
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  border-radius: 6px;
  border: none;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: #81b29a;
  color: #21373d;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.reject {
  background: #f7f7f7;
  color: #425962;
  border: 1px solid #e3e8eb;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #81b29a;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #21373d;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #81b29a;
  color: #fff;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,55,61,0.82);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s cubic-bezier(.62,.11,.31,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #21373d;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(33,55,61,0.18);
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn 0.38s cubic-bezier(.62,.11,.31,1);
}
@keyframes modalIn {
  from { transform: translateY(65px) scale(0.96); opacity: 0.1; }
  to   { transform: translateY(0) scale(1.0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  color: #21373d;
  border: none;
  font-size: 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #f7f7f7;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #425962;
  opacity: 0.7;
}
.cookie-category label {
  margin-left: 0;
  font-size: 1rem;
}
.cookie-modal-btns {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-btns .cookie-btn {
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: #81b29a;
  color: #21373d;
  font-weight: 600;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-btns .cookie-btn:last-child {
  background: #f7f7f7;
  color: #425962;
  border: 1px solid #e3e8eb;
}
.cookie-modal-btns .cookie-btn:hover, .cookie-modal-btns .cookie-btn:focus {
  background: #21373d;
  color: #fff;
}

/* Footer */
.footer {
  margin-top: 40px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid #e3e8eb;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 32px;
  justify-content: space-between;
}
.footer img {
  height: 35px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #21373d;
  font-size: 1rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  margin-bottom: 0;
  transition: color 0.17s;
}
.footer-nav a:hover { color: #81b29a; }
address { margin-bottom: 8px; }
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
}
.social-links li img {
  height: 24px;
  width: 24px;
  transition: filter 0.18s, transform 0.15s;
}
.social-links li img:hover {
  filter: brightness(0.8) saturate(2) drop-shadow(0px 1px 1.5px #81b29a);
  transform: scale(1.06);
}

/* Content Utility Classes */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.confirmation-message {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.cta-section {
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(33,55,61,0.03);
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  align-items: flex-start;
}
.contact-info, .map-text {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 12px;
  padding: 26px 20px 16px 20px;
  box-shadow: 0 2px 8px rgba(33,55,61,0.04);
  min-width: 220px;
}
.contact-info strong { color: #81b29a; }

/* Forms (Generic styling if forms are present) */
input, select, textarea {
  font-size: 1rem;
  border-radius: 5px;
  padding: 10px 12px;
  border: 1px solid #e3e8eb;
  margin-top: 5px;
  margin-bottom: 18px;
  outline: none;
  width: 100%;
  background: #f7f7f7;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: #81b29a;
  background: #fff;
}
label {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* Animations and Micro-interactions */
.card, .feature-item, .service-card, .menu-category, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.12s;
}
.card:hover, .feature-item:hover, .service-card:hover, .menu-category:hover {
  box-shadow: 0 10px 38px 0 rgba(33,55,61,0.12);
}
.cta-button {
  transition: background 0.22s, box-shadow 0.19s, color 0.19s;
  box-shadow: 0 2px 10px rgba(33, 55, 61, 0.07);
}
.cta-button:active { transform: scale(0.98); }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  .feature-grid, .service-list, .service-grid, .menu-category-list, .testimonial-slider, .testimonial-list, .card-container, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
    flex-wrap: wrap;
  }
  .feature-grid, .service-list, .service-grid, .menu-category-list, .testimonial-slider, .testimonial-list, .card-container, .content-grid {
    gap: 14px;
  }
  .card, .feature-item, .service-card, .menu-category, .testimonial-card {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    right: 28px;
    top: 25px;
  }
  section, .section {
    padding: 32px 0;
    margin-bottom: 36px;
  }
  .feature-grid,
  .service-list,
  .service-grid,
  .menu-category-list,
  .testimonial-slider,
  .testimonial-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer {
    gap: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2px;
    padding-right: 2px;
  }
  .contact-block {
    flex-direction: column;
    gap: 16px;
  }
  .container {
    padding: 0 8px;
  }
  .testimonial-card {
    padding: 18px 10px;
    min-width: 0;
    max-width: 98vw;
  }
  .feature-item, .service-card, .menu-category, .contact-info, .map-text {
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.3rem; }
  .cta-button {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .cookie-modal-content {
    padding: 18px 8px 14px 8px;
  }
}

/* Hide mobile-menu when not open */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Utility */
.hidden { display: none !important; }
.visually-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- END --- */