/* Morteimbia Catering – Futuristic Tech-Inspired, Responsive CSS Style */

/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #141f26;
  color: #f6e3b4;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
a {
  color: #8a4000;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 6px #a96a26, 0 0 20px #19425c33;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 6px;
  line-height: 1.5;
}
strong {
  color: #f6e3b4;
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; color: #f6e3b4; }
h3 { font-size: 1.4rem; margin-bottom: 16px; color: #a96a26; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }
p { color: #f6e3b4; margin-bottom: 18px; }

/* CONTAINER & SECTION */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #19425C 60%, #222d35 100%);
  border-radius: 20px;
  box-shadow: 0 8px 40px 0 #0e2436cc;
}

@media (max-width: 768px) {
  .section {
    padding: 26px 8px;
    margin-bottom: 34px;
    border-radius: 10px;
  }
  .container {
    padding: 0 10px;
  }
}

/* HEADER */
header {
  background: #141f26;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 18px -2px #000a  ;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 86px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f6e3b4;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #a96a26;
  color: #fff;
  box-shadow: 0 0 12px 0 #a96a2680;
}
header img {
  height: 52px;
}
header .cta.primary {
  margin-left: 20px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #f6e3b4;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  padding: 7px 10px;
  margin-left: 8px;
  transition: background 0.2s;
  display: none;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #19425C;
}

@media (max-width: 1020px) {
  header .container {
    gap: 10px;
  }
  header nav {
    gap: 12px;
  }
}
@media (max-width: 880px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta.primary {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #19425c 75%, #0b151c 100%);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.2s;
  border-radius: 8px;
  padding: 0 8px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #f6e3b4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 54px 0 0 56px;
}
.mobile-nav a {
  color: #f6e3b4;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 12px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background-color: #a96a26;
  color: #fff;
}
@media (max-width: 480px) {
  .mobile-nav { margin-left: 20px; }
  .mobile-menu-close { margin-right: 12px; }
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 32px;
  border: none;
  outline: none;
  background: #222d35;
  color: #f6e3b4;
  cursor: pointer;
  text-shadow: 0 0 10px #a96a2652;
  box-shadow: 0 2px 16px 0 #19425c48;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.15s;
  margin-top: 16px;
  margin-bottom: 12px;
}
.cta.primary {
  background: linear-gradient(100deg, #a96a26 70%, #8a4000 100%);
  color: #fff;
  box-shadow: 0 2px 10px 0 #a96a2638, 0 0 16px #ffbb0088 inset;
}
.cta.secondary {
  background: transparent;
  color: #a96a26;
  border: 2px solid #a96a26;
  box-shadow: none;
}
.cta:focus,
.cta:hover {
  background: #f6e3b4;
  color: #19425c;
  box-shadow: 0 0 24px 0 #a96a26cc;
  transform: translateY(-2px) scale(1.025);
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #ffba30 30%, #8a4000 100%);
  color: #19425c;
}

/* CONTENT & FLEX LAYOUTS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 14px;
  background: #192c3e;
  box-shadow: 0 2px 16px -4px #11222f88;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .card:focus {
  box-shadow: 0 5px 28px 0 #a96a263c, 0 0 36px #8a400022;
  transform: translateY(-6px) scale(1.02);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TEXT-IMAGE SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #f6e3b4;
  color: #141f26;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #8a400018;
  min-width: 240px;
  max-width: 400px;
  font-size: 1rem;
  margin-bottom: 20px;
  flex: 1 1 280px;
  border-left: 5px solid #a96a26;
  position: relative;
  z-index: 0;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 #19425c55;
  transform: scale(1.015);
}
.testimonial-card strong {
  color: #19425c;
  font-size: 1.03em;
}
.testimonial-card p {
  color: #222d35;
  font-size: 1em;
}

/* CARDS, BADGES & FEATURE ITEMS */
.trust-badges,
.quality-promises,
.quality-seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 16px 0;
  font-size: 1rem;
}
.trust-badges img,
.quality-seals img {
  height: 30px;
  margin-right: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.menu-sample, .sample-menus, .faq-teaser, .use-case-highlights, .planning-support, .customization-options, .next-steps, .min-order-info {
  background: #192c3e;
  color: #f6e3b4;
  padding: 18px 16px;
  border-radius: 15px;
  box-shadow: 0 0 12px #19425c33;
  margin-bottom: 12px;
  margin-top: 12px;
}
.menu-sample h3, .sample-menus h3, .faq-teaser h3, .next-steps p {
  color: #a96a26;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 12px;
  font-size: 1.15rem;
  color: #f6e3b4;
}
.contact-info img {
  height: 25px;
  margin-right: 7px;
  filter: drop-shadow(0 0 4px #a96a26cc);
}
.address-map {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 1em;
  color: #f6e3b4;
}
.address-map img {
  margin-right: 4px;
  height: 22px;
}

/* FOOTER */
footer {
  background: #101720;
  color: #f6e3b4;
  padding: 48px 0 35px 0;
  border-top: 3px solid #a96a26;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: #a96a26;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  padding: 5px 0;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-shadow: 0 0 8px #a96a26aa;
}
footer img {
  height: 60px;
  margin-bottom: 13px;
}
.footer-contact {
  color: #f6e3b4;
  font-size: 1rem;
}

@media (max-width: 860px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #19425c;
  color: #fff;
  box-shadow: 0 -2px 16px #0e2436dd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 36px 14px 36px;
  font-size: 1rem;
  transition: transform 0.5s cubic-bezier(.6,.3,.3,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  border-radius: 22px;
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: #a96a26;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus { background: #f6e3b4; color: #19425c; }
.cookie-banner .reject {
  background: #fff;
  color: #a96a26;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus { background: #a96a26; color: #fff; }
.cookie-banner .settings {
  background: transparent;
  color: #f6e3b4;
  border: 1.5px solid #f6e3b4;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus { background: #f6e3b4; color: #19425c; }

@media (max-width: 660px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 12px 10px 6px 10px;
    font-size: 0.95rem;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #141f26dd;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: #192c3e;
  border-radius: 20px;
  padding: 34px 36px 28px 36px;
  box-shadow: 0 2px 46px #19425ccc;
  max-width: 430px;
  width: 96vw;
  color: #fff;
  z-index: 3001;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #a96a26;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}
.cookie-category label {
  color: #f6e3b4;
  font-size: 1rem;
}
.cookie-category input:disabled {
  accent-color: #a96a26;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal button {
  padding: 10px 20px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: #a96a26;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal button.secondary {
  background: #f6e3b4;
  color: #19425c;
  border: 1.5px solid #a96a26;
}
.cookie-modal button:focus, .cookie-modal button:hover {
  background-color: #fff;
  color: #a96a26;
}

/* GENERAL RESPONSIVE TYPOGRAPHY */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .cta, .cta.primary, .cta.secondary {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .footer-contact { font-size: 0.97rem; }
}

/* NEON/TECH ACCENTS */
.section,
.card,
.menu-sample, .sample-menus, .faq-teaser, .use-case-highlights, .planning-support, .customization-options, .next-steps, .min-order-info {
  border: 2px solid #19425cee;
  box-shadow: 0 0 18px 0 #a96a2622, 0 0 65px #a96a2625 inset;
  position: relative;
}
.section:before, .card:before {
  content: '';
  position: absolute;
  left: -6%;
  top: -12%;
  width: 32%;
  height: 50%;
  background: linear-gradient(105deg, #a96a2675 10%, transparent 95%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.card:before {
  left: -13%;
  top: -20%;
  width: 44%;
  height: 42%;
  opacity: 0.3;
}
/* Remove :before on small screens for better perf */
@media (max-width: 800px) {
  .section:before, .card:before { display: none; }
}

/* BRAND COLOR UTILS */
.bg-primary { background: #19425c !important; }
.bg-accent { background: #a96a26 !important; color: #fff !important; }
.bg-secondary { background: #f6e3b4 !important; color: #19425c !important; }
.text-primary { color: #19425c !important; }
.text-accent { color: #a96a26 !important; }
.text-secondary { color: #f6e3b4 !important; }

/* SCROLLBAR STYLING */
::-webkit-scrollbar { width: 8px; background: #192c3e; }
::-webkit-scrollbar-thumb { background: #a96a26aa; border-radius: 6px; }

/* FORM (if any) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 6px;
  padding: 8px 12px;
  background: #111a20;
  color: #f6e3b4;
  border: 1.5px solid #19425C;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px #a96a2612;
  font-size: 1rem;
  transition: border 0.18s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #a96a26;
  outline: none;
  box-shadow: 0 0 10px #a96a26cc;
}

/* UTILITIES */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }

/* Misc: Prevent text overlap, assure accessible contrast */
body, .container, .section, .content-wrapper {
  word-break: break-word;
}

/* Accessibility: Ensure :focus is visible */
:focus {
  outline: 2px solid #a96a26;
  outline-offset: 2px;
}

/* ANIMATIONS (for micro-interactions) */
.cta, .cta.primary, .cta.secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal button {
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.12s;
}
.card, .testimonial-card, .menu-sample, .sample-menus, .faq-teaser {
  transition: box-shadow 0.23s, transform 0.13s;
}

/* Spacing for content blocks */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section, .section {
    margin-bottom: 32px;
    padding: 20px 6px;
  }
}

/* Demo purpose: hide empty .thank-you blocks if any */
.thank-you { display:none; }

/* GAP utilities for all relevant flex containers, if a container uses these classes */
.card-container { gap: 24px; }
.card     { margin-bottom: 20px; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; margin-bottom: 20px; }
.feature-item { gap: 15px; }

/* END OF CSS */