/* === 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,
main, 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%; }
body { min-height: 100%; line-height: 1.6; background: #1d2532; color: #f6f7fa; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; }
:focus { outline: 2px solid #F5B143; outline-offset: 2px; }

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
html { font-family: 'Roboto', Arial, Helvetica, sans-serif; background: #1d2532; }

/* === COLOR VARIABLES FOR FALLBACKS === */
:root {
  --color-primary: #346186;
  --color-primary-dark: #285074;
  --color-secondary: #D6C7B0;
  --color-accent: #F5B143;
  --color-bg: #1d2532;
  --color-bg-light: #253147;
  --color-card: #222c39;
  --color-text: #fcfdff;
  --color-text-dark: #22314A;
  --color-light: #ffffff;
  --color-shadow: rgba(45, 80, 120, 0.14);
}

/* === UTILITIES === */
.container {
  width: 100%; max-width: 1152px; margin: 0 auto; padding: 0 20px;
}

.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: var(--color-light);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
}

.subheadline {
  font-size: 1.35rem;
  color: var(--color-accent);
  margin-bottom: 1em;
  font-weight: 500;
  letter-spacing: 0.01em;
}
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.8;
}
strong { color: var(--color-accent); font-weight: 500; }
blockquote {
  border-left: 4px solid var(--color-accent);
  margin: 20px 0;
  padding: 14px 20px;
  color: var(--color-accent);
  background: var(--color-bg-light);
  font-style: italic;
}

/* === LINKS & INTERACTION === */
a { color: var(--color-accent); transition: color 0.18s, text-shadow 0.18s; }
a:hover { color: #ffcf76; text-shadow: 0 0 3px #F5B14355; }

/* === HEADER STYLE === */
header {
  background: var(--color-bg-light);
  box-shadow: 0 4px 14px -4px var(--color-shadow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px 20px;
  gap: 18px;
  flex-wrap: wrap;
}
.logo img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--color-text);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  position: relative;
  font-size: 1.07rem;
  transition: color 0.16s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.cta-primary {
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: 22px;
  padding: 12px 32px;
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 26px -7px #F5B14355;
  border: none;
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  transition: background 0.18s, box-shadow 0.18s, color 0.16s;
  box-shadow: 0 2px 14px 0 #10253748;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fed279;
  color: #253147;
  box-shadow: 0 4px 24px 2px #F5B14388;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-bg);
  color: var(--color-accent);
  font-size: 2rem;
  border-radius: 8px;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.15s, color 0.15s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #222c39;
  color: #ffcf76;
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .cta-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29, 37, 50, 0.98);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.68,-0.5,.32,1.1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 26px 0 0;
  padding: 10px 12px;
  font-size: 2.3rem;
  background: none;
  color: var(--color-accent);
  border: none;
  cursor: pointer;
  border-radius: 7px;
  z-index: 10000;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: var(--color-bg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
  gap: 26px;
}
.mobile-nav a {
  color: var(--color-light);
  font-size: 1.3rem;
  padding: 14px 0;
  text-align: center;
  min-width: 220px;
  border-radius: 7px;
  transition: background 0.12s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* === HERO BANNER === */
.hero {
  background: linear-gradient(110deg, #346186 35%, #F5B143 230%);
  min-height: 355px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 6px 48px -8px #34618638;
  margin-bottom: 42px;
  animation: heroFadeIn 1.5s cubic-bezier(.78,-0.08,.22,1.07);
}
@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 0 44px 0;
  max-width: 650px;
  color: #fff;
}
.hero a.cta-primary {
  margin-top: 14px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    border-radius: 0 0 16px 16px;
    margin-bottom: 24px;
  }
  .hero .content-wrapper { padding: 22px 0 25px 0; }
}


/* === CONTENT SECTIONS & LAYOUTS === */
.content-wrapper {
  background: var(--color-card);
  box-shadow: 0 4px 22px -8px #22314A25;
  border-radius: 18px;
  padding: 36px 30px;
  margin-bottom: 36px;
}
@media (max-width:540px){
  .content-wrapper { padding: 18px 4vw; }
}
.section:last-child .content-wrapper, section:last-child .content-wrapper {
  margin-bottom: 0;
}

/* --- Special lists with icons --- */
ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.07rem;
  color: var(--color-text);
}
ul li img {
  height: 28px; width: 28px;
  margin-right: 6px;
  filter: grayscale(0.18) drop-shadow(0px 0px 7px #F5B14377);
}

/* === TEAM, TESTIMONIALS, FEATURED === */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 24px;
}
.team-member {
  flex: 1 1 220px;
  background: #1d2532;
  border: 1.7px solid var(--color-primary-dark);
  border-radius: 16px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 4px 24px -11px #34618644;
  min-width: 200px;
  max-width: 320px;
}
.team-member h3 {
  margin-bottom: 8px;
  color: var(--color-accent);
}
.team-member .quote {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 18px;
  border-left: 3px solid var(--color-accent);
  padding-left: 12px;
}
@media (max-width: 900px) {
  .team-section { gap: 18px; }
}
@media (max-width: 600px) {
  .team-section { flex-direction: column; gap: 0; }
  .team-member { margin-bottom: 18px; }
}

.testimonial-card {
  background: #fffbe9;
  color: #22314A;
  border-radius: 12px;
  box-shadow: 0 6px 16px -5px #D6C7B070;
  padding: 20px 32px;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  min-width: 240px;
}
.testimonial-card strong {
  color: var(--color-primary);
}

/* === REGULAR CARDS (for future) === */
.card {
  background: var(--color-card);
  border-radius: 17px;
  box-shadow: 0 4px 22px -7px #22314A33;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
}
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 12px; }


/* === FILTERS & TABS, CUISINES === */
.filters .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  font-size: 1.07rem;
}
@media (max-width: 700px) {
  .filters .filter-options { flex-direction: column; gap:12px; }
}
.continent-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.continent-tabs li {
  background: var(--color-primary-dark);
  color: var(--color-secondary);
  border-radius: 10px;
  padding: 8px 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 2px 7px -2px #34618644;
}
.continent-tabs li:hover, .continent-tabs li:focus {
  background: var(--color-accent);
  color: #22314A;
}
.cuisine-spotlights {
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}
.cuisine-spotlights > div {
  flex: 1 1 200px;
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 2px 14px -3px #34618633;
  padding: 22px 18px;
  min-width: 180px;
  max-width: 340px;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.cuisine-spotlights h3 {
  color: var(--color-accent);
  margin-bottom: 10px;
}

@media (max-width: 850px){
  .cuisine-spotlights { flex-direction: column; gap:13px; }
}

/* === SEARCH BAR (disabled, for look) === */
.search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 18px 0 0 0;
}
.search-bar input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 32px;
  background: #263957;
  border: 1.5px solid var(--color-primary-dark);
  color: var(--color-secondary);
  font-size: 1.05rem;
  letter-spacing: .01em;
  outline: none;
  transition: background 0.17s, color 0.13s, border 0.14s;
}

/* === TEXT-SECTIONS, CONTENT GRIDS === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 18px 0 22px 0;
}
.contact-list li img {
  width: 24px; height: 24px;
}

/* === FOOTER === */
footer {
  background: var(--color-bg-light);
  color: #b7c5da;
  padding: 44px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-nav {
  display: flex;
  gap: 8px;
  font-size: 1.05rem;
  color: var(--color-secondary);
  flex-wrap: wrap;
  align-items: baseline;
}
.footer-nav a { color: var(--color-accent); padding: 2px 5px; }
.footer-nav a:hover, .footer-nav a:focus {
  color: #fed279;
}
.contact-details {
  font-size: 0.98rem;
  color: #b7c5da;
  text-align: center;
  margin-top: 8px;
}
footer img {
  width: 44px; height: auto; margin-bottom: 6px;
}

/* === SECTION SPECIFICS === */
.featured-recipes ul, .featured-tips ul, .tip-categories ul, .decoration-guides ul,
.plating-techniques ul {
  margin-top: 6px;
}
.featured-recipes ul li,
.featured-tips ul li,
.tip-categories ul li,
.decoration-guides ul li,
.plating-techniques ul li {
  color: var(--color-secondary);
}

/* === CTA Section === */
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 0 36px 0;
}
.cta .content-wrapper {
  background: #232d3c;
  border: 1.5px solid var(--color-primary-dark);
  box-shadow: 0 3px 21px -4px #34618635;
}
.cta .cta-primary {
  margin-top: 14px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #222c39;
  color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 24px 8vw 19px 8vw;
  z-index: 77777;
  box-shadow: 0 -3px 36px 0 #34618644;
  animation: cookieIn 0.5s cubic-bezier(.75,-0.08,.27,1.12);
}
@keyframes cookieIn {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { max-width: 720px; font-size: 1.01rem; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  border: none;
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 8px 26px;
  font-size: 1rem;
  border-radius: 21px;
  box-shadow: 0 4px 16px -7px #F5B14399;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.18s;
  margin-left: 0;
}
.cookie-banner button.cookie-reject {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.cookie-banner button.cookie-settings {
  background: #fffbe9;
  color: var(--color-primary-dark);
  border: 1px solid #eee2c5;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fed279;
  color: var(--color-bg);
  box-shadow: 0 4px 22px -5px #F5B14399;
}
.cookie-banner button.cookie-reject:hover, .cookie-banner button.cookie-reject:focus {
  background: #34171b;
  color: #fed279;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34, 44, 57, 0.74);
  z-index: 88888;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInCookieModal 0.28s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--color-card);
  color: var(--color-secondary);
  border-radius: 18px;
  box-shadow: 0 8px 42px -5px #323a5055;
  padding: 36px 22px 27px 22px;
  width: 90vw; max-width: 510px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalRiseIn 0.41s cubic-bezier(.84,0,.25,1);
}
@keyframes modalRiseIn {
  from { transform: translateY(55px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 { color: var(--color-accent); font-size: 1.35rem; margin-bottom: 6px; }
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal li {
  display: flex; align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  color: var(--color-secondary);
}
.cookie-toggle {
  margin-left: auto;
  background: #3a4760;
  width: 42px; height: 24px;
  border-radius: 12px;
  position: relative;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--color-accent);
}
.cookie-toggle-switch {
  position: absolute;
  top: 2.7px; left: 2.5px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fffbe9;
  transition: left 0.16s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-switch {
  left: 20px;
}
.cookie-modal .modal-actions {
  display: flex; gap: 14px; justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute; right: 15px; top: 16px;
  background: none; border: none;
  color: var(--color-accent);
  font-size: 1.65rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #fed279;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .content-wrapper { padding: 24px 10px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 8px; }
  .content-wrapper { padding: 12vw 3vw; margin-bottom: 26px; }
  .section { padding: 25px 2vw; margin-bottom: 30px; }
  .cuisine-spotlights, .team-section, .card-container, .content-grid, .testimonial-container {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section { flex-direction: column; gap: 18px; align-items: stretch; }
}

@media (max-width: 540px) {
  html { font-size: 90%; }
  .content-wrapper { padding: 9vw 2vw; }
  .section { padding: 18px 1vw; }
  footer .container { padding: 0 6px; }
  .hero .content-wrapper {padding: 17px 0 17px 0;}
  .team-member, .testimonial-card { padding-left:10px; padding-right:10px; }
}

/* === ANIMATIONS === */
.card, .team-member, .testimonial-card, .cuisine-spotlights > div, .content-wrapper {
  transition: box-shadow 0.17s, transform 0.19s, background 0.17s;
}
.card:hover, .team-member:hover, .testimonial-card:hover, .cuisine-spotlights > div:hover, .card:focus, .team-member:focus, .testimonial-card:focus {
  transform: translateY(-4px) scale(1.02) skewY(-0.2deg);
  box-shadow: 0 8px 36px -5px #F5B14344;
  background: #232d3c;
}

/* === TRANSITION & MICRO-INTERACTIONS === */
button, .cta-primary, .main-nav a, .mobile-nav a, .continent-tabs li {
  transition: background 0.19s, color 0.18s, box-shadow 0.17s, border-color 0.17s;
}

/* === MISC === */
::-webkit-scrollbar {
  width: 10px;background: #253147; 
}
::-webkit-scrollbar-thumb {
  background: #346186; border-radius: 13px;
}
dialog::backdrop {background:rgba(34,44,57,0.46)}

/* === OVERRIDES FOR TESTIMONIALS/REVIEWS === */
.testimonial-card { background: #fffbe9; color: #22314A; }
.testimonial-card strong { color: var(--color-primary); }
.testimonial-card a { color: #F5B143; }
.testimonial-card a:hover, .testimonial-card a:focus { color: #285074; text-decoration: underline; }

/* === OVERRIDES FOR LEGAL PAGES === */
.legal {
  margin-top: 38px;
}
.legal .content-wrapper {
  background: #232d3c;
  color: #e7e9eb;
}
.legal h1, .legal h2, .legal h3 { color: var(--color-accent); }
.legal ul li {
  color: #d6c7b0; font-size: 1.04rem;
}
.legal a {
  color: var(--color-accent);
}
.legal a:hover { text-decoration: underline; }

/* === CONFIRMATION PAGE === */
.confirmation .content-wrapper {
  background: #fffbe9; border:1.5px solid #fed279; color: #22314A;
}
.confirmation h1 { color: var(--color-primary); }
.confirmation .cta-primary {
  margin-top: 16px;
  background: var(--color-primary);
  color: #fffbe9;
}
.confirmation .cta-primary:hover, .confirmation .cta-primary:focus {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* === Misc helpers === */
.hide { display: none !important; }
.flex { display: flex !important; }

/* === Prevent absolute for main content; only allow for small icons/decor === */

/* === Ensure all content blocks/cards have at least 20px spacing === */
.content-wrapper:not(:last-child) { margin-bottom: 36px; }
.card:not(:last-child), .team-member:not(:last-child), .testimonial-card:not(:last-child) { margin-bottom: 22px; }

/* === END === */
