body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f3eadf;
  color: #2b1d0e;
  scroll-behavior: smooth;
}

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(135deg, #c0392b 0%, #8e2020 100%);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: bannerPulse 3s ease-in-out infinite;
}
.announcement-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: bannerShine 4s infinite;
}
.announcement-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.announcement-icon {
  font-size: 1.5rem;
  animation: iconPulse 1s ease-in-out infinite;
}
.announcement-text {
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.4;
}
.countdown {
  display: flex;
  gap: 10px;
}
.countdown-item {
  background: rgba(0,0,0,0.3);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  min-width: 50px;
}
.countdown-item span {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
}
.countdown-item small {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.8;
}
@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(192,57,43,0.3); }
  50% { box-shadow: 0 2px 20px rgba(192,57,43,0.6); }
}
@keyframes bannerShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  position: sticky;
  top: 0;
  z-index: 100;
}
header h1 { font-family: 'Great Vibes', cursive; color:#c0392b; font-size:2.5rem;}
header nav a {
  margin-left: 15px;
  font-weight: bold;
  color: #2b1d0e;
}
header nav a:hover { color: #e74c3c; }

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  background: url('wloska-sceneria.jpg') center/cover no-repeat;
  position: absolute; inset:0;
  animation: zoom 20s infinite alternate;
}
.hero-overlay {
  position: absolute; inset:0; background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative; z-index: 1; color: #fff;
  animation: fadeIn 2s ease-in-out;
}
.hero-content h1 { font-size:3rem; margin:0; }
.hero-content p { font-size:1.2rem; margin:10px 0 20px; }
.hero-buttons button {
  margin:5px; padding:12px 24px;
  border:none; border-radius:10px;
  font-size:1rem; cursor:pointer; transition: all 0.3s;
}
.hero-buttons button:first-child { background:#c0392b; color:#fff; }
.hero-buttons button:first-child:hover { background:#e74c3c; transform:scale(1.05);}
.hero-buttons button:last-child { background: rgba(255,255,255,0.8);}
.hero-buttons button:last-child:hover { background:#fff; transform:scale(1.05); }

@keyframes zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
@keyframes fadeIn {
  0% { opacity:0; transform:translateY(20px); }
  100% { opacity:1; transform:translateY(0); }
}

.menu { padding:60px 20px; text-align:center;}
.menu h2 { font-size:2.5rem; margin-bottom:40px; color:#c0392b; }
.pizza-container { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:40px;}
.pizza-wrapper { position: relative; }
.pizza-wrapper img { width:300px; border-radius:15px; box-shadow:0 10px 20px rgba(0,0,0,0.3); }
.steam {
  position:absolute; top:-20px; left:50%; transform:translateX(-50%);
  width:60px; height:60px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
  border-radius:50%;
  animation: steamRise 2s infinite;
}
@keyframes steamRise {
  0% { transform: translateX(-50%) translateY(0) scale(1); opacity:0.5;}
  50% { transform: translateX(-50%) translateY(-20px) scale(1.2); opacity:0.7;}
  100% { transform: translateX(-50%) translateY(-40px) scale(1.4); opacity:0;}
}

.pizza-info { max-width:400px; text-align:left;}
.pizza-info h3 { color:#e67e22; }
.pizza-info ul { list-style:none; padding:0; margin:10px 0; }
.pizza-info ul li { margin:5px 0; }

.pizza-info button {
  margin-top:10px; padding:10px 20px;
  border:none; border-radius:10px;
  background:#c0392b; color:#fff; cursor:pointer;
  transition: transform 0.3s;
}
.pizza-info button:hover { transform:scale(1.05); background:#e74c3c; }

.story { background:#2b1d0e; color:#f3eadf; padding:60px 20px; display:flex; justify-content:center; gap:40px; flex-wrap:wrap;}
.person { text-align:center; max-width:250px; }
.person img { width:180px; border-radius:50%; box-shadow:0 8px 16px rgba(0,0,0,0.2);}
.person h3 { margin-top:10px; color:#e67e22;}

.location { text-align:center; padding:60px 20px; }
.location a { text-decoration:none; color:#c0392b; font-weight:bold; }

footer { text-align:center; padding:20px; background:#1a1108; color:#f3eadf; }

.cart-modal {
  display: none;
  position: fixed; inset:0;
  background: rgba(0,0,0,0.6);
  justify-content:center; align-items:center; z-index:200;
}
.cart-content {
  background:#f3eadf; padding:30px; border-radius:20px; text-align:center;
  max-width:350px; width:90%;
}
.cart-content button {
  margin-top:10px; padding:10px 20px; border:none; border-radius:10px; cursor:pointer; font-weight:bold;
}
.cart-content button:first-child { background:#c0392b; color:#fff; }
.cart-content button:last-child { background: rgba(0,0,0,0.1);}
/* Historia Modal */
.story-modal {
  display: none;
  position: fixed;
  inset:0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 60px 20px;
  z-index: 300;
  animation: fadeInModal 0.5s ease forwards;
}
.story-content {
  background: #f3eadf;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  padding: 30px 40px;
  position: relative;
  transform: translateY(-50px);
  animation: slideDown 0.5s ease forwards;
}
.story-content h2 { color: #c0392b; margin-top:0; font-size:2rem; }
.story-content .story-text { margin-top:20px; line-height:1.8; font-size:1.1rem; }

.close-btn {
  position: absolute;
  top:15px;
  right:20px;
  background:none;
  border:none;
  font-size:2rem;
  cursor:pointer;
  color:#c0392b;
}
.close-btn:hover { color:#e74c3c; }

@keyframes fadeInModal { from { opacity:0; } to { opacity:1; } }
@keyframes slideDown { from { transform: translateY(-50px); opacity:0; } to { transform: translateY(0); opacity:1; } }
