/* CSS RESET & BASE STYLES */
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,
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FAF8F5;
  color: #204066;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after { box-sizing: inherit; }

img, svg {
  max-width: 100%;
  display: block;
}

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #204066;
  letter-spacing: 0;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #204066;
  margin-bottom: 16px;
  max-width: 85ch;
}
blockquote {
  border-left: 4px solid #F2B134;
  padding-left: 20px;
  font-style: italic;
  color: #1a3550;
  background: #fffdf8;
  box-shadow: 0 1px 8px 0 rgba(32,64,102,0.04);
  margin: 16px 0;
}

strong, b { font-weight: 700; color: #204066; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,64,102,0.06);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(32,64,102,0.14);
  transform: translateY(-2px);
}

.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: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(32,64,102,0.07);
  margin-bottom: 20px;
  max-width: 500px;
  border-left: 4px solid #F2B134;
}
.testimonial-card p {
  color: #204066;
  font-size: 1rem;
  margin-bottom: 6px;
}
.reviewer-info { color: #5a5a5a; font-size: 0.98rem; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO & CTA SECTION */
.hero {
  padding: 56px 0 40px 0;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,64,102,0.03);
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.17rem;
  margin-bottom: 24px;
}
.cta {
  background: #F2B134;
  border-radius: 16px;
  margin-bottom: 64px;
  box-shadow: 0 2px 16px 0 rgba(32,64,102,0.04);
}
.cta h2, .cta p { color: #204066; }
.cta .cta-main { background: #204066; color: #fff; }
.cta .cta-main:hover { background: #1a3550; color: #F2B134; }

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(32,64,102,0.05);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav ul li a {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #204066;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #F2B134;
  color: #204066;
}
nav a.cta-main {
  background: #204066;
  color: #fff;
  border-radius: 8px;
  padding: 10px 28px;
  margin-left: 24px;
  font-family: 'Lora', serif;
  font-size: 1.12rem;
  font-weight: 600;
  box-shadow: 0 1px 8px 0 rgba(32,64,102,0.07);
  transition: background 0.16s, color 0.15s, box-shadow 0.18s;
}
nav a.cta-main:hover, nav a.cta-main:focus {
  background: #F2B134;
  color: #204066;
  box-shadow: 0 6px 24px 0 rgba(32,64,102,0.15);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #204066;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1002;
  transition: background 0.18s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2B134;
  color: #204066;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 86vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 24px rgba(32,64,102,0.12);
  transform: translateX(-105%);
  transition: transform 0.31s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1501;
  padding: 28px 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #204066;
  font-size: 2.1rem;
  margin: 0 22px 16px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F2B134;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 0 18px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #204066;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
  transition: background 0.13s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B134;
  color: #204066;
  border-radius: 6px 6px 0 0;
}

/* FOOTER */
footer {
  background: #fff;
  padding: 48px 0 20px 0;
  border-top: 1px solid #ececec;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #204066;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #F2B134;
}
.contact-details {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-details img {
  width: 52px;
  height: 52px;
  margin-right: 0;
}
.contact-details div {
  flex: 1;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ececec;
  border-radius: 50%;
  transition: background 0.2s;
}
.social-links a:hover, .social-links a:focus {
  background: #F2B134;
}

/* FORMS & INTERACTIVE */
button, .cta-main, input[type=submit] {
  cursor: pointer;
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
  border-radius: 8px;
  border: none;
  background: #204066;
  color: #fff;
  padding: 12px 30px;
  box-shadow: 0 2px 10px 0 rgba(32,64,102,0.04);
  transition: background 0.12s, color 0.13s, box-shadow 0.17s, transform 0.15s;
  display: inline-block;
  margin-top: 8px;
  text-align: center;
}
button:hover, .cta-main:hover, button:focus, .cta-main:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: #F2B134;
  color: #204066;
  box-shadow: 0 8px 30px 0 rgba(32,64,102,0.08);
  transform: translateY(-1px) scale(1.025);
}
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 16px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid #ececec;
  background: #fff;
  color: #314870;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F2B134;
  outline: none;
}

/* VISUAL + ICONS */
li > img, .feature-item > img {
  vertical-align: middle;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  flex-shrink: 0;
}
li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* SPECIAL SECTIONS */
.highlighted-tradition, .dish-highlights, .highlighted-story, .event-calendar {
  background: #fffdfa;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(32,64,102,0.03);
  padding: 24px;
  margin: 18px 0;
}
.register-cta { margin-top: 24px; }

.address-block, .map-embed {
  margin-bottom: 22px;
}
.address-block img, .map-embed img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  margin-right: 6px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #fff;
  border-top: 1px solid #ececec;
  box-shadow: 0 -2px 16px rgba(32,64,102,0.08);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s, transform 0.24s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #204066;
  color: #fff;
  border-radius: 8px;
  border: none;
  padding: 9px 22px;
  font-size: 0.98rem;
  margin: 0;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #204066;
  border: 1px solid #204066;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #F2B134;
  color: #204066;
  border-color: #F2B134;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F2B134;
  color: #204066;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,64,102,0.22);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  width: 90vw;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 8px 48px 0 rgba(32,64,102,0.17);
  padding: 34px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #204066;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #204066;
}
.cookie-category input[type=checkbox] {
  accent-color: #F2B134;
  width: 20px;
  height: 20px;
}
.cookie-category .always-on {
  font-size: 0.93rem;
  color: #717171;
  padding-left: 6px;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}

.cookie-modal button {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  background: #204066;
  color: #fff;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #F2B134;
  color: #204066;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 95vw;
  }
  nav ul {
    gap: 12px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  nav ul, nav a.cta-main {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card-container, .content-grid, .footer-menu, .contact-details {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .card { min-width: 0; }
  .hero {
    padding: 32px 0 24px 0;
  }
  .footer-menu {
    gap: 10px;
  }
  .section {
    padding: 28px 8px;
  }
  .cta { margin-bottom: 36px; }
  footer { padding: 32px 0 14px 0; }
}
@media (max-width: 480px) {
  header, .container, .hero, .section, .footer-menu, .contact-details, .card, .testimonial-card, .cookie-banner {
    padding-left: 5px;
    padding-right: 5px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.33rem;
  }
  .hero p { font-size: 1rem; }
  .cookie-modal {
    padding: 20px 5px;
    min-width: 0;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* MICRO-ANIMATIONS */
.card, .testimonial-card, .cta, .cookie-modal {
  transition: box-shadow 0.19s, transform 0.26s;
}
.card:hover, .testimonial-card:hover, .cta:hover, .cookie-modal:focus-within {
  box-shadow: 0 8px 40px 0 rgba(32,64,102,0.10);
  transform: translateY(-2px) scale(1.01);
}

/* ACCESSIBILITY & FOCUSED STATES */
a:focus-visible, button:focus-visible, .cta-main:focus-visible {
  outline: 2px solid #F2B134;
  outline-offset: 2px;
  border-radius: 6px;
}

/* ENSURE NO FLEXBOX OVERLAP */
.card, .testimonial-card, .feature-item, .content-wrapper, .section {
  margin-bottom: 20px;
  box-sizing: border-box;
  min-width: 0;
}

/* ENSURE ALL FLEX CONTAINERS USE ONLY FLEX */
/* (as above for required classes) */

/* HIDE SCROLLBAR FOR MOBILE MENU (OPTIONAL) */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/* END OF CSS */
