:root {
  --brand: #ff7a33;
  --brand-dark: #e76420;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #f7f4f1;
  --dark: #0f172a;
  --card-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  --card-shadow-hover: 0 22px 45px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
  margin: 0;
  padding-top: 0;
  line-height: 1.7;
  overflow-x: hidden;
}

body,
body .navbar,
body .btn,
body .form-control,
body .section,
body .site-header,
body .site-footer {
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header {
  background: rgba(230, 114, 18, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(230, 114, 18, 0.5);
  font-family: "Inter", sans-serif;
}

.site-header .navbar {
  --bs-navbar-padding-y: 0.35rem;
  --bs-navbar-brand-padding-y: 0.2rem;
}

.hero .site-header-hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.hero {
  padding-top: 90px;
}

.navbar-brand {
  letter-spacing: 0.6px;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  align-items: center;
  line-height: 1;
}

.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-bottom: 4px;
  margin-top: 4px;
}

.navbar-brand span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
}

.navbar-logo {
  height: 2.75rem;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  order: -1;
}

.site-header .nav-item {
  font-family: "Inter", sans-serif;
}

.site-header .nav-link {
  color: #ffffff;
  position: relative;
  padding: 0.25rem 0;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.site-header .nav-link.nav-phone {
  padding: 0.25rem 0.75rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  background-color: #ffffff;
  color: #e67212;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 991px) {
  .site-header .nav-item-phone {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 0.75rem;
  }

  .site-header .nav-link.nav-phone {
    margin-left: 0;
  }
}

.site-header .nav-link.nav-phone i {
  color: #e67212;
}

.site-header .nav-link.nav-phone::after {
  display: none;
}

.site-header .nav-link.nav-phone:hover,
.site-header .nav-link.nav-phone:focus {
  background-color: #ffffff;
  color: #e67212;
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #ffffff;
  opacity: 0.9;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.site-header .nav-link::after {
  background: #ffffff;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 20px rgba(255, 122, 51, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 122, 51, 0.35);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
  transition: all 0.2s ease;
}

.btn-outline-primary:hover {
  background: var(--brand);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  margin-top: 0;
  padding-top: 56px;
}

.hero-media {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.22));
}


.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.hero-content > * {
  animation: fadeUp 0.9s ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.1s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.3s;
}

.hero h1,
.hero .hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
  font-weight: 700;
  color: #ffffff;
}

.hero .hero-lead {
  color: inherit;
}

@media (min-width: 576px) {
  .hero .hero-title,
  .hero .hero-lead {
    white-space: nowrap;
  }
}

.hero-meta {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: #e2e8f0;
  flex-wrap: wrap;
}

.hero-meta i {
  margin-right: 6px;
  color: #e67212;
  font-size: 1.6rem;
  line-height: 1;
}

.hero .bi-telephone {
  color: #e67212;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.hero-meta-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.section {
  padding: 90px 0;
}

.section-muted {
  background: var(--bg);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title.section-title-left {
  text-align: left;
  margin-bottom: clamp(-80px, -8vw, -100px);
}

.section-title.section-title-left h2 {
  padding-bottom: 12px;
}

.section-title.section-title-left h2::after {
  left: 50%;
  transform: translateX(-50%);
}

#about .about-content {
  display: flex;
  flex-direction: column;
}

#about .about-content .row {
  margin-top: 0.25rem;
}

#about .about-content .section-title.section-title-left {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  #about .about-content .section-title.section-title-left {
    margin-bottom: clamp(-24px, -2.5vw, -36px);
  }

  #about .about-content .row {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  #about .about-content .section-title.section-title-left {
    margin-bottom: clamp(-80px, -8vw, -100px);
  }
}

#about .about-content .section-title h2 {
  margin-bottom: 0;
}

#about .row .col-lg-6 p:first-of-type {
  margin-top: 0;
}

#about.section {
  padding-top: 50px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background-color: #e67212;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}

.scroll-top-btn i {
  font-size: 1.2rem;
}

.scroll-top-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--brand);
  border-radius: 999px;
}

.section-title p {
  color: var(--muted);
  max-width: 620px;
}

.image-card {
  box-shadow: var(--card-shadow);
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  background: #ffffff;
  padding: 16px;
  border-radius: 999px;
  box-shadow: var(--card-shadow);
  margin: 0 auto 32px;
  max-width: 760px;
}

.menu-tab {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(255, 122, 51, 0.25);
}

.menu-card {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid rgba(255, 122, 51, 0.6);
  box-shadow: var(--card-shadow);
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.menu-card-photo .menu-image {
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.menu-card-photo .menu-body {
  padding: 22px;
}

.menu-card-photo h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.menu-card-photo p {
  color: var(--muted);
  margin-bottom: 16px;
}

.popisok {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.pouzitie {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 0.25rem;
}

.menu-price {
  position: absolute;
  right: 16px;
  bottom: 12px;
  background: var(--brand);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
}

.menu-pill {
  position: absolute;
  left: 16px;
  top: 12px;
  background: #16a34a;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--card-shadow);
}

#contact .contact-card {
  margin-left: 3rem;
}

.contact-card a {
  color: var(--brand-dark);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 450px;
  margin-left: 5rem;
}

@media (max-width: 991px) {
  #contact .contact-card,
  #contact .map-wrapper {
    margin-left: 0;
  }
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer {
  padding: 24px 0;
  background: #0b1220;
  color: #cbd5f5;
}

.site-footer a {
  color: #93c5fd;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }
.scroll-reveal-delay-5 { transition-delay: 0.5s; }

#menu .row > .scroll-reveal:nth-child(6n+1) { transition-delay: 0s; }
#menu .row > .scroll-reveal:nth-child(6n+2) { transition-delay: 0.06s; }
#menu .row > .scroll-reveal:nth-child(6n+3) { transition-delay: 0.12s; }
#menu .row > .scroll-reveal:nth-child(6n+4) { transition-delay: 0.18s; }
#menu .row > .scroll-reveal:nth-child(6n+5) { transition-delay: 0.24s; }
#menu .row > .scroll-reveal:nth-child(6n+6) { transition-delay: 0.3s; }

@media (max-width: 991px) {
  .hero {
    padding-top: 56px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .site-header .container,
  .hero .hero-content.container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .navbar-logo {
    height: 2.25rem;
  }

  .hero h1,
  .hero .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }
}