/*
 * Lokálne zdieľané štýly, ktoré catering používa.
 * Sú súčasťou tohto súboru, takže stránka nemá externú CSS závislosť.
 */
.about-page {
  --about-red: #b40000;
  --about-yellow: #ffd000;
  --about-black: #0a0a0a;
  --about-dark: #141414;
  --about-content: 1180px;
  --about-radius: 15px;
  color: var(--about-black);
  background: #fff;
  font-family: "Barlow", Arial, sans-serif;
}

.about-page,
.about-page *,
.about-page *::before,
.about-page *::after { box-sizing: border-box; }
.about-page img { display: block; max-width: 100%; }
.about-page h1, .about-page h2, .about-page h3, .about-page p, .about-page figure, .about-page dl, .about-page dd { margin: 0; }
.about-page h1, .about-page h2, .about-page h3 { font-weight: 700; }
.about-page a { color: inherit; }
.about-shell { width: min(100% - 48px, var(--about-content)); margin-inline: auto; }

.about-eyebrow { position: relative; width: max-content; margin-bottom: 19px !important; color: var(--about-red); font-size: 20px; font-weight: 700; line-height: 1.2; }
.about-eyebrow::after { position: absolute; bottom: -9px; left: 0; width: 52px; height: 2px; background: currentColor; content: ""; }
.about-gallery__heading h2 { font-size: clamp(36px, 3.1vw, 48px); line-height: 1.08; }

.about-button { display: inline-flex; min-height: 48px; flex: 0 0 auto; align-items: center; justify-content: center; padding: 12px 16px; border: 1px solid; border-radius: 10px; font-size: 20px; font-weight: 700; line-height: 1.15; letter-spacing: .06em; text-align: center; text-decoration: none; text-transform: uppercase; transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease; }
.about-button:focus-visible { outline: 3px solid #ef8c8c; outline-offset: 3px; }
.about-button--primary { border-color: var(--about-red); color: #fff !important; background: var(--about-red); }
.about-button--primary:hover, .about-button--primary:focus-visible { color: var(--about-red) !important; background: #fff; }
.about-button--yellow { border-color: var(--about-yellow); color: var(--about-black); background: var(--about-yellow); }
.about-button--yellow:hover, .about-button--yellow:focus-visible { color: var(--about-yellow); background: var(--about-black); }
.about-button--dark { border-color: rgba(255,255,255,.25); color: #fff; background: transparent; }
.about-button--dark:hover, .about-button--dark:focus-visible { border-color: #fff; background: rgba(255,255,255,.1); }

.about-gallery { padding: 105px 0 120px; background: #fff; }
.about-gallery__heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.about-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 245px 245px 245px; gap: 16px; }
.about-gallery__item { overflow: hidden; padding: 0; border: 0; border-radius: var(--about-radius); background: transparent; cursor: zoom-in; }
.about-gallery__item img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; transition: transform 300ms ease; }
.about-gallery__item:hover img, .about-gallery__item:focus-visible img { transform: scale(1.035); }
.about-gallery__item:focus-visible { outline: 3px solid #ef8c8c; outline-offset: 3px; }
.about-gallery__one { grid-area: 1 / 1 / 3 / 3; }
.about-gallery__two { grid-area: 1 / 3 / 3 / 4; }
.about-gallery__three { grid-area: 1 / 4 / 2 / 5; }
.about-gallery__four { grid-area: 2 / 4 / 3 / 5; }
.about-gallery__five { grid-area: 3 / 1 / 4 / 2; }
.about-gallery__six { grid-area: 3 / 2 / 4 / 4; }
.about-gallery__seven { grid-area: 3 / 4 / 4 / 5; }

.about-lightbox { position: fixed; z-index: 99999; inset: 0; display: grid; padding: 28px 80px; color: #fff; background: rgba(0,0,0,.92); opacity: 0; pointer-events: none; transition: opacity 180ms ease; place-items: center; }
.about-lightbox.is-open { opacity: 1; pointer-events: auto; }
.about-lightbox__figure { display: grid; max-width: min(1200px, 88vw); max-height: 88vh; gap: 12px; place-items: center; }
.about-lightbox__image { max-width: 100%; max-height: 80vh; border-radius: 12px; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.about-lightbox__caption { font-size: 16px; text-align: center; }
.about-lightbox__close, .about-lightbox__arrow { position: absolute; display: grid; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(0,0,0,.45); font: inherit; font-size: 30px; line-height: 1; cursor: pointer; transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease; place-items: center; }
.about-lightbox__close:hover, .about-lightbox__arrow:hover, .about-lightbox__close:focus-visible, .about-lightbox__arrow:focus-visible { border-color: #fff; color: var(--about-red); background: #fff; }
.about-lightbox__close:focus-visible, .about-lightbox__arrow:focus-visible { outline: 3px solid #ef8c8c; outline-offset: 3px; }
.about-lightbox__close { top: 24px; right: 24px; }
.about-lightbox__arrow { top: 50%; transform: translateY(-50%); }
.about-lightbox__arrow--previous { left: 24px; }
.about-lightbox__arrow--next { right: 24px; }
.about-lightbox__counter { position: absolute; bottom: 22px; left: 50%; font-size: 14px; transform: translateX(-50%); }

.catering-page {
  --catering-red: #b40000;
  --catering-yellow: #ffd000;
  --catering-black: #0a0a0a;
  --catering-dark: #141414;
  --catering-radius: 15px;
  color: var(--catering-black);
  font-family: "Barlow", Arial, sans-serif;
}

.catering-page *,
.catering-page *::before,
.catering-page *::after { box-sizing: border-box; }

.catering-page h1,
.catering-page h2,
.catering-page h3,
.catering-page p,
.catering-page figure,
.catering-page blockquote,
.catering-page dl,
.catering-page dd { margin: 0; }

.catering-info__grid h2, .catering-steps h2, .catering-references h2 {
  color: white;
}

.catering-steps h3 {
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

#catering-info-title {
  display: block;
  color: black;
  font-weight: bold;
}

.catering-demand__copy p {
  padding-top: 20px;
}

.catering-info__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catering-demand__copy {
  align-self:start;
}

.catering-info__cta p {
  padding-top: 18px;
  padding-bottom: 18px;
}

.catering-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.catering-eyebrow { margin-bottom: 14px !important; color: var(--catering-red); font-size: 20px; font-weight: 700; }
.catering-eyebrow::after { display: block; width: 52px; height: 2px; margin-top: 8px; background: currentColor; content: ""; }
.catering-eyebrow--yellow { color: var(--catering-yellow); }
.catering-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; }
.catering-heading h1, .catering-heading h2 { font-size: clamp(38px, 4vw, 48px); font-weight: 700; line-height: 1.08; }
.catering-heading > p { padding-bottom: 8px; font-size: 22px; line-height: 1.35; }

.catering-info { padding: 85px 0 64px; background: #fff; }
.catering-info__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 55px; }
.catering-event { position: relative; overflow: hidden; min-height: 310px; border-radius: 18px; box-shadow: 0 6px 20px rgba(0,0,0,.1); color: #fff; isolation: isolate; }
.catering-event::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9), transparent 64%); content: ""; }
.catering-event img { position: absolute; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; max-height: none !important;}
.catering-event:hover img { transform: scale(1.035); }
.catering-event span { position: absolute; top: 16px; left: 16px; padding: 5px 13px; border-radius: 8px; background: var(--catering-red); font-size: 12px; font-weight: 700; }
.catering-event h2 { position: absolute; right: 24px; bottom: 27px; left: 24px; font-size: 20px; line-height: 1.2; }
.catering-info__cta { margin-top: 48px; padding: 32px 40px; border-radius: var(--catering-radius); box-shadow: 0 4px 15px rgba(0,0,0,.2); text-align: center; }
.catering-info__cta h2 { font-size: 36px; }
.catering-info__cta > p { max-width: 680px; margin: 14px auto 26px; font-size: 19px; line-height: 1.4; }
.catering-info__cta > div { display: flex; justify-content: center; gap: 24px; }
.catering-button-secondary { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 16px; border: 1px solid var(--catering-black); border-radius: 10px; color: var(--catering-black); font-size: 20px; font-weight: 700; letter-spacing: .06em; text-decoration: none; transition: color 160ms ease, background-color 160ms ease; }
.catering-button-secondary:hover, .catering-button-secondary:focus-visible { color: #fff; background: var(--catering-black); }
.catering-button-secondary:focus-visible { outline: 3px solid #ef8c8c; outline-offset: 3px; }

.catering-steps { position: relative; overflow: hidden; padding: 150px 0 105px; color: #fff; background: #fff url("https://bratislava.bistrogourmet.sk/user/documents/upload/assets/catering/steps-background.png") center/cover no-repeat; }
.catering-steps__logo { position: absolute; z-index: 0; top: -25px; left: max(calc(50% - 590px), 20px); width: 245px; height: 245px; object-fit: contain; opacity: 1; transform: rotate(26deg); pointer-events: none; }
.catering-steps .catering-shell { position: relative; z-index: 1; }
.catering-steps__heading { max-width: 620px; margin: 0 auto 70px; text-align: center; }
.catering-steps__heading .catering-eyebrow::after { margin-inline: auto; }
.catering-steps__heading h2 { font-size: clamp(40px, 4vw, 48px); line-height: 1.08; }
.catering-steps__heading > p:last-child { max-width: 500px; margin: 22px auto 0; font-size: 21px; line-height: 1.35; }
.catering-steps__list { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 0; padding: 0; list-style: none; }
.catering-steps__list::before { position: absolute; top: 39px; right: 16.5%; left: 16.5%; border-top: 2px dashed rgba(255,208,0,.6); content: ""; }
.catering-steps__list li { position: relative; min-width: 0; text-align: center; }
.catering-steps__list li::before { position: absolute; z-index: 0; top: -32px; left: 50%; color: rgba(255,255,255,.04); font-size: 140px; font-weight: 700; line-height: 1; content: attr(data-step-number); transform: translateX(-50%); pointer-events: none; }
.catering-steps__list span { position: relative; z-index: 2; display: inline-flex; width: 80px; height: 80px; align-items: center; justify-content: center; border-radius: 50%; color: var(--catering-black); background: var(--catering-yellow); box-shadow: 0 8px 12px rgba(0,0,0,.2), 0 0 22px rgba(255,208,0,.22); font-size: 26px; font-weight: 700; transition: transform 220ms ease, box-shadow 220ms ease; }
.catering-steps__list li:nth-child(2) span { color: #fff; background: var(--catering-red); box-shadow: 0 8px 16px rgba(180,0,0,.35), 0 0 26px rgba(180,0,0,.4); }
.catering-steps__list li:hover span { transform: scale(1.08); box-shadow: 0 10px 18px rgba(0,0,0,.28), 0 0 0 8px rgba(255,208,0,.14), 0 0 30px rgba(255,208,0,.32); }
.catering-steps__list li:nth-child(2):hover span { box-shadow: 0 10px 20px rgba(180,0,0,.42), 0 0 0 8px rgba(180,0,0,.16), 0 0 34px rgba(180,0,0,.5); }
.catering-steps__list h3 { margin-top: 27px; font-size: 24px; }
.catering-steps__list p { margin-top: 12px; font-size: 18px; line-height: 1.45; }

@media (min-width: 1850px) {
  .catering-steps {
    background-position: center top;
    background-size: 100% 100%;
  }
}

.catering-demand { padding: 95px 0; background: #fff; }
.catering-demand__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.catering-demand__copy h2 { font-size: clamp(38px, 4vw, 48px); line-height: 1.08; }
.catering-demand__copy > p { margin-top: 18px; font-size: 20px; line-height: 1.45; }
.catering-contact-list { margin-top: 34px; }
.catering-contact-list div { display: grid; grid-template-columns: 145px 1fr; padding: 16px 0; border-bottom: 1px solid rgba(10,10,10,.08); font-size: 18px; }
.catering-contact-list dt { color: rgba(10,10,10,.58); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.catering-contact-list dd, .catering-contact-list a { color: var(--catering-black); font-weight: 600; text-decoration: none; }
.catering-form { display: grid; gap: 22px; padding: 38px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,.2); background: #fff; }
.catering-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.catering-form label { display: grid; gap: 7px; font-size: 18px; font-weight: 600; }
.catering-form input, .catering-form textarea { width: 100%; padding: 14px 16px; border: 1px solid #e8e0d8; border-radius: 10px; color: var(--catering-black); background: #fff; font: 400 16px/1.3 "Barlow", Arial, sans-serif; }
.catering-form textarea { min-height: 105px; resize: vertical; }
.catering-form input:focus, .catering-form textarea:focus { outline: 3px solid rgba(180,0,0,.18); border-color: var(--catering-red); }
.catering-form .about-button { width: 100%; cursor: pointer; }

.catering-why { padding: 86px 0 120px; background: #fff; }
.catering-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 72px; }
.catering-why__grid article { min-height: 280px; padding: 28px; border: 1px solid var(--catering-red); border-radius: 16px; }
.catering-why__grid article > div { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.catering-why__grid article > div > span { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 12px; background: var(--catering-yellow); }
.catering-why__grid article img { width: 26px; height: 26px; }
.catering-why__grid small { padding: 5px 10px; border-radius: 6px; color: var(--catering-red); background: #fff0f0; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.catering-why__grid h3 { margin-top: 20px; font-size: 21px; }
.catering-why__grid article > p { margin-top: 12px; font-size: 16px; line-height: 1.5; }

.catering-references { padding: 100px 0 105px; overflow: hidden; color: #fff; background: var(--catering-dark); }
.catering-references__heading { display: grid; grid-template-columns: 1fr 1.5fr; align-items: center; gap: 50px; }
.catering-references__heading h2 { font-size: clamp(42px, 4.7vw, 56px); line-height: 1.02; }
.catering-references__heading img { width: 100%; height: 165px; border-radius: 20px; object-fit: cover; filter: brightness(.72); }
.catering-references__viewport { overflow: hidden; margin-top: 55px; }
.catering-references__track { display: flex; gap: 16px; transition: transform 280ms ease; }
.catering-references__track article { flex: 0 0 calc((100% - 32px)/3); min-height: 285px; padding: 28px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: #161616; }
.catering-references__track article::before { color: var(--catering-yellow); font: 36px/1 Georgia, serif; content: '"'; }
.catering-references__track article > span { float: right; padding: 4px 10px; border-radius: 6px; color: var(--catering-red); background: rgba(180,0,0,.12); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.catering-references blockquote { min-height: 130px; padding: 16px 0; color: rgba(255,255,255,.75); font-size: 16px; font-style: italic; line-height: 1.55; }
.catering-references footer { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.catering-references footer > b { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--catering-red); }
.catering-references footer p { display: grid; }
.catering-references footer small { color: rgba(255,255,255,.4); }
.catering-references__controls { display: flex; justify-content: flex-end; gap: 10px; margin-top: 28px; }
.catering-references__controls button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; background: rgba(255,255,255,.06); cursor: pointer; transition: border-color 160ms ease, background-color 160ms ease; }
.catering-references__controls button:hover { border-color: var(--catering-yellow); background: rgba(255,208,0,.12); }

@media (max-width: 900px) {
  .catering-heading, .catering-demand__layout, .catering-references__heading { grid-template-columns: 1fr; gap: 25px; }
  .catering-info__grid, .catering-why__grid { grid-template-columns: repeat(2, 1fr); }
  .catering-steps__list { gap: 20px; }
  .catering-steps__list::before { right: 16%; left: 16%; }
  .catering-steps__logo { left: -35px; width: 210px; height: 210px; }
  .catering-references__track article { flex-basis: calc((100% - 16px)/2); }
}

@media (max-width: 980px) {
  .about-gallery__grid { grid-template-rows: repeat(3, 200px); }
}

@media (max-width: 620px) {
  .catering-shell { width: min(100% - 30px, 1180px); }
  .catering-info, .catering-demand, .catering-why { padding-block: 60px; }
  .catering-heading h1, .catering-heading h2, .catering-demand__copy h2 { font-size: 36px; }
  .catering-info__grid, .catering-why__grid, .catering-steps__list { grid-template-columns: 1fr; }
  .catering-event { min-height: 285px; }
  .catering-info__cta { padding: 28px 18px; }
  .catering-info__cta h2 { font-size: 30px; }
  .catering-info__cta > div { flex-direction: column; }
  .catering-steps { padding-block: 180px 70px; }
  .catering-steps__list { gap: 45px; }
  .catering-steps__list::before { top: 40px; bottom: 40px; left: 50%; width: 0; height: auto; border-top: 0; border-left: 2px dashed rgba(255,208,0,.45); }
  .catering-steps__list li { padding-bottom: 12px; }
  .catering-steps__list li::before { top: -25px; font-size: 120px; }
  .catering-steps__list h3, .catering-steps__list p { position: relative; z-index: 2; }
  .catering-steps__logo { top: 12px; left: 50%; width: 190px; height: 190px; transform: translateX(-50%) rotate(26deg); }
  .catering-form { padding: 25px 18px; }
  .catering-form__row { grid-template-columns: 1fr; gap: 22px; }
  .catering-contact-list div { grid-template-columns: 1fr; gap: 6px; }
  .catering-references { padding-block: 70px; }
  .catering-references__heading h2 { font-size: 40px; }
  .catering-references__track article { flex-basis: 100%; }
}

@media (max-width: 700px) {
  .about-shell { width: min(100% - 32px, var(--about-content)); }
  .about-gallery { padding-block: 65px; }
  .about-gallery__heading { align-items: flex-start; flex-direction: column; }
  .about-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5, 190px); }
  .about-gallery__one { grid-area: 1 / 1 / 3 / 3; }
  .about-gallery__two { grid-area: 3 / 1 / 5 / 2; }
  .about-gallery__three { grid-area: 3 / 2 / 4 / 3; }
  .about-gallery__four { grid-area: 4 / 2 / 5 / 3; }
  .about-gallery__five { grid-area: 5 / 1 / 6 / 2; }
  .about-gallery__six { grid-area: 6 / 1 / 7 / 3; }
  .about-gallery__seven { grid-area: 5 / 2 / 6 / 3; }
  .about-gallery__grid { grid-template-rows: repeat(6, 190px); }
  .about-lightbox { padding: 70px 16px 60px; }
  .about-lightbox__arrow { top: auto; bottom: 14px; transform: none; }
  .about-lightbox__arrow--previous { left: 16px; }
  .about-lightbox__arrow--next { right: 16px; }
  .about-lightbox__close { top: 14px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-button { transition: none; }
  .catering-page .catering-event img,
  .catering-page .catering-steps__list span,
  .catering-page .catering-references__track { transition: none; }
}
