/* --- CSS RESET & NORMALIZE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #FDF6EC;
  color: #362E28;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #336058;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
p, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}
a {
  color: #336058;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5B846;
  outline: none;
}

/* --- BRAND COLORS as CSS VARIABLES --- */
:root {
  --primary: #336058;
  --secondary: #F5B846;
  --accent: #FDF6EC;
  --text-dark: #362E28;
  --text-muted: #5F5E5D;
  --bg-light: #FFF9F2;
  --bg-card: #FFF;
  --shadow-soft: 0 4px 24px rgba(245,184,70,0.09),0 1.5px 8px rgba(51,96,88,0.06);
  --radius-lg: 22px;
  --radius: 12px;
}

/* --- GENERAL CONTAINERS AND LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: none;
}

/* -- FLEX LAYOUT MANDATORY CLASSES -- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(51,96,88,0.12),0 2.5px 14px rgba(245,184,70,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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FEF9F0;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(245,184,70,0.08);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -- CTA BUTTONS -- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 999px;
  border: none;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 12px 36px;
  margin-top: 6px;
  margin-bottom: 6px;
  transition: background 0.15s, color 0.18s, box-shadow 0.25s, transform 0.18s;
  box-shadow: 0 1.5px 6px rgba(51,96,88, 0.07);
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(245,184,70,0.13);
  transform: translateY(-1px) scale(1.035);
  text-decoration: none;
}

/* --- NAVIGATION --- */
header {
  background: #FFF9F2;
  padding: 0;
  box-shadow: 0 2px 18px rgba(51,96,88, 0.04);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  padding: 20px 0;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: var(--radius);
  background: none;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
}
.main-nav a.cta-button {
  margin-left: auto;
}
.main-nav img {
  height: 40px;
  margin-right: 14px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(253,246,236, 0.98);
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  padding: 32px 0 24px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.175,1.02);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 999px;
  font-size: 2.2rem;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 24px;
  right: 16px;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 1300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 64px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  background: none;
  padding: 12px 0;
  width: 100%;
  border-radius: var(--radius);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.14s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 998px) {
  .main-nav a.cta-button {
    margin-left: 0;
  }
}
@media (max-width: 888px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav a {
    padding: 6px 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 784px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* --- HERO, CARDS, FEATURES, LISTS --- */
.feature-grid, .cuisine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .cuisine-grid > div {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  flex: 1 1 252px;
  min-width: 252px;
  max-width: 340px;
  padding: 30px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover, .cuisine-grid > div:hover {
  box-shadow: 0 8px 32px rgba(245,184,70,0.13);
  transform: translateY(-2px) scale(1.016);
}
.feature-grid img, .cuisine-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #F5B84611;
  padding: 5px;
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-accordion {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion details {
  background: #FEF9F0;
  border: 1px solid #F5B84622;
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 1rem;
  color: var(--primary);
}
.faq-accordion summary {
  font-weight: 600;
  cursor: pointer;
  transition: color 0.17s;
  list-style: none;
  outline: none;
  font-family: 'Roboto', Arial, sans-serif;
}
.faq-accordion details[open] summary {
  color: var(--secondary);
}
.faq-accordion div {
  margin-top: 9px;
  color: var(--text-muted);
}

/* --- ABOUT/TESTIMONIALS --- */
.testimonial-card {
  background: #FFF9F2;
  color: #362E28;
  border-left: 6px solid var(--secondary);
  min-width: 220px;
  max-width: 670px;
  margin-bottom: 24px;
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary);
}
.testimonial-card span {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: normal;
  margin-left: 10px;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(245,184,70,0.17);
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 26px;
  font-size: 1.12rem;
}
.contact-details img {
  height: 24px;
  width: 24px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
.contact-details a {
  display: inline;
  font-weight: 500;
  color: var(--primary);
}
.map {
  background: #fffdfa;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(245,184,70,0.07);
  padding: 18px 18px 10px 18px;
  margin-top: 10px;
}

/* --- DECORATIVE/DEKOR --- */
.decorative-tips, .plate-arrangement, .theme-ideas {
  background: #FEF9F1;
  border-radius: var(--radius);
  padding: 18px 18px 9px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(245,184,70,0.08);
}

/* --- COOKING TOOLS --- */
.tools-and-gadgets {
  background: #FFF9F2;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 22px;
  box-shadow: 0 1.5px 8px rgba(51,96,88,0.06);
}

/* --- FOOTER --- */
footer {
  background: #336058;
  color: #FFECD2;
  padding: 50px 0 32px 0;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
}
.footer-menu a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 6px;
  border-radius: var(--radius);
  padding: 7px 16px;
  background: none;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #F5B846;
  color: #336058;
}
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 15px;
}
.brand-info img {
  height: 46px;
  margin-bottom: 8px;
}
.brand-info p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFECD2;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #FDF6EC;
  color: #336058;
  border-top: 3px solid #F5B846;
  box-shadow: 0 -2px 16px rgba(51,96,88,0.09);
  width: 100%;
  padding: 30px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.08rem;
  transition: transform 0.34s cubic-bezier(.76,.24,.38,.84), opacity 0.34s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%);
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  margin-right: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.17s, box-shadow 0.2s;
  box-shadow: 0 1.5px 6px rgba(51,96,88,0.07);
  outline: none;
}
.cookie-btn.settings {
  background: #FFF9F2;
  border: 1.5px solid #F5B846;
  color: #336058;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #336058;
}
.cookie-btn.reject {
  background: #fff;
  color: #F5B846;
  border: 1.5px solid #F5B846;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  display: flex;
  top:0; left:0; right:0; bottom:0;
  z-index: 12000;
  background: rgba(51,96,88,0.12);
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FDF6EC;
  color: #336058;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-width: 295px;
  max-width: 96vw;
  width: 420px;
  padding: 40px 34px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.09rem;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  background: #FFF9F2;
  border-radius: var(--radius);
  border: 1px solid #F5B84625;
  padding: 13px 16px;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category .toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}
.toggle-switch {
  width: 40px;
  height: 21px;
  background: #F5B84666;
  border-radius: 14px;
  transition: background 0.16s;
  position: relative;
  cursor: pointer;
}
.toggle-switch.enabled {
  background: var(--secondary);
}
.toggle-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s, background 0.21s;
}
.toggle-switch.enabled:before {
  left: 22px;
  background: var(--primary);
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-modal p, .cookie-category p {
  margin: 0;
  font-size: 1.02rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1080px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 780px;
  }
}
@media (max-width: 790px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 38px;
  }
  .brand-info p {
    font-size: 0.97rem;
  }
  .brand-info img {
    height: 34px;
  }
}
@media (max-width: 670px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .feature-grid > div, .cuisine-grid > div {
    min-width: 95vw;
    max-width: 95vw;
    padding: 18px 10px 10px 12px;
  }
}
@media (max-width: 568px) {
  h1 {
    font-size: 1.44rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .cta-button {
    padding: 11px 19px;
    font-size: 1rem;
  }
  .mobile-nav a {
    padding: 11px 0;
    font-size: 1.06rem;
    font-weight: 500;
  }
  .cookie-modal {
    padding: 18px 8px 10px 12px;
    width: 96vw;
    min-width: 88vw;
  }
}

/* --- MOBILE ONLY FLEX ADJUSTMENTS --- */
@media (max-width: 810px) {
  .feature-grid, .cuisine-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- ACCESSIBLE FOCUS --- */
:focus-visible {
  outline: 2.2px solid var(--secondary) !important;
  outline-offset: 2px;
}

/* --------- END OF CSS --------- */
