:root {
  --fs-xs: 0.875rem;
  --fs-sm: 1rem;
  --fs-md: 1.25rem;
  --fs-lg: 1.618rem;
  --fs-xl: 2.0625rem;
  --fs-xxl: 2.618rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  --bg-main: #050509;
  --glass-bg: rgba(17, 17, 26, 0.8);
  --accent-main: #f5c873;
  --accent-secondary: #e44a4a;
  --text-main: #f9f5ec;
  --text-muted: #b2a9a0;
}



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

html {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100%;

   opacity: 0;
  transition: opacity 0.6s ease;
}

body.page-loaded {
  opacity: 1;
  
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

/* ============================
   CATEGORY SECTION WRAPPER
============================ */
.menu-category {
  position: relative;
  padding-block: var(--space-xl);
}

/* Divider między kategoriami */
.menu-category:not(:first-of-type) {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  padding-top: calc(var(--space-xl) + 1rem);
  margin-top: var(--space-xl);
}

/* Tło kategorii */
.category-bg {
  position: absolute;
  top: var(--space-sm);
  bottom: var(--space-sm);
  right: 0;
  left: 30%;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: blur(1.5px);
  border-radius: 1rem;
  z-index: 0;
}

/* Treść kategorii ponad tłem */
.menu-section-title,
.menu-grid {
  position: relative;
  z-index: 1;
}

/* Backgroundy */
.menu-category.starters .category-bg {
  background-image: url("images/starter.jpg");
}
.menu-category.sushi .category-bg {
  background-image: url("images/sushi_and_sashimi.jpg");
}
.menu-category.rolls .category-bg {
  background-image: url("images/uramaki_futomaki.jpg");
}
.menu-category.ramen .category-bg {
  background-image: url("images/ramen.jpg");
}
.menu-category.donburi .category-bg {
  background-image: url("images/donburi.jpg");
}
.menu-category.sides .category-bg {
  background-image: url("images/extras.jpg");
}
.menu-category.drinks .category-bg {
  background-image: url("images/drinks.jpg");
}
.menu-category.tea .category-bg {
  background-image: url("images/japanese_tea.jpg");
}
.menu-category.desserts .category-bg {
  background-image: url("images/desserts.jpg");
}

/* ============================
   MAIN LAYOUT
============================ */
main {
  padding-inline: 15vw;
   
}

.menu-section-title {
  font-size: calc(var(--fs-xxl) * 2); /* duży tytuł */
  margin-bottom: var(--space-md);
  color: var(--accent-main);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

/* ornament – mała gwiazdka / „sigil” pośrodku */
.menu-section-title::before {
  content: "◬"; /* możesz zmienić na np. "禅" albo "◬" */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.1rem;
  font-size: 1.2rem;
  color: var(--accent-main);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(245, 200, 115, 0.7);
}

/* gradientowy podkreślnik pod ornamentem */
.menu-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.6rem;

  width: 130px;
  height: 4px;
  border-radius: 999px;

  background: linear-gradient(
    to right,
    rgba(245, 200, 115, 0) 0%,
    rgba(245, 200, 115, 0.95) 50%,
    rgba(245, 200, 115, 0) 100%
  );

  filter: drop-shadow(0 0 6px rgba(245, 200, 115, 0.6));
}

/* wersja na telefon  */
@media (max-width: 600px) {
  .menu-section-title {
    font-size: var(--fs-xl); 
  }

  .menu-section-title::before {
    bottom: -0.9rem;
    font-size: 1rem;
  }

  .menu-section-title::after {
    bottom: -1.3rem;
    width: 100px;
    height: 3px;
  }
}

.text-muted {
  color: var(--text-muted);
}

/* ============================
   KARTA MENU
============================ */
.menu-item {
  display: grid;
  grid-template-columns: 1fr; /* domyślnie pion: obrazek nad tekstem */
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--glass-bg);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  transition: 0.25s ease;
}

/* na dużym ekranie obrazek obok tekstu */
@media (min-width: 1200px) {
  .menu-item {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: stretch;
  }
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.7);
  border-color: rgba(245, 200, 115, 0.55);
}

.menu-figure {
  overflow: hidden;
  border-radius: 0.75rem;
}

.menu-figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.35s ease;
}

.menu-item:hover .menu-figure img {
  transform: scale(1.06);
}

.menu-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.menu-title {
  font-size: calc(var(--fs-md) * 1.8);

  min-width: 0;
  flex: 1 1 auto;
}

.menu-price {
  font-size: calc(var(--fs-sm) * 1.6);
  font-weight: 600;
  color: var(--accent-main);

  flex: 0 0 auto;
   align-self: flex-start;    /* twardo przypinamy cenę do góry */
  margin-top: 0.1rem;
}

.menu-desc {
  font-size: calc(var(--fs-xs) * 1.7);
  line-height: 1.55;
}

.menu-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr; /* baza: jedna kolumna */
}

/* duże ekrany – dwie kolumny kart */
@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* trochę niższe obrazki na tablecie / mobile */
@media (max-width: 900px) {
  .menu-figure img {
    height: 220px;
  }
}

/* ============================
   MOBILE
============================ */
@media (max-width: 600px) {
  main {
    padding-inline: var(--space-sm);
  }

  .menu-figure img {
    height: 180px;
  }

  .category-bg {
    display: none;
  }
}

@media (max-width: 1400px) {
  .menu-title {
    font-size: var(--fs-lg);
  }

  .menu-price {
    font-size: var(--fs-md);
  }
}
/* ============================
   SIDE STRIP 

============================ */
.side-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 25vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.side-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 2rem;
  animation: sideStripScroll 40s linear infinite;
}

.side-strip-inner img {
  width: 80%;
  aspect-ratio: 9/16;
  object-fit: cover;
  opacity: 0.45;
  filter: blur(3px) brightness(0.85);
  border-radius: 12px;
  margin-inline: auto;
}

@keyframes sideStripScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 600px) {
  .side-strip {
    display: none;
  }
  .side-strip-inner {
    animation: none;
  }
}

header {
  position: relative;
  z-index: 100;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;

  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 9, 0.92),
    rgba(5, 5, 9, 0.8)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* wrapper navki */
.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  flex-wrap: nowrap;
}

.nav-logo-img {
  height: 32px; /* MOBILE */
  width: auto;
}

@media (min-width: 900px) {
  .nav-logo-img {
    height: 48px; /* DESKTOP  */
  }
}


.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: var(--fs-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-main);
}

.nav-grid {
  list-style: none;

  margin-inline: 0;
  padding-inline: var(--space-md);
  padding-block: 0.75rem;

  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* małe ekrany – poziomy scroll navki */
@media (max-width: 768px) {
  .nav-grid {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
  }
}

.nav-grid a {
  text-decoration: none;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.nav-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-main),
    var(--accent-secondary)
  );
  transition: width 0.25s ease;
}

.nav-grid a:hover {
  color: var(--text-main);
}

.nav-grid a:hover::after {
  width: 100%;
}

/* aktywny link (scroll spy) */
.nav-grid a.active {
  color: var(--accent-main);
}

.nav-grid a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 200, 115, 0.6);
  background: rgba(5, 5, 9, 0.85);
  cursor: pointer;
  position: relative;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 60%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-muted);
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, -6px);
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, 6px);
}

/* animacja na X przy otwartym menu */
.main-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.main-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.main-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh; /* pełny ekran */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10vw;
  padding-block: var(--space-xl);
  overflow: hidden;
}

/* tło hero – foto + gradient */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(5, 5, 9, 0.8),
      rgba(5, 5, 9, 0.95)
    ),
    url("images/ramen.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  filter: saturate(1.1);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  padding: var(--space-lg);
  border-radius: 1.5rem;
  background: radial-gradient(
    circle at top left,
    rgba(245, 200, 115, 0.12),
    rgba(5, 5, 9, 0.9)
  );
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.hero-kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-main);
  margin-bottom: var(--space-xs);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  font-size: var(--fs-sm);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-main),
    var(--accent-secondary)
  );
  color: #111;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(249, 245, 236, 0.45);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(249, 245, 236, 0.08);
}

.hero-meta {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* hero na mobile */
@media (max-width: 768px) {
  .hero {
    padding-inline: var(--space-sm);
  }

  .hero-inner {
    padding: var(--space-md);
  }
}

.location {
  padding-block: var(--space-xl);
}

.location-inner {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: var(--space-lg);
  align-items: center;
}

.location-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
  color: var(--accent-main);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.location-tagline {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.location-desc {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.location-details {
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.location-details li + li {
  margin-top: 0.25rem;
}

.location-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

/* responsywność */
@media (max-width: 900px) {
  .location-inner {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    min-height: 260px;
  }
}

.site-footer {
  padding-block: var(--space-lg);
  padding-inline: 15vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.04),
    transparent 55%
  );
  color: var(--text-muted);
  font-size: var(--fs-xs);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer-col {
  max-width: 480px;
}

.footer-logo {
  font-size: var(--fs-lg);
  color: var(--accent-main);
  margin-bottom: 0.25rem;
}

.footer-heading {
  font-size: var(--fs-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem; /* TU robi odstęp nad ikonami */
}

.footer-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand h4 {
  font-family: "Playfair Display", serif;
  font-size: var(--fs-lg);
  margin-bottom: 0.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(245, 200, 115, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--accent-main);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  border-color: rgba(245, 200, 115, 0.95);
  background: rgba(245, 200, 115, 0.12);
}

.footer-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(249, 245, 236, 0.05);
  border: 1px solid rgba(249, 245, 236, 0.25);
  color: var(--text-main);
  transition: 0.2s ease;
}

.social-icon:hover {
  background: linear-gradient(
    135deg,
    var(--accent-main),
    var(--accent-secondary)
  );
  color: #111;
  border-color: transparent;
  transform: translateY(-1px);
}

.footer-copy {
  margin-top: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer-copy p {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .site-footer {
    padding-inline: var(--space-sm);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.location-section {
  padding-block: var(--space-xl);
}

.location-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: minmax(0, 1fr);
}

.location-info h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.location-map iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
}

/* 2 kolumny na większych ekranach */
@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1.2fr 1.8fr;
    align-items: center;
  }

  .location-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding-inline: var(--space-sm);
  }

  /* pokazujemy hamburger, chowamy poziomą listę */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-grid {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    background: linear-gradient(
      to bottom,
      rgba(5, 5, 9, 0.96),
      rgba(5, 5, 9, 0.96)
    );

    padding-block: 0;
    padding-inline: 0;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease;
  }

  .main-nav.is-open .nav-grid {
    max-height: 420px;
    opacity: 1;
  }

  .nav-grid li {
    width: 100%;
    padding: 0.4rem var(--space-md);
  }

  .nav-grid a {
    display: block;
  }


}

/* SCROLL TOP */

.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(245, 200, 115, 0.7);
  background: rgba(5, 5, 9, 0.9);
  color: var(--accent-main);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 120;
}

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

@media (max-width: 600px) {
  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

.reservation {
  padding-block: var(--space-xl);
}

.reservation-inner {
  max-width: 1100px;
  margin-inline: auto;
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--space-lg);
  align-items: start;
}

.reservation-copy {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.reservation-lead {
  font-size: var(--fs-md);
  color: var(--text-main);
  margin-bottom: var(--space-sm);
}

.reservation-details {
  list-style: none;
  font-size: var(--fs-sm);
}

.reservation-details li + li {
  margin-top: 0.25rem;
}

/* karta z formą */
.reservation-form {
  background: var(--glass-bg);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: var(--space-md);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(5, 5, 9, 0.9);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 0.75rem;
  font-size: var(--fs-sm);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(245, 200, 115, 0.8);
  box-shadow: 0 0 0 1px rgba(245, 200, 115, 0.5);
  background: rgba(5, 5, 9, 0.98);
}

.form-field textarea {
  resize: vertical;
}

.reservation-note {
  margin-top: 0.5rem;
  font-size: var(--fs-xs);
}

/* responsywność */
@media (max-width: 900px) {
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

.hero-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

/* HERO INTRO ANIMATION */
.hero-logo,
.hero-kicker,
.hero-title,
.hero-subtitle,
.hero-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* kolejność animacji */
.page-loaded .hero-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.page-loaded .hero-kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.page-loaded .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.page-loaded .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.page-loaded .hero-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

