body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  transition: background 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
  background: #000;
  padding: 14px 40px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
}

.nav-center {
  display: flex;
  gap: 30px;
}

.nav-center a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn-order {
  border: 1px solid #fff;
  padding: 10px 22px;
  color: #fff;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
  url("../img/kmk.hero.png") center/cover no-repeat;
  position: relative;
}

.hero-content {
  position: absolute;
  bottom: 18%;
  left: 8%;
  color: #fff;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
}

/* INTRO */
.intro-box {
  margin-top: -80px;
  padding: 120px 0;
  background: #f3f3f3;
}


.intro-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 50px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.intro-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #888;
}

.intro-card h2 {
  font-family: 'Playfair Display', serif;
  margin: 15px 0;
}

.toggle-hours {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.toggle-hours:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #000 0%, #222 100%);
}

.toggle-hours:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.toggle-hours:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.4);
  outline-offset: 3px;
}

/* INFO PANEL */
.info-panel {
  padding: 100px 0;
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  color: #fff;
}



.info-header h4,
.info-card p,
.info-card a,
.today {
  color: #fff;
}

.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  padding: 20px; /* dodajemy padding */
  margin-bottom: 20px; /* oddech między kartami */
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0; /* więcej miejsca wewnątrz */
  border-bottom: 1px solid rgba(255,255,255,0.15);
}


.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.hours-list.open {
  max-height: 300px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* OPINIE */
.opinion {
  opacity: 0;
  transform: translateY(10px);
  transition: all .6s ease;
}

.opinion.show {
  opacity: 1;
  transform: translateY(0);
}

/* FEATURES */
.features {
  background: linear-gradient(180deg, #f7f7f7 0%, #ededed 100%);
  padding: 120px 0;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  padding: 40px 30px;

  height: 100%;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: transform .35s ease, box-shadow .35s ease;
}

.feature-card img {
  margin-bottom: 20px;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  opacity: .75;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}




/* MAP + FOOTER */
.map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}


.map-section {
  padding: 80px 0;
  background-color: #fff;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px; /* ← WYŻSZA, ale nie przesadzona */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.footer-socials a:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.footer-socials a:hover img {
  filter: none;
}

