/* ==========================================================================
   KAWIARENKA BAJKAŁ - GŁÓWNY ARKUSZ STYLÓW (CSS3)
   Ciepły, rzemieślniczy styl Bistro & Cukiernia
   ========================================================================== */

:root {
  /* Paleta kolorów */
  --primary-color: #8D5B4C;
  --primary-dark: #683B2B;
  --primary-light: #B78272;
  --accent-color: #D97736;
  --accent-hover: #BF5F22;
  --bg-cream: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-sand: #F3ECE2;
  --text-main: #2D2420;
  --text-muted: #6E615A;
  --text-light: #FAF7F2;
  --border-color: #E8DED2;
  --badge-green: #2E7D32;
  --badge-green-bg: #E8F5E9;
  
  /* Cienie i zaokrąglenia */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(45, 36, 32, 0.05);
  --shadow-md: 0 8px 24px rgba(45, 36, 32, 0.08);
  --shadow-lg: 0 16px 36px rgba(45, 36, 32, 0.12);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Typografia */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Bazowe */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typografia pomocnicza */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  background: rgba(217, 119, 54, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Przyciski */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(141, 91, 76, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(141, 91, 76, 0.45);
}

.btn-accent {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(217, 119, 54, 0.35);
}

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

.btn-outline {
  border: 2px solid var(--border-color);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.8);
}

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

.btn-white {
  background: #fff;
  color: var(--text-main);
}

.btn-white:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}

/* Pasek górny (Top bar) */
.topbar {
  background: #231C18;
  color: #D3C7C0;
  font-size: 0.86rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  color: var(--accent-color);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 125, 50, 0.2);
  color: #81C784;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

.status-badge.closed {
  background: rgba(211, 47, 47, 0.2);
  color: #E57373;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

/* Główny Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(141, 91, 76, 0.25);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.76rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Nawigacja Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 110px 0;
  background: linear-gradient(135deg, #F8F3EC 0%, #EDE2D4 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-cream), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--primary-color);
  font-style: italic;
}

.hero-description {
  font-size: 1.14rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 26px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #FFF;
}

.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #FFF;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 270px;
  border: 1px solid var(--border-color);
}

.floating-icon {
  width: 44px;
  height: 44px;
  background: var(--badge-green-bg);
  color: var(--badge-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.floating-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CECHY / WYRÓŻNIKI (FEATURES)
   ========================================================================== */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  padding: 34px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-sand);
  color: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary-color);
  color: #fff;
}

.feature-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   ZESTAW DNIA (BANNER SPECJALNY)
   ========================================================================== */
.daily-special {
  padding: 40px 0;
}

.special-banner {
  background: linear-gradient(135deg, #3A2923 0%, #201713 100%);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 46px 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.special-tag {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.special-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  margin-bottom: 14px;
  line-height: 1.25;
}

.special-desc {
  color: #D3C7C0;
  font-size: 1.02rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.special-price-box {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.price-tag {
  display: flex;
  flex-direction: column;
}

.price-sub {
  font-size: 0.8rem;
  color: #B78272;
  text-transform: uppercase;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
}

.special-banner-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.special-img {
  width: 100%;
  max-width: 360px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   MENU DNIA & AKTUALNOŚCI FACEBOOK (ZWARTE I ESTETYCZNE)
   ========================================================================== */
.daily-menu-section {
  padding: 70px 0;
  background: var(--bg-cream);
}

.daily-alert-banner {
  background: #FFF9EE;
  border: 1px solid #F0DEBE;
  border-left: 5px solid var(--accent-color);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.daily-alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: #4A3319;
  line-height: 1.5;
}

.daily-alert-content strong {
  color: var(--accent-hover);
}

.daily-alert-content a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.daily-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

/* Karta formuły obiadu */
.lunch-formula-card {
  background: #FFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.formula-header {
  margin-bottom: 20px;
}

.formula-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.25;
}

.formula-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Siatka 4 kafelków obiadu */
.formula-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.formula-box {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}

.formula-box:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.formula-box-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.formula-icon {
  font-size: 1.35rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
  flex-shrink: 0;
}

.formula-box-top h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.formula-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Pasek informacyjny na dole karty */
.formula-footer-bar {
  background: var(--bg-sand);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
}

.formula-footer-bar strong {
  color: var(--primary-color);
}

.formula-footer-bar a {
  color: var(--primary-color);
  font-weight: 700;
}

/* Karta Facebook Widget */
.fb-widget-card {
  background: #FFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.fb-widget-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.fb-brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fb-brand-badge svg {
  width: 24px;
  height: 24px;
  color: #1877F2;
}

.fb-brand-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.fb-brand-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.fb-iframe-box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F0F2F5;
  min-height: 440px;
  flex-grow: 1;
}

.fb-iframe-box iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}


/* ==========================================================================
   TORTY I CATERING
   ========================================================================== */
.cakes-section {
  padding: 90px 0;
  background: var(--bg-cream);
}

.cakes-box {
  background: #FFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.cakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cakes-steps {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--bg-sand);
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.step-text h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.step-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cakes-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cake-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 210px;
  position: relative;
}

.cake-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cake-img-card:hover img {
  transform: scale(1.06);
}

.cake-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   GALERIA ZDJĘĆ
   ========================================================================== */
.gallery-section {
  padding: 90px 0;
  background: #FFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 28, 24, 0.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFF;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 32px;
  height: 32px;
}

.gallery-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================================================
   OPINIE GOŚCI
   ========================================================================== */
.reviews-section {
  padding: 90px 0;
  background: var(--bg-sand);
}

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

.review-card {
  background: #FFF;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #F5A623;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.96rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--primary-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-info h4 {
  font-size: 0.94rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   KONTAKT & LOKALIZACJA
   ========================================================================== */
.contact-section {
  padding: 90px 0;
  background: #FFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-sand);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-content a {
  color: var(--primary-color);
  font-weight: 600;
}

.hours-table {
  width: 100%;
  margin-top: 10px;
  font-size: 0.9rem;
}

.hours-table tr td {
  padding: 4px 0;
  color: var(--text-muted);
}

.hours-table tr td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-main);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   STOPKA (FOOTER)
   ========================================================================== */
.footer {
  background: #1D1714;
  color: #A3968F;
  padding: 60px 0 28px 0;
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #FFF;
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: #FFF;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #FFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTON (SZYBKI TELEFON NA MOBILE)
   ========================================================================== */
.fab-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--accent-color);
  color: #FFF;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(217, 119, 54, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 990;
  transition: var(--transition);
}

.fab-call:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* ==========================================================================
   LIGHTBOX DLA GALERII
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSYWNOŚĆ (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .daily-layout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .cakes-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  /* 1. App-like Header & Hide Topbar */
  .topbar {
    display: none !important;
  }
  .header .container {
    height: 60px;
  }
  .brand-logo {
    gap: 8px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .brand-tagline {
    font-size: 0.65rem;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #FFF;
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .header-cta .btn {
    display: none;
  }

  /* 2. Hero Section */
  .hero {
    padding: 20px 0 30px 0;
  }
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px; /* Thumb-optimized */
    font-size: 1.05rem;
  }
  .hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding-top: 10px;
    text-align: center;
    border-top: none;
  }
  .stat-number {
    font-size: 1.25rem;
  }
  .stat-label {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  /* Edge-to-Edge Image */
  .hero-image-wrapper {
    max-width: none;
    margin: 20px -16px 0 -16px;
    width: calc(100% + 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-img-main {
    height: 320px;
    border-radius: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    border: none;
    box-shadow: none;
  }
  .hero-floating-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin: -35px auto 0 auto;
    padding: 12px 16px;
    max-width: 90%;
    z-index: 2;
    border-radius: 16px;
  }

  /* 3. Horizontal Scrolling (Carousel) */
  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -16px;
    padding: 0 16px 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .features-grid::-webkit-scrollbar {
    display: none; /* Chrome */
  }
  .feature-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
    padding: 20px 16px;
    text-align: center;
  }
  
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -16px;
    padding: 0 16px 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* General sections */
  .features, .daily-menu-section, .cakes-section, .gallery-section, .reviews-section, .contact-section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .section-header {
    margin-bottom: 20px;
  }

  /* 4. Zwarty Moduł Menu Dnia */
  .daily-alert-banner {
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 12px;
  }
  .daily-alert-content {
    font-size: 0.85rem;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .formula-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lunch-formula-card {
    padding: 16px;
    border-radius: 16px;
  }
  .formula-footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
  }
  .fb-widget-card {
    padding: 12px;
    border-radius: 16px;
  }

  /* Cakes Section */
  .cakes-box {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .step-item {
    gap: 12px;
  }
  .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  /* Contact / Footer */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .map-wrapper {
    min-height: 250px;
    border-radius: 16px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

