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

/* Remove list styles */
ol, ul, li { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

html { scroll-behavior: smooth; }
body {
  background: #F8F8F8;
  color: #2D4263;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* =========================
   Typography & Brand Fonts
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2D4263;
}

h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.2rem;
  color: #2D4263bb;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong { font-weight: 600; }

/* =========================
   Flexbox Utility Patterns
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 22px 0 #2d426317;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 10px 32px 2px #2d426340;
  transform: translateY(-2px) scale(1.02);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 #2d426319;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 380px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 #2d426338;
  transform: scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* =========================
   Geometric/Structured Cards
   ========================= */
.features-grid, .services-grid, .recipes-grid, .highlights-grid, .cuisine-cards, .featured-dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.features-grid > div, .service-card, .recipe-card, .highlight-card, .cuisine-cards > div, .featured-dishes > div {
  background: #fff;
  border-radius: 20px 4px 20px 4px;
  /* geometric shape */
  border: 2.5px solid #EC994B;
  box-shadow: 0 8px 24px 0 #2d426317;
  padding: 28px 22px 22px 22px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.18s, box-shadow 0.2s, transform 0.22s;
}
.features-grid > div:hover, .service-card:hover, .recipe-card:hover, .highlight-card:hover, .cuisine-cards > div:hover, .featured-dishes > div:hover {
  border-color: #2D4263;
  box-shadow: 0 14px 36px 0 #2d426328;
  transform: scale(1.018);
}
.highlight-card a,
.recipe-card a,
.cuisine-cards a,
.featured-dishes a {
  margin-top: 14px;
  color: #2D4263;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid #EC994B;
  transition: color .20s, border 0.2s;
  font-size: 1.07rem;
}
.highlight-card a:hover,
.recipe-card a:hover,
.cuisine-cards a:hover,
.featured-dishes a:hover {
  color: #EC994B;
  border-bottom: 2px solid #2D4263;
}
.price {
  display: block;
  font-size: 1.05rem;
  font-family: 'Quicksand', sans-serif;
  color: #EC994B;
  margin-top: 18px;
  font-weight: 700;
}

/* =========================
   Header & Navigation
   ========================= */
header {
  background: #fff;
  border-bottom: 2.5px solid #EC994B20;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  position: relative;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  display: block;
  color: #2D4263;
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 4px 5px 4px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #EC994B18;
  color: #EC994B;
}
header img { height: 44px; margin-right: 12px; }
.cta-btn {
  background: #EC994B;
  color: #fff;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: .04em;
  padding: 11px 30px 11px 30px;
  border: none;
  border-radius: 20px 4px 20px 4px;
  box-shadow: 0 2px 10px 0 #ec994b30;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.18s, color 0.16s;
  margin-left: 18px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2D4263;
  color: #EC994B;
  box-shadow: 0 6px 20px 0 #2d426328;
}

/* =========================
   Mobile Navigation
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2D4263;
  cursor: pointer;
  margin-left: 16px;
  z-index: 104;
  padding: 6px 8px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #EC994B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F8F8;
  box-shadow: 2px 0 32px #2d426338;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.72,0,.21,1);
  z-index: 110;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #2D4263;
  cursor: pointer;
  z-index: 115;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #EC994B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px 30px 30px 40px;
  width: 95vw;
}
.mobile-nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #2D4263;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1.5px solid #EC994B22;
  transition: color .18s, border .16s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #EC994B;
  border-bottom: 1.5px solid #EC994B;
}

/* Hide desktop nav/btn on mobile, show burger */
@media (max-width: 992px) {
  header .container nav,
  header .container .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================
   Main Layouts
   ========================= */
main {
  min-height: 60vh;
  margin-bottom: 40px;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 24px 0;
}
.filters input[type=text] {
  border: 2px solid #EC994B66;
  border-radius: 10px 3px 10px 3px;
  padding: 10px 15px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.filter-categories, .filter-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
  color: #2D4263;
}
.filter-categories span, .filter-tags span {
  background: #EC994B22;
  color: #2D4263;
  padding: 3px 13px;
  border-radius: 10px 2px 10px 2px;
  font-family: 'Quicksand', sans-serif;
  font-size: .98rem;
  font-weight: 500;
}

/**** Quicklinks, guides, etc ****/
.quick-links, .tips-from-chefs, .brand-info, .footer-cta {
  margin-top: 20px;
}
.quick-links a {
  background: #EC994B;
  color: #fff;
  border-radius: 8px;
  padding: 7px 20px;
  margin-right: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.quick-links a:hover { background: #2D4263; color: #EC994B; }

/**** Testimonial slider layout ****/
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card p {
  color: #2D4263;
  font-size: 1rem;
}
.testimonial-card span {
  display: block;
  color: #2D4263cc;
  font-size: .95rem;
  margin-top: 9px;
  font-family: 'Quicksand', Arial, sans-serif;
}

/* =========================
   Footer Styles
   ========================= */
footer {
  background: #2D4263;
  color: #fff;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 0 20px 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding: 30px 0;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  opacity: .85;
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .17s, opacity .18s;
  border-bottom: 1.5px solid transparent;
}
footer nav a:hover {
  color: #EC994B;
  opacity: 1;
  border-bottom: 1.5px solid #EC994B;
}
footer .brand-info {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
footer .brand-info img {
  height: 48px;
}
footer address {
  font-style: normal;
  color: #fff;
  font-size: .99rem;
  line-height: 1.7;
}
footer address a {
  color: #fff;
  text-decoration: underline;
  transition: color .18s;
}
footer address a:hover { color: #EC994B; }
footer .footer-cta {
  margin-top: 12px;
}
footer .footer-cta .cta-btn {
  background: #fff;
  color: #2D4263;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0;
  box-shadow: 0 4px 12px #2d426323;
  transition: background .18s, color .18s;
}
footer .footer-cta .cta-btn:hover {
  background: #EC994B;
  color: #fff;
}

/* =========================
   Cookie Consent Banner
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 18px 0 #2d426340;
  padding: 22px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  gap: 18px;
  font-family: 'Open Sans', sans-serif;
  border-top: 3px solid #EC994B44;
  animation: cookie-banner-in .5s cubic-bezier(.69,0,.33,1);
}
@keyframes cookie-banner-in {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #2D4263;
  font-size: 1rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Quicksand', Arial, sans-serif;
  border: none;
  border-radius: 12px 4px 12px 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  margin-top: 4px;
  transition: background .16s, color .18s;
}
.cookie-banner .accept {
  background: #EC994B;
  color: #fff;
}
.cookie-banner .accept:hover { background: #2D4263; color: #EC994B; }
.cookie-banner .reject {
  background: #EC994B22;
  color: #2D4263;
}
.cookie-banner .reject:hover { background: #EC994B; color: #fff; }
.cookie-banner .settings {
  background: #fff;
  color: #2D4263;
  border: 1.5px solid #EC994B44;
}
.cookie-banner .settings:hover { background: #EC994B22; color: #EC994B; }

/**** Cookie Modal ****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #2D426399;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade .35s cubic-bezier(.82,0,.28,1);
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 4px 22px 4px;
  max-width: 360px;
  width: 90vw;
  box-shadow: 0 12px 46px 0 #2d42634a;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: cookie-modal-in .4s cubic-bezier(.71,0,.22,1);
}
@keyframes cookie-modal-in {
  from { transform: scale(.92); opacity: 0; }
  to {   transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #2D4263;
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #2D4263;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #EC994B;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #EC994B;
  cursor: pointer;
  z-index: 1250;
}
.cookie-modal .close-modal:hover { color: #2D4263; }

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 1100px) {
  .content-grid, .features-grid, .services-grid, .recipes-grid, .cuisine-cards, .highlights-grid, .testimonials-slider, .featured-dishes {
    gap: 18px;
  }
  .content-wrapper { max-width: 98vw; }
}
@media (max-width: 900px) {
  .content-grid, .features-grid, .services-grid, .recipes-grid, .cuisine-cards, .highlights-grid, .testimonials-slider, .featured-dishes {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .section { margin-bottom: 40px; padding: 24px 8px; }
  .card, .features-grid > div, .service-card, .recipe-card, .highlight-card, .cuisine-cards > div, .featured-dishes > div {
    min-width: 0;
    width: 100%;
    padding: 16px 11px 14px 14px;
    font-size: .99rem;
  }
  .content-wrapper { padding: 0 3px; }
  .filters { gap: 10px; }
  .footer-cta { align-items: flex-start; }
  .brand-info { flex-direction: column; align-items: flex-start; gap: 6px; }
  .testimonials-slider {
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .features-grid, .services-grid, .recipes-grid, .cuisine-cards, .highlights-grid, .testimonials-slider, .featured-dishes { gap: 12px; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 414px) {
  .cookie-modal {
    padding: 18px 6vw 18px 6vw;
  }
  .cookie-modal h2 {
    font-size: 1.08rem;
  }
  header img { height: 38px; }
}

/* Extra: Prevent Overlap of Cards */
.card, .feature-item, .service-card, .recipe-card, .highlight-card, .testimonial-card {
  margin-bottom: 20px;
}
.features-grid > div:not(:last-child),
.services-grid > div:not(:last-child),
.recipes-grid > div:not(:last-child),
.cuisine-cards > div:not(:last-child),
.highlights-grid > div:not(:last-child),
.featured-dishes > div:not(:last-child) {
  margin-right: 0;
}

/* =========================
   Micro-Interactions & Misc
   ========================= */
.card, .feature-item, .service-card, .recipe-card, .highlight-card, .cuisine-cards > div, .testimonial-card {
  transition: box-shadow .2s, border-color .16s, transform .2s;
}
button, .cta-btn {
  outline: none;
}
button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px #EC994B55;
  outline: none;
}
input:focus, textarea:focus {
  border-color: #2D4263;
  outline: none;
}

/* Accessibility for Icons in Address */
address img {
  vertical-align: text-bottom;
  display: inline-block;
  margin-right: 4px;
  height: 1.14em;
  width: 1.14em;
  opacity: .92;
}

/* Structured Lists (Values, Guides) */
ul, ol {
  margin-left: 20px;
  color: #2D4263ee;
}
ul li, ol li { margin-bottom: 12px; }
ul li strong { color: #EC994B; }

/* Stepwise guides/links */
.guide-links a {
  color: #EC994B;
  font-weight: 600;
  padding: 0 6px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  transition: color .18s;
}
.guide-links a:hover { color: #2D4263; }

/* Hide scroll on mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* =========================
   Geometric Structured Details
   ========================= */
.features-grid > div, .service-card, .recipe-card, .highlight-card, .cuisine-cards > div, .testimonial-card, .featured-dishes > div {
  border-radius: 20px 4px 20px 4px;
  border-width: 2.5px;
}

/***********************/
/* End of CSS         */
/***********************/
