@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Playfair+Display:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c0392b;
  --secondary: #e67e22;
  --dark: #1a0a00;
  --light: #fff8f2;
  --card-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: #333;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ===== NAVBAR ===== */
nav {
  background: rgba(26, 10, 0, 0.97);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid var(--primary);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo span {
  color: var(--secondary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

nav ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

nav ul a:hover { color: #fff; }
nav ul a:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--secondary) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 50%, #1a0a00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.25) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(192,57,43,0.45) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-img {
  width: 100%;
  max-width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  border: 4px solid rgba(230,126,34,0.4);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(192,57,43,0.3);
  animation: float-img 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes float-img {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.hero-img-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 2;
  animation: float-img 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.badge-icon {
  font-size: 1.6rem;
}

.hero-img-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.hero-img-badge small {
  font-size: 0.72rem;
  color: #888;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: rgba(230,126,34,0.2);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease;
}

.hero h1 span {
  color: var(--secondary);
  display: block;
}

.hero p {
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(192,57,43,0.5);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--secondary);
  background: rgba(230,126,34,0.1);
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: flex-start;
  margin-top: 60px;
  animation: fadeInUp 1.2s ease;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--primary);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}

.feature-item .icon {
  font-size: 1.3rem;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 80px 40px;
}

.section-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 10px;
}

.section-sub {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 48px;
}

/* ===== MENU ===== */
#menu {
  background: #fff;
  text-align: center;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 22px;
  border-radius: 20px;
  border: 2px solid #eee;
  background: transparent;
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.card-fav:hover { transform: scale(1.2); }

.card-body {
  padding: 20px;
  text-align: left;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.card-body .desc {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 14px;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.price small {
  font-size: 0.7rem;
  color: #bbb;
  font-weight: 400;
  display: block;
  text-decoration: line-through;
}

.btn-order {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-order:hover {
  opacity: 0.9;
  transform: scale(1.04);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--dark), #3d1a00);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '🥙';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: -30px;
  right: -20px;
}

.promo-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.promo-banner p {
  color: #bbb;
  margin-bottom: 28px;
}

.promo-code {
  display: inline-block;
  background: rgba(230,126,34,0.15);
  border: 2px dashed var(--secondary);
  color: var(--secondary);
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

/* ===== ORDER SECTION ===== */
#order {
  background: var(--light);
  text-align: center;
}

.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.order-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(192,57,43,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.info-text span {
  font-size: 0.82rem;
  color: #888;
}

.order-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
  margin-top: 6px;
}

.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#form-status {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

#form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}

#form-status.error {
  background: #ffebee;
  color: #c62828;
  display: block;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: #fff;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-card {
  background: var(--light);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  border: 1px solid #f0e8e0;
  transition: transform 0.2s;
}

.testi-card:hover { transform: translateY(-4px); }

.stars { color: #f39c12; font-size: 1rem; margin-bottom: 12px; }

.testi-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
}

.testi-loc {
  font-size: 0.75rem;
  color: #aaa;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 48px 60px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: flex;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #777;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #777;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid #2a1500;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #555;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav ul { gap: 16px; }
  .nav-cta { display: none; }
  section { padding: 60px 20px; }
  .hero { padding: 40px 20px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; }
  .hero-image-wrap { order: -1; }
  .hero-img { max-width: 300px; height: 300px; }
  .hero-img-glow { width: 280px; height: 280px; }
  .hero-img-badge { left: 50%; transform: translateX(-50%); bottom: -10px; white-space: nowrap; }
  .order-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-strip { gap: 24px; padding: 16px 20px; }
}
