/* =========================
   CRISPY ASSETS VINTAGE RETRO CSS
   ========================= */

/* --- Vintage Retro Color Palette --- */
:root {
  --primary: #2A7C4F;
  --primary-dark: #23633F;
  --secondary: #203040;
  --accent: #F6DD70;
  --vintage-red: #C1440E;
  --vintage-blue: #4B6C8B;
  --vintage-cream: #F9F6F0;
  --vintage-brown: #A67C52;
  --vintage-orange: #F7A072;
  --vintage-green: #B6C48C;
  --text-dark: #2A2A2A;
  --text-light: #fff;
  --shadow: 0 4px 24px 0 rgba(32, 48, 64, 0.08);
  --border-radius: 14px;
  --pattern-url: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23F6DD70"/><circle cx="20" cy="20" r="2" fill="%23C1440E"/><circle cx="0" cy="0" r="2" fill="%23C1440E"/><circle cx="40" cy="40" r="2" fill="%23C1440E"/></svg>');
}

/* --- Vintage Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--vintage-cream);
  margin: 0;
  padding: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  min-height: 100vh;
  background-image: var(--pattern-url);
  background-size: 120px 120px;
  background-repeat: repeat;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-top: 0;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 var(--accent), 0 2px 8px rgba(32,48,64,0.04);
}
h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-weight: 700;
}

p, ul, ol, blockquote {
  margin-bottom: 18px;
}

ul, ol {
  padding-left: 1.5em;
}

blockquote {
  font-style: italic;
  background: var(--vintage-green);
  border-left: 6px solid var(--vintage-brown);
  padding: 18px 24px;
  border-radius: var(--border-radius);
  color: var(--secondary);
  margin: 24px 0;
}

strong {
  color: var(--vintage-red);
  font-weight: 700;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  background: var(--vintage-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 24px;
  margin-bottom: 40px;
  position: relative;
}

/* --- Section Spacing --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- Flexbox Patterns --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--vintage-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: transform 0.18s cubic-bezier(.4,1.4,.6,1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(32,48,64,0.13);
}
.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: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: var(--secondary);
  font-size: 1.08rem;
  font-style: italic;
  border: 2px dashed var(--vintage-brown);
  transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-card strong {
  color: var(--primary-dark);
  font-style: normal;
  font-size: 1rem;
  margin-left: 12px;
}
.testimonial-card:hover {
  background: var(--vintage-orange);
  box-shadow: 0 8px 32px 0 rgba(32,48,64,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Feature Grids --- */
.feature-grid, .recipe-gallery, .team-gallery, .event-photos, .blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid > div, .recipe-gallery > div, .team-gallery > div, .blog-post-grid > div {
  background: var(--vintage-green);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 0;
  border: 2px solid var(--vintage-brown);
  transition: background 0.18s, box-shadow 0.18s;
}
.feature-grid > div:hover, .recipe-gallery > div:hover, .team-gallery > div:hover, .blog-post-grid > div:hover {
  background: var(--accent);
  box-shadow: 0 8px 32px 0 rgba(32,48,64,0.13);
}
.event-photos > div {
  background: var(--vintage-orange);
  color: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  flex: 1 1 180px;
  min-width: 140px;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* --- Filter & Category Buttons --- */
.filter-options, .blog-categories {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.filter-options button, .blog-categories button {
  background: var(--vintage-blue);
  color: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(32,48,64,0.07);
}
.filter-options button:hover, .blog-categories button:hover {
  background: var(--accent);
  color: var(--vintage-blue);
  box-shadow: 0 4px 16px 0 rgba(32,48,64,0.11);
}

/* --- CTA Button --- */
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 24px;
  padding: 14px 36px;
  margin-top: 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px 0 rgba(32,48,64,0.09);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  text-shadow: 1px 1px 0 var(--vintage-brown);
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 24px 0 rgba(32,48,64,0.13);
}

/* --- Header & Navigation --- */
header {
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  box-shadow: 0 2px 12px 0 rgba(32,48,64,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 18px 0;
}
header img {
  height: 48px;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* --- Footer --- */
footer {
  background: var(--vintage-brown);
  color: var(--vintage-cream);
  padding: 32px 0 24px 0;
  font-size: 0.98rem;
  border-top: 6px solid var(--accent);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--accent);
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.18s;
}
footer nav a:hover {
  color: var(--vintage-orange);
}
footer p {
  margin: 0;
  color: var(--vintage-cream);
}

/* --- Tables --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--vintage-green);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
thead {
  background: var(--primary);
  color: var(--accent);
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--vintage-brown);
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
tr:last-child td {
  border-bottom: none;
}

/* --- Forms & Inputs --- */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--vintage-brown);
  border-radius: 8px;
  background: var(--vintage-cream);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 18px;
  transition: border 0.18s, box-shadow 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 2px 12px 0 rgba(32,48,64,0.09);
  outline: none;
}

/* --- Address & Social Links --- */
address {
  font-style: normal;
  background: var(--vintage-green);
  border-radius: var(--border-radius);
  padding: 18px 22px;
  margin-bottom: 18px;
  color: var(--secondary);
  box-shadow: var(--shadow);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.social-links a {
  color: var(--vintage-blue);
  text-decoration: underline;
  transition: color 0.18s;
}
.social-links a:hover {
  color: var(--vintage-red);
}

/* --- FAQ Accordion (simple) --- */
.faq-accordion > div {
  background: var(--vintage-green);
  border-radius: var(--border-radius);
  margin-bottom: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border: 2px solid var(--vintage-brown);
}
.faq-accordion strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
}

/* --- Map Placeholder --- */
.map {
  background: var(--vintage-blue);
  color: var(--accent);
  border-radius: var(--border-radius);
  padding: 18px 22px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* --- Responsive Flex Direction --- */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 24px 8px;
  }
  .feature-grid, .recipe-gallery, .team-gallery, .event-photos, .blog-post-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 8px 12px 0;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* --- Mobile Navigation --- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 120;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(32,48,64,0.09);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.08);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 2000;
  padding: 32px 24px 24px 24px;
  animation: mobileMenuSlideIn 0.35s cubic-bezier(.4,1.4,.6,1);
}
.mobile-menu.open {
  display: flex;
  animation: mobileMenuSlideIn 0.35s cubic-bezier(.4,1.4,.6,1);
}
@keyframes mobileMenuSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(32,48,64,0.09);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px dashed var(--accent);
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: var(--accent);
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
  .cta-button {
    display: inline-block !important;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--vintage-brown);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  z-index: 3000;
  box-shadow: 0 -2px 16px 0 rgba(32,48,64,0.13);
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.4s cubic-bezier(.4,1.4,.6,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(32,48,64,0.07);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 16px 0 rgba(32,48,64,0.11);
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,48,64,0.65);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.3s cubic-bezier(.4,1.4,.6,1);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--vintage-cream);
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 rgba(32,48,64,0.18);
  padding: 38px 32px 28px 32px;
  max-width: 420px;
  width: 90vw;
  position: relative;
  animation: cookieModalPopIn 0.3s cubic-bezier(.4,1.4,.6,1);
}
@keyframes cookieModalPopIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-category.essential label {
  color: var(--vintage-red);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal button {
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(32,48,64,0.07);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 16px 0 rgba(32,48,64,0.11);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--primary);
  color: var(--accent);
}

/* --- Utility Classes --- */
.d-none { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* --- Accessibility & Focus --- */
a:focus, button:focus, input:focus, .cta-button:focus {
  outline: 2px dashed var(--vintage-red);
  outline-offset: 2px;
}

/* --- Scrollbar Styling (vintage touch) --- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--vintage-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--vintage-brown);
  border-radius: 8px;
}

/* --- Print Styles --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; }
}
