/* 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 {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #173366;
  background: #f8f9fa;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #173366;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD966;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

/* BRAND COLORS AND CSS VARIABLES WITH FALLBACKS */
:root {
  --color-primary: #173366;
  --color-primary-rgb: 23,51,102;
  --color-secondary: #FFD966;
  --color-accent: #FFFFFF;
  --color-bg: #f8f9fa;
  --color-grey: #e3e7ee;
  --color-dark-grey: #2b3957;
  --color-light-blue: #eaf0fb;
  --shadow: 0 2px 10px 0 rgba(23,51,102,0.06);
  --radius: 12px;
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY HIERARCHY */
h1, .hero h1 {
  font-family: var(--font-display, 'Merriweather', serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h2 {
  font-family: var(--font-display, 'Merriweather', serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--color-dark-grey);
}
h3 {
  font-family: var(--font-display, 'Merriweather', serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.hero h1 {
  color: #173366;
}
p {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.section ul, .section ol {
  margin-bottom: 0;
}
li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* CONTAINER & STRUCTURE */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/****************** SECTION SPACING & LAYOUT ******************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
main > section {
  margin-bottom: 60px;
}

/****************** FLEX LAYOUT PATTERNS ********************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(23,51,102,0.14);
}
.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;
  background: #eaf0fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #173366;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/******************** HERO SECTION ********************/
.hero {
  background: linear-gradient(90deg, #173366 68%, #eaf0fb 100%);
  color: #fff;
  padding: 48px 0 32px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(23,51,102,0.12);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 200px;
}
.hero .content-wrapper {
  gap: 20px;
  color: #fff;
}
.hero h1, .hero p {
  color: #fff !important;
}
.hero .cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 30px;
  border-radius: 28px;
  border: none;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s;
  box-shadow: 0 2px 10px 0 rgba(23,51,102,0.07);
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #ffe884;
  color: #141d36;
  box-shadow: 0 5px 18px 0 rgba(23,51,102,0.15);
}

/**************************** MAIN NAVIGATION ****************************/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(23,51,102,0.08);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
}
.main-nav .logo {
  margin-right: 45px;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-light-blue);
  color: var(--color-secondary);
}

/**************************** MOBILE NAVIGATION ****************************/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  position: absolute;
  right: 24px;
  top: 16px;
  z-index: 100;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eaf0fb;
  color: var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 18px rgba(23,51,102,0.15);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.6,.05,.28,.95);
  display: flex;
  flex-direction: column;
  padding: 36px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: none;
  border: none;
  z-index: 2100;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  border-radius: 7px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #eaf0fb;
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 6px 14px 0;
  color: var(--color-primary);
  border-bottom: 1px solid #e3e7ee;
  border-radius: 5px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: #eaf0fb;
}

/**************************** FOOTER ****************************/
footer {
  background: #173366;
  color: #fff;
  padding: 0 0 0 0;
}
footer section {
  padding: 40px 0 0 0;
}
footer .container {
  padding-bottom: 40px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-menu a {
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.86;
  border-radius: 5px;
  padding: 3px 7px;
  transition: color 0.14s, background 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #eaf0fb;
  color: #173366;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.98rem;
  color: #f6f8fc;
  opacity: 0.82;
  margin-bottom: 7px;
}
.social-links {
  display: flex;
  gap: 17px;
  align-items: center;
}
.social-links a img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: filter 0.15s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: brightness(1) invert(0.2) sepia(0.3) saturate(7) hue-rotate(185deg);
}

/**************************** TESTIMONIALS & CARDS ****************************/
.testimonial-card {
  background: #eaf0fb;
  color: #173366;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  gap: 20px;
  margin-bottom: 20px;
  font-style: italic;
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 0px;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.96rem;
  opacity: 0.78;
  margin-left: 8px;
  font-style: normal;
}

/**************************** SPECIAL GRIDS & LISTS ****************************/
.regions-grid, .dish-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.regions-grid > div, .dish-grid > li {
  background: #fff;
  border: 1px solid #e3e7ee;
  border-radius: 10px;
  padding: 24px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border 0.18s;
}
.regions-grid > div:hover, .dish-grid > li:hover {
  box-shadow: 0 6px 22px 0 rgba(23,51,102,0.18);
  border-color: #FFD966;
}
.dish-grid li img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
}

/**************************** HIGHLIGHTS & ICONS ****************************/
.regional-highlights ul {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  margin: 22px 0 0 0;
}
.regional-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eaf0fb;
  border-radius: 8px;
  padding: 10px 18px;
  color: #173366;
  font-size: 1.06rem;
  font-weight: 500;
}
.culinary-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 10px 0;
}
.culinary-icons img {
  width: 40px;
  height: 40px;
}

/**************************** CALENDAR OVERVIEW & MAPS ****************************/
.calendar-overview, .interactive-map {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 22px 0 0 0;
  background: #eaf0fb;
  border-radius: 8px;
  padding: 18px 24px;
}
.calendar-overview img,
.interactive-map img {
  width: 42px;
  height: 42px;
}

.folk-customs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.folk-customs li {
  background: #eaf0fb;
  border-radius: 7px;
  padding: 8px 16px;
  color: #173366;
  font-size: 1.01rem;
}

/**************************** BUTTONS ****************************/
.cta-btn, .btn, .accept-cookies, .reject-cookies, .cookies-settings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 25px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(23,51,102,0.09);
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus,
.btn:hover, .btn:focus,
.accept-cookies:hover, .accept-cookies:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 4px 16px 0 rgba(23,51,102,0.14);
}
.reject-cookies {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #173366;
}
.reject-cookies:hover, .reject-cookies:focus {
  background: #eaf0fb;
  color: #173366;
  border-color: #FFD966;
}
.cookies-settings {
  background: #eaf0fb;
  color: #173366;
  border: 1px solid #e3e7ee;
}
.cookies-settings:hover, .cookies-settings:focus {
  background: #FFD966;
  color: #173366;
}

/**************************** COOKIE CONSENT BANNER ****************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(23,51,102,0.19);
  border-top: 3px solid #173366;
  z-index: 3500;
  padding: 26px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  animation: slide-banner-in 0.55s cubic-bezier(.7,.5,.2,1);
}
@keyframes slide-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  flex: 1 1 320px;
  font-size: 1rem;
  color: #173366;
  font-family: var(--font-body);
  margin-right: 12px;
}
.cookie-banner .accept-cookies,
.cookie-banner .reject-cookies,
.cookie-banner .cookies-settings {
  margin-top: 0;
  margin-left: 8px;
  padding: 10px 20px;
}
/* Cookie Banner Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,51,102, 0.52);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.19s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 40px 0 rgba(23,51,102,0.30);
  padding: 40px 30px 30px 30px;
  max-width: 390px;
  min-width: 0;
  width: 95vw;
  font-family: var(--font-body);
  color: #173366;
  position: relative;
  animation: popModalIn 0.23s cubic-bezier(.75,.15,.2,1.25);
}
@keyframes popModalIn {
  from { transform: scale(.8) translateY(40px); opacity: 0; }
  to { transform: scale(1.0) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  justify-content: space-between;
  padding: 10px 0;
}
.cookie-category-row label {
  font-weight: 500;
  font-family: var(--font-body);
  color: #173366;
}
.cookie-category-toggle {
  accent-color: #173366;
  width: 18px;
  height: 18px;
}
.cookie-category-row .always-on {
  color: #888;
  font-size: 0.96rem;
  font-style: italic;
}
.cookie-modal .btn-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  color: #173366;
  font-size: 2rem;
  background: none;
  border: none;
  transition: color 0.14s;
  z-index: 200;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD966;
}

/**************************** MISC ELEMENTS & RESPONSIVE ****************************/
section ul {
  margin-top: 10px;
  margin-bottom: 0;
}
section ul li {
  margin-left: 0;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
section ul > li > img {
  width: 34px;
  height: 34px;
  margin-right: 8px;
}
section ul > li > h3 {
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
}

/************* RESPONSIVENESS *************/
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .footer .content-wrapper,
  footer .content-wrapper,
  .content-wrapper {
    flex-direction: column !important;
    gap: 24px;
  }
  .main-nav {
    gap: 16px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 32px 0 20px 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .hero .container {
    min-height: 120px;
  }
  .footer .container, footer .container {
    padding-bottom: 22px;
  }
  .footer .content-wrapper, footer .content-wrapper {
    gap: 16px;
  }
  /* Flex directions switched for mobile */
  .regions-grid, .dish-grid {
    flex-direction: column;
    gap: 14px;
  }
  .regional-highlights ul, .folk-customs ul {
    flex-direction: column;
    gap: 8px;
  }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .calendar-overview, .interactive-map {
    flex-direction: column;
    gap: 10px;
    padding: 14px 9px;
  }
  .footer-menu {
    gap: 3px;
  }
}
@media (max-width: 500px) {
  h1, .hero h1 { font-size: 1.55rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
  .brand-info { font-size: 1.08rem; }
  .footer .container, footer .container {
    padding-bottom: 13px;
  }
}

/************ TRANSITIONS & HOVER EFFECTS ************/
.card, .regions-grid > div, .dish-grid > li, .testimonial-card, .feature-item {
  transition: box-shadow 0.21s, border 0.18s, background 0.21s;
}
.card:hover, .regions-grid > div:hover, .dish-grid > li:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(23,51,102,0.18);
  border-color: #FFD966;
  background: #eaf0fb;
}
.cta-btn, .btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.10s;
}
.cta-btn:active, .btn:active {
  transform: scale(0.97);
}

/*********************** PRINT and NON-INTERACTIVE OVERRIDES ***********************/
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}

/* ACCESSIBILITY: Focus Visibility */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Hide visually, retain accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/********************** SCROLLBAR FOR MODALS & MOBILE NAV **********************/
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #FFD966 #eaf0fb;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 7px;
  background: #eaf0fb;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #FFD966;
  border-radius: 5px;
}

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