/*
Theme Name: Ultra Taste Catering
Theme URI: https://ultrataste.com.ng/
Author: Beyond Website Design
Description: A responsive catering and event management WordPress theme for Ultra Taste Catering Services.
Version: 1.3.0
Text Domain: ultra-taste
*/
:root {
  --purple: #5b1b69;
  --deep: #230d29;
  --lilac: #d8b5df;
  --cream: #fffaf4;
  --ink: #211a22;
  --muted: #706872;
  --line: #e9e0e7;
  --gold: #d49b49;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.announcement {
  height: 38px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--deep);
  color: #f4e9f6;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.announcement a {
  display: flex;
  gap: 7px;
  align-items: center;
  font-weight: 700;
}
.nav-shell {
  height: 90px;
  max-width: 1230px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  position: relative;
  z-index: 4;
}
.site-branding,
.custom-logo-link,
.default-logo { display: flex; align-items: center; flex-shrink: 0; }
.custom-logo,
.default-logo img { width: auto; height: 76px; max-width: 180px; object-fit: contain; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--purple); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: white;
  border-radius: 50% 50% 50% 12%;
  font-family: Georgia, serif;
  font-weight: bold;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font:
    700 1.34rem Georgia,
    serif;
  color: var(--purple);
}
.brand small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.61rem;
  color: #766a77;
  margin-top: 3px;
}
.nav-shell nav {
  font-size: 0.92rem;
  font-weight: 700;
}
.nav-shell .primary-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-shell .primary-menu .sub-menu {
  display: none;
  position: absolute;
  min-width: 200px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(35, 13, 41, 0.14);
}
.nav-shell .primary-menu li {
  position: relative;
}
.nav-shell .primary-menu li:hover > .sub-menu,
.nav-shell .primary-menu li:focus-within > .sub-menu {
  display: grid;
  gap: 12px;
}
.nav-shell .current-menu-item > a,
.nav-shell .current-menu-ancestor > a {
  color: var(--purple);
}
.nav-shell nav a:hover {
  color: var(--purple);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  font-size: 0.9rem;
  transition:
    0.2s transform,
    0.2s background;
}
.button:hover {
  transform: translateY(-2px);
  background: #722781;
}
.button-small {
  padding: 12px 18px;
}
.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1s ease,
    transform 6s ease;
}
.hero-image.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 6, 24, 0.98) 0%,
    rgba(28, 8, 32, 0.86) 38%,
    rgba(32, 9, 34, 0.18) 72%,
    rgba(32, 9, 34, 0.05)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  color: white;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lilac);
  margin-bottom: 19px;
}
.eyebrow.purple {
  color: var(--purple);
}
.eyebrow.lilac {
  color: #edcef3;
}
.hero h1 {
  font:
    500 clamp(3.5rem, 7vw, 6.75rem)/0.93 Georgia,
    serif;
  letter-spacing: -0.045em;
  max-width: 720px;
  margin-bottom: 27px;
}
.hero h1 em {
  color: #e6c2ec;
  font-weight: 400;
}
.hero-copy {
  max-width: 620px;
  color: #eee5ef;
  font-size: 1.14rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 31px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: #fff;
}
.text-link.dark {
  color: var(--purple);
  margin-top: 8px;
}
.hero-points {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  color: #dacfdc;
  font-size: 0.82rem;
}
.hero-points span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.slider-controls {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slider-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff66;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #230d2966;
  color: #fff;
  cursor: pointer;
}
.slider-controls > button:hover {
  background: #fff;
  color: var(--purple);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #ffffff77;
  cursor: pointer;
  transition: width 0.25s ease;
}
.slider-dots button.active {
  width: 27px;
  background: #fff;
}
.section {
  max-width: 1180px;
  margin: auto;
  padding: 105px 24px;
}
.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 100px;
  align-items: start;
}
.intro h2,
.section-heading h2,
.process h2 {
  font:
    500 clamp(2.35rem, 4vw, 4rem)/1.08 Georgia,
    serif;
  letter-spacing: -0.035em;
  margin: 0;
}
.intro-copy p {
  font-size: 1.03rem;
  line-height: 1.82;
  color: var(--muted);
}
.services {
  padding-top: 75px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 45px;
}
.section-heading > p {
  max-width: 400px;
  line-height: 1.7;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px #4a175225;
}
.service-card > img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover > img {
  transform: scale(1.035);
}
.service-card-body {
  padding: 25px 25px 27px;
}
.service-card h3 {
  font:
    600 1.4rem Georgia,
    serif;
  margin: 0 0 13px;
}
.service-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  min-height: 116px;
}
.service-card a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--purple);
  font-weight: 800;
  font-size: 0.85rem;
}
.soup-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: var(--deep);
  color: white;
}
.soup-photo {
  background:
    linear-gradient(0deg, #38113b30, #38113b30),
    url("assets/service-soups.webp") center/cover no-repeat;
  position: relative;
}
.soup-stamp {
  position: absolute;
  right: -70px;
  top: 55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  box-shadow: 0 0 0 8px #d49b4933;
}
.soup-stamp strong {
  font:
    700 1.1rem Georgia,
    serif;
  margin-top: 5px;
}
.soup-stamp small {
  font-size: 0.68rem;
}
.soup-content {
  padding: 105px 8vw 90px 110px;
  align-self: center;
}
.soup-content h2,
.quote h2 {
  font:
    500 clamp(2.5rem, 4.4vw, 4.45rem)/1.06 Georgia,
    serif;
  letter-spacing: -0.04em;
}
.soup-content > p {
  color: #d8cbd9;
  line-height: 1.8;
  max-width: 610px;
}
.soup-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 28px;
  margin: 30px 0 36px;
}
.soup-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f3e8f4;
}
.light-button {
  background: #fff;
  color: var(--purple);
}
.light-button:hover {
  background: #f2e7f4;
}
.compact {
  max-width: 740px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.steps article {
  display: flex;
  gap: 20px;
  padding-top: 26px;
  border-top: 2px solid var(--lilac);
}
.steps article > span {
  flex: 0 0 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0dff3;
  color: var(--purple);
  font-weight: 800;
}
.steps h3 {
  font:
    600 1.25rem Georgia,
    serif;
  margin-bottom: 10px;
}
.steps p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}
.quote {
  max-width: none;
  background: var(--purple);
  color: white;
  padding-left: max(24px, calc((100vw - 1132px) / 2));
  padding-right: max(24px, calc((100vw - 1132px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}
.quote h2 {
  max-width: 820px;
  margin: 0;
}
footer {
  background: #17081b;
  color: #d9cedb;
  padding: 80px max(24px, calc((100vw - 1132px) / 2)) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 1fr;
  gap: 55px;
}
.footer-brand .brand-mark {
  background: #fff;
  color: var(--purple);
}
.footer-brand strong {
  color: white;
}
.footer-grid > div > p {
  color: #a99eaa;
  line-height: 1.7;
  margin-top: 22px;
  font-size: 0.9rem;
}
.footer-grid h3 {
  font:
    600 1.1rem Georgia,
    serif;
  color: white;
  margin-bottom: 23px;
}
.footer-grid a:not(.brand),
.footer-grid div:nth-child(2) p {
  display: flex;
  gap: 9px;
  color: #b9aebc;
  margin: 0 0 13px;
  font-size: 0.88rem;
  align-items: flex-start;
}
.footer-grid a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff1a;
  margin-top: 55px;
  padding-top: 24px;
  color: #7e7480;
  font-size: 0.78rem;
}
.floating-whatsapp {
  position: fixed;
  right: 23px;
  bottom: 23px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 6;
  box-shadow: 0 8px 30px #0004;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.site-content { min-height: 55vh; }
.content-shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding-top: 75px; padding-bottom: 85px; }
.narrow-content { max-width: 850px; }
.content-heading { margin-bottom: 38px; }
.content-heading h1, .inner-hero h1 { font: 700 clamp(2.4rem, 5vw, 4.7rem) Georgia, serif; line-height: 1.05; color: var(--deep); }
.inner-hero { min-height: 290px; display: flex; align-items: center; padding: 70px max(24px, calc((100vw - 1120px) / 2)); background: var(--deep); color: white; background-position: center; background-size: cover; }
.inner-hero h1 { color: white; margin-bottom: 0; }
.entry-content { font-size: 1.06rem; line-height: 1.8; }
.entry-content > :first-child { margin-top: 0; }
.entry-content img { max-width: 100%; height: auto; }
.entry-content a { color: var(--purple); text-decoration: underline; }
.entry-content h2, .entry-content h3 { color: var(--deep); margin-top: 1.6em; }
.single-featured img { width: 100%; height: auto; border-radius: 18px; margin-bottom: 35px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 18px; }
.post-card img { width: 100%; height: 220px; object-fit: cover; }
.post-card-body { padding: 25px; }
.post-card h2 { font: 700 1.45rem Georgia, serif; }
.post-meta { color: var(--muted); font-size: .82rem; }
.footer-menu { padding: 0; margin: 0; list-style: none; }
.footer-menu li { margin-bottom: 10px; }
.error-page { text-align: center; padding-top: 120px; padding-bottom: 120px; }
.error-page h1 { font: 700 clamp(2.3rem, 5vw, 4rem) Georgia, serif; color: var(--deep); }
.pagination { margin-top: 40px; }

@media (max-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-shell nav {
    display: none;
  }
  .nav-shell nav.is-open { display: block; position: absolute; top: 100%; left: 18px; right: 18px; padding: 18px; background: var(--cream); box-shadow: 0 16px 35px rgba(35,13,41,.16); }
  .nav-shell .primary-menu { display: grid; gap: 0; }
  .nav-shell .primary-menu > li > a { display: block; padding: 11px 5px; }
  .nav-shell .primary-menu .sub-menu { display: grid; position: static; box-shadow: none; padding: 0 0 0 18px; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero {
    min-height: 640px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .soup-wrap {
    grid-template-columns: 1fr;
  }
  .soup-photo {
    min-height: 480px;
  }
  .soup-stamp {
    right: 25px;
    top: auto;
    bottom: -55px;
  }
  .soup-content {
    padding: 100px 7vw 85px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quote {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .announcement span {
    display: none;
  }
  .announcement {
    justify-content: center;
  }
  .nav-shell {
    height: 78px;
    padding: 0 18px;
  }
  .custom-logo, .default-logo img { height: 65px; max-width: 145px; }
  .content-shell { width: min(100% - 32px, 1120px); padding-top: 55px; padding-bottom: 60px; }
  .post-grid { grid-template-columns: 1fr; }
  .nav-shell .button-small {
    display: none;
  }
  .hero {
    min-height: 690px;
  }
  .hero-content {
    width: calc(100% - 36px);
  }
  .hero h1 {
    font-size: 3.45rem;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-points {
    gap: 13px;
    flex-direction: column;
    margin-top: 32px;
  }
  .slider-controls {
    right: 18px;
    bottom: 22px;
  }
  .section {
    padding: 76px 20px;
  }
  .section-heading {
    display: block;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card p {
    min-height: auto;
  }
  .service-card > img {
    height: 235px;
  }
  .soup-photo {
    min-height: 360px;
  }
  .soup-content {
    padding: 90px 22px 75px;
  }
  .soup-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .quote {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .brand strong {
    font-size: 1.12rem;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-image {
    animation: none;
  }
  .button {
    transition: none;
  }
}
