/* 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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F8FA;
  color: #2d3540;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #264653;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A261;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; }
p, li, ul, ol { font-size: 1rem; font-weight: 400; color: #3C4D5C; }
strong { color: #264653; font-weight: bold; }
em { font-style: italic; }
.text-center { text-align: center; }

/* Container Layouts - Strict Flexbox */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(38,70,83,0.06);
}

/* Hero Section */
.hero {
  background: #264653;
  color: #fff;
  padding: 64px 0 48px 0;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta-primary {
  background: #E9C46A;
  color: #264653;
  box-shadow: 0 3px 12px rgba(39,70,83,0.10);
}
.hero .cta-primary:hover, .hero .cta-primary:focus {
  background: #F4A261;
  color: #fff;
}

/* Header & Navigation */
header {
  background: #fff;
  border-bottom: 1px solid #eceded;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 36px;
}
header img {
  height: 48px;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #33526A;
  font-size: 1.05rem;
  padding: 8px 6px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4A261;
  background: #f3f8fa;
}
.main-nav .cta-primary {
  background: #264653;
  color: #fff;
  font-weight: bold;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.08);
  transition: background 0.22s, color 0.18s, box-shadow 0.22s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #E9C46A;
  color: #264653;
  box-shadow: 0 4px 12px rgba(244,162,97,0.18);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  padding: 8px 14px;
  background: none;
  color: #264653;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E9C46A;
  color: #264653;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(38,70,83,0.97);
  color: #fff;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.27s cubic-bezier(.7,.2,.17,1);
  padding: 32px 28px 0 28px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 5px 0 20px rgba(38,70,83,0.24);
}
.mobile-menu-close {
  margin-bottom: 36px;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E9C46A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  padding: 11px 0 11px 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 5px;
  transition: background 0.14s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4A261;
  color: #264653;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  header img {
    margin-right: 14px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Footer */
footer {
  background: #264653;
  color: #fff;
  margin-top: 60px;
  padding: 36px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: center;
}
.footer-nav a {
  color: #E9C46A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4A261;
}
.footer-contact {
  text-align: center;
  color: #F4F4F2;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-contact p{
	color: #E9C46A
}

/* CTA Primary Button */
.cta-primary {
  display: inline-block;
  padding: 14px 30px;
  background: #264653;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(38,70,83,0.09);
  letter-spacing: 0.01em;
  transition: background 0.22s, color 0.15s, box-shadow 0.23s, transform 0.18s;
  margin-top: 16px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E9C46A;
  color: #264653;
  box-shadow: 0 4px 18px rgba(244,162,97,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Features, Event, Service, Case Grids - Flex Only */
.feature-grid, .service-grid, .event-types-grid, .case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature-grid > div, .service-grid > div, .event-types-grid > div, .case-studies > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  background: #F6F8FA;
  border-radius: 15px;
  box-shadow: 0 2px 7px rgba(38,70,83,0.05);
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid > div:hover, .service-grid > div:hover, .event-types-grid > div:hover, .case-studies > div:hover {
  box-shadow: 0 8px 22px rgba(244,162,97,0.09);
  transform: translateY(-2px);
}

/* Testimonials */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  color: #264653;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(38,70,83,0.09);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  max-width: 370px;
  flex: 1 1 240px;
  border-left: 6px solid #E9C46A;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.18s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(38,70,83,0.11);
  border-left: 6px solid #F4A261;
}
.testimonial-card p {
  color: #264653;
  font-size: 1.06rem;
}
.testimonial-card strong {
  color: #F4A261;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 8px;
}

/* Card Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgba(38,70,83,0.07);
  border-radius: 15px;
  padding: 22px 18px;
  flex: 1 1 250px;
  min-width: 200px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 22px rgba(244,162,97,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Content grid and flex sections */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ouput class-based list spacing */
.text-section, .quality-promise {
  padding: 10px 0;
  margin-bottom: 20px;
}
.quality-promise {
  font-size: 1.1rem;
  color: #E9C46A;
  background: #264653;
  padding: 18px 20px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}
.cuisine-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

/* Contact Page: contact-details */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}
.contact-details li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-details img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Utility Styles */
.text-section {
  background: #F9FAFB;
  border-radius: 9px;
  padding: 14px 18px 10px 18px;
}

/* How it works section */
.how-it-works {
  background: #F6F8FA !important;
  box-shadow: none;
  border-radius: 16px;
  margin-bottom: 60px;
}
.how-it-works ol {
  list-style: decimal inside;
  padding-left: 14px;
  margin-bottom: 0;
}
.how-it-works li {
  margin-bottom: 10px;
  padding-left: 4px;
}

/* Cookie Consent Banner */
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #264653;
  color: #fff;
  padding: 18px 14px 18px 14px;
  z-index: 2100;
  box-shadow: 0 -2px 14px rgba(38,70,83,0.13);
  animation: cookieSlideUp 0.42s cubic-bezier(.7,.2,.17,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.17s, color 0.15s;
}
.cookie-btn-accept {
  background: #E9C46A;
  color: #264653;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #F4A261;
  color: #fff;
}
.cookie-btn-reject {
  background: #fff;
  color: #264653;
  border: 1.5px solid #E9C46A;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #F4A261;
  color: #fff;
}
.cookie-btn-settings {
  background: transparent;
  color: #E9C46A;
  border: 1.5px solid #E9C46A;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #fff;
  color: #264653;
}

/* Cookie Modal Overlay & Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,70,83,0.72);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: cookieFadeIn 0.3s cubic-bezier(.71,.2,.21,1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #264653;
  border-radius: 14px;
  box-shadow: 0 8px 42px rgba(38,70,83,0.12);
  padding: 36px 26px 28px 26px;
  min-width: 340px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #264653;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #E9C46A;
}
.cookie-modal .cookie-btn-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  color: #8BA7BA;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .cookie-btn-close:hover {
  color: #F4A261;
}
.cookie-preference-actions {
  display: flex;
  gap: 14px;
  flex-direction: row;
  justify-content: flex-end;
}

/* Responsive Flex & Font Sizing */
@media (max-width: 1200px) {
  .feature-grid > div, .service-grid > div, .event-types-grid > div, .case-studies > div {
    min-width: 180px;
    max-width: 270px;
    padding: 16px 9px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .feature-grid, .service-grid, .event-types-grid, .case-studies {
    gap: 14px;
  }
  .hero {
    padding: 38px 0 18px 0;
  }
  .section {
    padding: 25px 12px;
  }
  .footer-contact { font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .feature-grid, .service-grid, .event-types-grid, .case-studies {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  header .container {
    height: 66px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
  .cta-primary {
    padding: 11px 19px;
    font-size: 1rem;
    margin-top: 11px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 22px 9px 18px 12px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .cookie-banner {
    font-size: 0.98rem;
    padding: 12px 4px 12px 4px;
  }
  .cta-primary {
    font-size: 0.97rem;
    padding: 10px 10px;
  }
  .feature-grid > div, .service-grid > div, .event-types-grid > div, .case-studies > div {
    min-width: 120px;
    padding: 11px 4px;
  }
}

/* Miscellaneous Utilities */
.hidden { display: none !important; }

/* Extra - Card hover micro-interactions */
.card, .feature-grid > div, .service-grid > div, .event-types-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s, border-color 0.17s;
}

/* Extra: Selection and focus */
::selection {
  background: #E9C46A;
  color: #264653;
}
a:focus, button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
}

/* Section spacing for generic usage and clear separation */
main section {
  margin-bottom: 60px;
  padding: 0;
}

/* Accessibility: Ensure proper focus for modal and cookie controls */
.cookie-modal:focus {
  outline: 2px solid #F4A261;
}

/* Hide scroll on mobile menu open on small screens */
body.mobile-menu-open {
  overflow: hidden;
}
