/* 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,
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F7F2;
  color: #143642;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #143642;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #EBA93A;
  text-decoration: underline;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #143642;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 9px;
  letter-spacing: 0.03em;
}
.content-wrapper > h1, .content-wrapper > h2, .content-wrapper > h3 {
  margin-top: 0;
}
.subheadline, .tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #EBA93A;
  font-size: 1.15rem;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  font-weight: 500;
}
p {
  font-size: 1rem;
  color: #143642;
  line-height: 1.7;
  margin-bottom: 14px;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  background: #ECECEC;
  color: #143642;
  border-left: 7px solid #EBA93A;
  padding: 18px 20px;
  margin: 0 0 12px 0;
}
cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.96rem;
  color: #143642;
  opacity: 0.8;
  letter-spacing: 0.01em;
}

/* LAYOUT CONTAINERS & SPACING - FLEXBOX ONLY! */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 22px rgba(20,54,66,0.07);
  padding: 28px 28px 20px 28px;
  border: 2px solid #EBA93A;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.19s cubic-bezier(.42,0,.58,1);
}
.card:hover {
  box-shadow: 0 8px 34px rgba(20,54,66,0.17);
  border-color: #143642;
}
.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;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(20,54,66,0.08);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #EBA93A;
  max-width: 670px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #ECECEC;
  padding: 24px 18px;
  margin-bottom: 18px;
}
/* Additional flex container for index: feature-grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #ECECEC;
  padding: 24px 18px;
  min-width: 220px;
  box-shadow: 0 1px 8px rgba(20,54,66,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border 0.2s, box-shadow 0.2s;
}
.feature-grid > div:hover {
  border-color: #EBA93A;
  box-shadow: 0 6px 24px rgba(20,54,66,0.16);
}

/* GEOMETRIC STRUCTURE & STYLE */
.hero-section {
  min-height: 320px;
  background: #143642;
  color: #fff;
  padding: 60px 0;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero-section h1, .hero-section .subheadline, .hero-section .tagline {
  color: #fff;
}
.hero-section .cta-button {
  background: #EBA93A;
  color: #143642;
  border-radius: 0 20px 0 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 1.18rem;
  border: none;
  padding: 14px 36px;
  margin-top: 22px;
  box-shadow: 0 2px 12px rgba(20,54,66,0.13);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: #143642;
  color: #EBA93A;
  outline: none;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 20px rgba(20,54,66,0.22);
}
.about-preview {
  background: #EBA93A;
  color: #143642;
  border-radius: 0 36px 0 36px;
  margin-bottom: 60px;
}
.about-preview a {
  font-weight: 600;
  color: #143642;
  text-decoration: underline;
  transition: color 0.17s;
}
.about-preview a:hover {
  color: #fff;
}
.cta-section {
  background: #143642;
  color: #fff;
  border-radius: 36px 0 36px 0;
  text-align: left;
  margin-bottom: 60px;
}
.cta-section .cta-button {
  background: #EBA93A;
  color: #143642;
}

/* CARDS & CAROUSELS */
.card {
  min-height: 180px;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(20,54,66,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 18px;
}
header img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #143642;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 0 10px 0 10px;
  padding: 9px 17px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EBA93A;
  color: #143642;
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #EBA93A;
  color: #143642;
  border-radius: 10px;
  border: none;
  padding: 6px 17px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #143642;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  z-index: 1001;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #143642;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.33s cubic-bezier(.34,.92,.56,1.48);
  transform: translateX(-100vw);
  box-shadow: 2px 0 32px rgba(20,54,66,0.16);
  pointer-events: none;
  opacity: 0.97;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #EBA93A;
  color: #143642;
  border-radius: 12px;
  border: none;
  font-size: 2.1rem;
  margin: 26px 26px 8px 0;
  padding: 4px 17px 2px;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(235,169,58,0.08);
  transition: background 0.16s;
}
.mobile-menu-close:focus {
  outline: 2px solid #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 38px 0 0 38px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.029em;
  border-radius: 0 20px 0 20px;
  padding: 10px 0 10px 12px;
  transition: color 0.16s, background 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #EBA93A;
  color: #143642;
}

/* FOOTER */
footer {
  background: #143642;
  color: #fff;
  padding: 48px 0 15px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 0 10px 0 10px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #EBA93A;
  color: #143642;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 0.98rem;
  margin-bottom: 8px;
  color: #fff;
}
.copyright {
  text-align: center;
  font-size: 0.93rem;
  color: #bbb;
  margin-top: 6px;
  letter-spacing: 0.025em;
}

/* CUSTOM CLASSES FOR GEOMETRIC STRUCTURE */
.highlighted-story {
  background: #EBA93A;
  color: #143642;
  border-radius: 20px 0 20px 0;
  padding: 10px 19px;
  font-weight: 700;
  margin: 13px 0 0 0;
}
.author-bios {
  border-left: 4px solid #143642;
  padding-left: 13px;
  margin: 13px 0 0 0;
  font-size: 0.97rem;
  color: #143642;
  background: #ECECEC;
  border-radius: 0 14px 14px 0;
}

/* VALUES/FEATURES LIST ICONS & ALIGN */
.values-section ul,
.street-food-tips ul,
.feature-stories ul,
.cuisine-overview ul,
.interactive-poll ul,
.stories ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.values-section ul li,
.street-food-tips ul li,
.feature-stories ul li,
.cuisine-overview ul li,
.interactive-poll ul li,
.stories ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  color: #143642;
}
.values-section ul li img,
.street-food-tips ul li img,
.cuisine-overview ul li img,
.contact-details p img,
.map-location p img {
  width: 22px;
  height: 22px;
}

/* SPECIAL CARD DESIGN: TESTIMONIALS */
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  padding: 0;
  margin: 0;
  color: #143642;
}
.testimonial-card cite {
  color: #143642;
  opacity: 0.7;
  margin-left: 18px;
}

/* CONTACT PAGE SPECIALS */
.map-location, .contact-details {
  margin-bottom: 12px;
}
.success-message {
  background: #EBA93A;
  color: #143642;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* THANK YOU */
.thank-you-section .cta-button {
  margin-top: 30px;
}
.thank-you-message {
  font-size: 1.17rem;
  color: #143642;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* LEGAL PAGES */
.legal-section h1, .legal-section h2 {
  color: #143642;
  margin-bottom: 13px;
}
.legal-section ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 18px;
}
.legal-section ul li {
  margin-bottom: 7px;
  color: #143642;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2222;
  width: 100vw;
  background: #143642;
  color: #fff;
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 20px rgba(20,54,66,0.16);
  font-size: 1.04rem;
  justify-content: center;
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  padding: 8px 20px;
  background: #EBA93A;
  color: #143642;
  border-radius: 0 10px 0 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin: 0 2px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #143642;
  outline: none;
}
.cookie-banner .cookie-link {
  color: #EBA93A;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 13px;
  cursor: pointer;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2236;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,54,66,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #143642;
  border-radius: 20px;
  padding: 36px 29px 24px 29px;
  max-width: 420px;
  min-width: 310px;
  box-shadow: 0 12px 48px rgba(20,54,66,0.28);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: #143642;
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-cat-label {
  flex: 1 1 auto;
  font-size: 1.06rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #ECECEC;
  border-radius: 13px;
  position: relative;
  outline: none;
  margin-right: 0;
  transition: background 0.11s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #EBA93A;
}
.cookie-modal .cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.14s cubic-bezier(.39,.52,.59,.99);
  box-shadow: 0 1px 2px rgba(20,54,66,0.09);
}
.cookie-modal .cookie-toggle:checked::after {
  transform: translateX(15px);
}
.cookie-modal .essential-label {
  opacity: 0.5;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .modal-buttons button {
  padding: 8px 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 11px;
  font-size: 1.62rem;
  background: #EBA93A;
  color: #143642;
  border-radius: 10px;
  border: none;
  width: 32px;
  height: 32px;
  text-align: center;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ECECEC;
}

/* RESPONSIVE: MOBILE FIRST */
@media (max-width: 1024px) {
  .container {
    max-width: 951px;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 720px;
  }
  .footer-nav {
    gap: 13px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid,
  .content-grid {
    gap: 13px;
  }
  .feature-grid > div {
    flex: 1 1 90vw;
    max-width: 99vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 21px;
  }
  header .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.17rem; }
  .hero-section {
    padding: 28px 0 30px 0;
    min-height: 220px;
    border-radius: 0;
  }
  .about-preview, .cta-section {
    border-radius: 0 18px 0 18px;
    padding: 21px 9px 21px 9px;
  }
  .footer-nav {
    flex-direction: column ;
    gap: 6px;
    margin-bottom: 10px;
  }
  .cookie-modal {
    padding: 19px 6px 16px 9px;
    min-width: 94vw;
    max-width: 99vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
  }
}

/* MICRO-INTERACTIONS & EFFECTS */
.card, .feature-grid > div, .cta-button, .main-nav a, .mobile-nav a, .testimonial-card, .footer-nav a, .cookie-banner button {
  transition: box-shadow 0.18s, border 0.18s, color 0.13s, background 0.13s, transform 0.17s;
}
.cta-button:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.98);
}

::selection {
  background: #EBA93A;
  color: #143642;
}

/* ENSURE MINIMUM SPACING BETWEEN CARDS/SECTIONS */
.section, .about-preview, .cta-section, .card, .card-container > *, .testimonial-card {
  margin-bottom: 20px;
}

/* Prevent overlapping and assure readable testimonials */
.testimonial-card {
  background: #fff !important;
  color: #143642 !important;
  box-shadow: 0 1px 12px rgba(20,54,66,0.05);
}
.testimonial-card blockquote, .testimonial-card cite {
  color: #143642 !important;
  background: none !important;
}

/* Hide elements off-screen for accessibility when closed */
.mobile-menu:not(.open) {
  pointer-events: none;
}
.cookie-modal-overlay:not(.open) {
  display: none;
}

/* SPECIAL: FOCUS STATES FOR ACCESSIBILITY */
a:focus, .cta-button:focus, .main-nav a:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .mobile-nav a:focus, .footer-nav a:focus, .cookie-banner button:focus, .cookie-modal-close:focus {
  outline: 2px solid #EBA93A;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(235,169,58,0.15);
}

/* Utility classes (not present in HTML, but for geometric shape + future usage) */
.shape-square {
  width: 68px;
  height: 68px;
  background: #EBA93A;
  border-radius: 0 18px 0 18px;
  position: absolute;
  opacity: 0.25;
  z-index: 0;
}
.shape-triangle {
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-bottom: 68px solid #ECECEC;
  position: absolute;
  opacity: 0.17;
  z-index: 0;
}

/* End of CSS */
