/* ===== HIDDEN ===== */
.hidden {
  display: none !important;
}

/* ===== WRAPPER ===== */
.info-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 2rem;
  align-items: stretch;
  box-sizing: border-box;
}

.schedule-box,
.location-box,
.menu-box {
  flex: 1 1 400px;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* ===== SCHEDULE ===== */
.schedule-box {
  padding: 34px 24px;
  background: #e1dfdb;
  border: 3px solid #431d2a;
  border-radius: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: left;
}

.schedule-box h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.schedule-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  margin-top: 1.2rem;
}

.schedule-section-title:first-of-type {
  margin-top: 0;
}

.schedule-section-title::before {
  display: none;
}

.schedule-section-title::after {
  content: "";
  flex: 1;
  height: 0;
  border-bottom: 1px solid rgba(67,29,42,0.3);
}

.schedule-section-title span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #431d2a;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
}

.schedule-item {
  display: flex;
  padding: 8px 0 8px 0.5rem;
  margin: 0;
  font-size: 1.2rem;
  color: #431d2a;
}

.schedule-time {
  width: 80px;
  font-weight: 600;
  opacity: 0.7;
  flex-shrink: 0;
}

.schedule-text {
  flex: 1;
}

/* ===== LOCATION ===== */
.location-box {
  padding: 34px 36px;
  background: #e1dfdb;
  border: 3px solid #431d2a;
  border-radius: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
}

.location-box h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.location-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.location-box p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: #6b2e3f;
  color: #f4e9ec;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  margin-top: auto;
}

.map-btn:hover {
  background: #8a3a52;
  transform: translateY(-2px);
}

/* ===== MENU ===== */
.menu-box {
  padding: 34px 24px;
  background: #e1dfdb;
  border: 3px solid #431d2a;
  border-radius: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu-box h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.menu-box .schedule-section-title {
  margin-top: 1.2rem;
  margin-bottom: 0.75rem;
}

.menu-item {
  padding: 4px 0 4px 0.5rem;
  margin: 0;
  font-size: 1.2rem;
  color: #431d2a;
  text-align: left;
  line-height: 1.3;
}

/* ===== DODATKOWE INFORMACJE ===== */
.extra-info-box {
  flex: 1 1 400px;
  max-width: 100%;
  margin: 0;
  padding: 34px 36px;
  background: #e1dfdb;
  border: 3px solid #431d2a;
  border-radius: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  box-sizing: border-box;
}

.extra-info-box h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 3rem;
  font-family: 'Playfair Display', serif;
  color: #431d2a;
}

.extra-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 1.5rem;
  align-items: start;
}

.extra-info-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  align-self: start;
}

.extra-info-icon {
  width: 52px;
  height: 52px;
  background: #431d2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e1dfdb;
  flex-shrink: 0;
}

.extra-info-icon svg {
  width: 26px;
  height: 26px;
}

.extra-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #431d2a;
}

.extra-info-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #431d2a;
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    margin-bottom: 0;
  }

  .schedule-box,
  .location-box,
  .menu-box,
  .extra-info-box {
    max-width: 100%;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 28px 24px;
    box-sizing: border-box;
    /* Subtelny separator między sekcjami zamiast ramki */
    border-bottom: 2px solid rgba(67, 29, 42, 0.2);
  }

  .schedule-section-title::after {
    display: none;
  }

  .extra-info-box {
    padding: 28px 24px;
  }


}

@media (max-width: 480px) {
  .schedule-box,
  .location-box,
  .menu-box,
  .extra-info-box {
    padding: 24px 18px;
  }

  .schedule-section-title span {
    font-size: 1.3rem;
  }

  .schedule-item {
    font-size: 1rem;
    padding: 2px 0 2px 0.5rem;
    line-height: 1.3;
  }
  
  .schedule-time {
    width: 55px;
  }

  .menu-item {
    font-size: 1rem;
  }

  .map-wrapper iframe {
    height: 240px;
  }

  .schedule-box h2,
  .location-box h2,
  .menu-box h2,
  .extra-info-box h2 {
    font-size: 2rem;
  }

  .location-box h3 {
    font-size: 1.2rem;
  }

  .extra-info-grid {
    grid-template-columns: 1fr;
  }

  .extra-info-icon {
    width: 44px;
    height: 44px;
  }

  .extra-info-icon svg {
    width: 22px;
    height: 22px;
  }
}