body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #FFF5E1;
  color: #3E2723;
  scroll-behavior: smooth;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35)), url('images/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { background-size: 100%; } to { background-size: 110%; } }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #FFD166;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}
.tagline { font-size: 1.2rem; margin: 0.5rem 0 2rem; font-style: italic; }
.order-btn {
  background: #B22222;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255,209,102,0); }
  50% { box-shadow: 0 0 25px rgba(255,209,102,0.8); }
}
.order-btn:hover {
  background: #FFD166;
  color: #B22222;
  box-shadow: 0 0 25px rgba(255,209,102,0.9);
}

/* NAV */
.hero-nav { margin-top: 1.5rem; }
.hero-nav a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.hero-nav a:hover {
  background: #FFD166;
  color: #B22222;
}

/* POPUP */
.popup { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); justify-content: center; align-items: center; }
.popup:target { display: flex; }
.popup-content {
  background: #FFF5E1;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #B22222;
}

/* GRID SECTION */
.four-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 3rem 1.5rem;
}
.card {
  background: #FFDDC1;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.card:hover { transform: translateY(-5px); }

/* MAP */
.map-container { margin-top: 1rem; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.25); }
.map-container iframe { width: 100%; height: 220px; border: none; }

/* GALLERY */
.gallery-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
figure {
  text-align: center;
  transition: transform 0.3s;
}
figure:hover { transform: scale(1.05); }
figure img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
figcaption {
  margin-top: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #B22222;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* POPUPS */
.img-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.img-popup:target { display: flex; }
.img-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* REVIEWS */
blockquote {
  background: #FFF5E1;
  border-left: 5px solid #B22222;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 6px;
  max-width: 700px;
  font-style: italic;
}

/* FOOTER */
footer { background: #B22222; color: white; text-align: center; padding: 1rem; margin-top: 2rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .four-columns { grid-template-columns: 1fr; }
  figure img { width: 100%; height: auto; }
  h1 { font-size: 2.5rem; }
}
