:root {
  --dark: #2b211c;
  --dark-soft: #3a2b24;
  --brown: #655947;
  --mid: #ba9b7b;
  --light: #f6efe4;
  --cream: #fbf6ec;
  --accent: #c59d5f;
  --accent-light: #d7ad72;
  --text: #2a211d;
  --muted: #6e6158;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(43, 33, 28, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
}

.nav {
  max-width: 1480px;
  height: 106px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 12px;
  background: rgba(43, 33, 28, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
}

.menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: 0.22s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: 0.22s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--accent-light);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.phone {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--accent);
  padding: 17px 28px;
  border-radius: 9px;
  transition: 0.25s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.phone:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* HERO */

.hero {
  position: relative;
  min-height: 860px;
  height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(101, 89, 71, 0.65),
      rgba(101, 89, 71, 0.45)
    ),
    url("../IMG/nahled.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    linear-gradient(to bottom, rgba(43, 33, 28, 0.35), rgba(43, 33, 28, 0.2), rgba(43, 33, 28, 0.65));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding: 150px 24px 70px;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-content p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-kicker,
.section-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent-light);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(78px, 8vw, 126px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.42);
}

.hero p {
  max-width: 720px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 66px;
  padding: 18px 34px;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

.btn.dark {
  min-width: 170px;
  min-height: 58px;
  padding: 15px 28px;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  border-radius: 7px;
}

.btn.dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-right: 3px solid var(--accent-light);
  border-bottom: 3px solid var(--accent-light);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.9;
  animation: bounce 1.9s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(45deg);
  }
  50% {
    transform: translateX(-50%) translateY(10px) rotate(45deg);
  }
}

/* ABOUT */

.about-section {
  position: relative;
  overflow: clip;
  padding: 130px 24px 95px;
  background:
    radial-gradient(circle at 20% 10%, rgba(197, 157, 95, 0.08), transparent 32%),
    radial-gradient(circle at 80% 40%, rgba(197, 157, 95, 0.08), transparent 30%),
    var(--cream);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(101, 89, 71, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 78px;
  align-items: center;
}

.about-text {
  max-width: 470px;
}

.about-text .section-kicker {
  margin-bottom: 18px;
  font-size: 15px;
}

.about-text h2,
.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.about-text h2 {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 0.96;
  margin-bottom: 30px;
}

.title-line {
  width: 72px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 42px;
}

.about-text p {
  margin-bottom: 15px;
  color: #3f332d;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

.signature {
  margin: 34px 0 34px;
  font-family: "Petit Formal Script", cursive;
  color: var(--accent);
  font-size: 34px;
  line-height: 1.2;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 575px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stamp {
  position: absolute;
  left: -48px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--dark);
  display: grid;
  place-items: center;
  box-shadow: 0 24px 55px rgba(43, 33, 28, 0.32);
}

.stamp::before {
  content: "Poctivá kuchyně";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(197, 157, 95, 0.65);
  border-radius: 50%;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.stamp-inner {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}

/* SIDE FOOD ICONS */

.food-icons {
  position: absolute;
  z-index: 2;
  top: 105px;
  bottom: 120px;
  width: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--dark);
  opacity: 0.78;
  pointer-events: none;
}

.food-icons-left {
  left: 26px;
}

.food-icons-right {
  right: 26px;
}

.food-icons span {
  position: relative;
  display: block;
  font-size: 38px;
  filter: grayscale(1);
  opacity: 0.85;
  animation: floatIcon 5s ease-in-out infinite;
}

.food-icons span:nth-child(even) {
  animation-delay: -2s;
}

.food-icons span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* SPECIALITY */

.section-divider {
  position: relative;
  z-index: 2;
  max-width: 1130px;
  margin: 115px auto 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: var(--accent);
}

.section-divider span {
  height: 1px;
  background: rgba(197, 157, 95, 0.62);
}

.section-divider div {
  font-size: 30px;
  line-height: 1;
}

.section-divider .divider-logo {
  width: 34px;
  height: 34px;
  /*display: grid;*/
  /*place-items: center;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider .divider-logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(61%) sepia(29%) saturate(613%) hue-rotate(356deg) brightness(91%) contrast(87%);
}

.speciality-section {
  position: relative;
  z-index: 2;
  max-width: 1130px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.speciality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.speciality-card {
  height: 255px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(43, 33, 28, 0.16);
  background: var(--white);
}

.speciality-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.speciality-card:hover img {
  transform: scale(1.05);
}

.arc-gallery {
  position: relative;
  width: min(100%, 1040px);
  height: 560px;
  margin: 0 auto 90px;
  overflow: visible;
}

.arc-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to top, var(--cream), transparent);
}

.arc-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arc-slide {
  position: absolute;
  left: 50%;
  bottom: 80px;
  width: 640px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(43, 33, 28, 0.26);
  transform-origin: center bottom;
  transition:
    transform 0.85s cubic-bezier(.22, .9, .2, 1),
    filter 0.6s ease,
    opacity 0.5s ease;
}

.arc-prev,
.arc-next {
  opacity: 0.65;
  filter: brightness(0.45) blur(5px);
}

.arc-gallery.moving-next .arc-prev,
.arc-gallery.moving-prev .arc-next {
  opacity: 0;
  filter: brightness(0.3) blur(10px);
}

.arc-gallery.moving-next .arc-next,
.arc-gallery.moving-prev .arc-prev {
  opacity: 0.9;
  filter: brightness(0.6) blur(0px);
}

.arc-gallery.moving-next .arc-prev {
  opacity: 0;
}

.arc-gallery.moving-next .arc-next {
  opacity: 1;
}

.arc-gallery.moving-prev .arc-next {
  opacity: 0;
}

.arc-gallery.moving-prev .arc-prev {
  opacity: 1;
}

.arc-active {
  z-index: 5;
  filter: brightness(1);
  transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
}

.arc-active:hover {
  transform: translateX(-50%) translateY(-6px) scale(1.045) rotate(0deg);
}

.arc-prev {
  z-index: 3;
  filter: brightness(0.42);
  transform: translateX(-105%) translateY(88px) scale(0.62) rotate(-12deg);
}

.arc-next {
  z-index: 3;
  filter: brightness(0.42);
  transform: translateX(5%) translateY(88px) scale(0.62) rotate(12deg);
}

.arc-far-prev {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.24);
  transform: translateX(-145%) translateY(155px) scale(0.42) rotate(-22deg);
}

.arc-far-next {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.24);
  transform: translateX(45%) translateY(155px) scale(0.42) rotate(22deg);
}

.arc-far-prev,
.arc-far-next {
  opacity: 0;
  pointer-events: none;
}

.arc-gallery.no-transition .arc-slide {
  transition: none !important;
}

.arc-btn {
  position: absolute;
  top: 42%;
  z-index: 20;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(43, 33, 28, 0.22);
}

.arc-btn svg {
  width: 26px;
  height: 26px;
  display: block;
}

.arc-btn path {
  fill: none;
  stroke: #fff;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arc-btn.prev {
  left: 55px;
}

.arc-btn.next {
  right: 55px;
}

/* FOOTER */

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

footer p + p {
  margin-top: 6px;
}

/* FOOTER SOCIAL */

.footer-social-wrapper {
  max-width: 920px;
  margin: 0 auto 22px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-block {
  text-align: center;
}

.footer-title {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.footer-title.small .time {
  color: var(--accent-light);
}

.footer-links-fancy {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-pill {
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  transition: 0.22s ease;
}

.footer-pill:hover {
  transform: translateY(-2px);
}

.footer-facebook {
  background: #1877f2;
}

.footer-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.footer-nesnezeno {
  background: #43ad52;
}

/* RESPONSIVE */

@media (max-width: 1150px) {
  .nav {
    height: auto;
    min-height: 94px;
    padding: 24px;
    flex-wrap: wrap;
  }

  .menu {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .about-container {
    gap: 48px;
  }

  .food-icons {
    opacity: 0.28;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    padding: 0 12px;
  }

  .nav {
    justify-content: center;
  }

  .logo img {
    height: 48px;
  }

  .phone {
    padding: 13px 20px;
  }

  .menu {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 210px;
  }

  .hero h1 {
    font-size: clamp(58px, 14vw, 92px);
  }

  .hero p {
    font-size: 18px;
  }

  .about-section {
    padding-top: 130px;
  }

  .about-container {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .about-text {
    max-width: none;
    text-align: center;
  }

  .title-line {
    margin-left: auto;
    margin-right: auto;
  }

  .stamp {
    left: 24px;
    bottom: -48px;
  }

  .food-icons {
    display: none;
  }

  .speciality-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .nav {
    border-radius: 10px;
  }

  .menu a {
    font-size: 12px;
  }

  .phone {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero-kicker {
    font-size: 13px;
  }

  .hero p br {
    display: none;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .about-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-image-wrap img {
    height: 390px;
  }

  .stamp {
    width: 110px;
    height: 110px;
    left: 18px;
    bottom: -38px;
  }

  .stamp::before {
    font-size: 8px;
  }

  .section-divider {
    margin-top: 90px;
  }

  .section-heading h2 {
    font-size: 40px;
  }
}