/* ===== BWARI KITCHEN - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@600&display=swap');

:root {
  --orange: #F97316;
  --orange-dark: #EA6A0A;
  --orange-light: #FED7AA;
  --green: #22C55E;
  --green-dark: #16A34A;
  --red: #DC2626;
  --gold: #D4A72C;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --light-gray: #F5F5F0;
  --text-dark: #1A1A1A;
  --text-gray: #6B6B6B;
  --text-light: #9CA3AF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249,115,22,0.1);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.2rem; color: var(--text-dark); }
.nav-logo-text .tagline { font-family: 'Dancing Script', cursive; font-size: 0.75rem; color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-gray); transition: var(--transition); position: relative; }
.nav-links a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: var(--transition); border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF7ED 0%, #FEFCE8 50%, #F0FDF4 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.1); color: var(--orange);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(249,115,22,0.2);
}
.hero-badge::before { content: '🍽️'; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 20px;
}
.hero-title .highlight { color: var(--orange); }

.hero-sub {
  font-size: 1.05rem; color: var(--text-gray);
  margin-bottom: 32px; line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.4); }

.btn-secondary {
  background: transparent; color: var(--text-dark);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--text-dark);
  transition: var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.hero-stats { display: flex; gap: 32px; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-gray); margin-top: 4px; }

.hero-image { position: relative; }
.hero-img-main {
  width: 100%; border-radius: 24px;
  object-fit: cover; height: 500px;
  box-shadow: var(--shadow-lg);
}

.hero-img-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.badge-icon { font-size: 2rem; }
.badge-text strong { display: block; font-size: 0.9rem; font-weight: 700; }
.badge-text span { font-size: 0.75rem; color: var(--text-gray); }

/* ===== SECTION DEFAULTS ===== */
section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.2; color: var(--text-dark); }
.section-sub { margin-top: 12px; font-size: 1rem; color: var(--text-gray); max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.divider { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin: 16px auto 0; }

/* ===== SERVICES STRIP ===== */
.services-strip { background: var(--orange); padding: 20px 5%; }
.services-strip-inner {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.service-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 500; font-size: 0.9rem; }
.service-item span { font-size: 1.2rem; }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-images { position: relative; }
.about-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-lg); }
.about-img-secondary {
  position: absolute; bottom: -24px; right: -24px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 16px; border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-text { max-width: 520px; }
.about-text .eyebrow { text-align: left; }
.about-text .section-title { text-align: left; }
.about-desc { margin-top: 16px; color: var(--text-gray); line-height: 1.8; font-size: 0.95rem; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { width: 40px; height: 40px; background: rgba(249,115,22,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.feature-text strong { display: block; font-size: 0.9rem; font-weight: 600; }
.feature-text span { font-size: 0.82rem; color: var(--text-gray); }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1200px; margin: 56px auto 0;
  background: var(--white); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-sm);
}
.stat-card { text-align: center; padding: 16px; border-right: 1px solid #F0F0F0; }
.stat-card:last-child { border-right: none; }
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--orange); }
.stat-card .label { font-size: 0.82rem; color: var(--text-gray); margin-top: 4px; }

/* ===== MENU ===== */
.menu { background: var(--white); }
.menu-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 24px; border-radius: 50px; border: 2px solid #E5E5E5;
  background: transparent; color: var(--text-gray); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.menu-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid #F0F0F0;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img { width: 100%; height: 200px; object-fit: cover; }
.menu-card-body { padding: 20px; }
.menu-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.menu-card-body p { font-size: 0.82rem; color: var(--text-gray); margin-top: 6px; line-height: 1.5; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--orange); }
.order-btn {
  background: var(--orange); color: var(--white); border: none;
  padding: 8px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.order-btn:hover { background: var(--orange-dark); }

/* ===== CATERING ===== */
.catering { background: var(--light-gray); }
.catering-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.catering-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border-top: 4px solid transparent;
}
.catering-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--orange); }
.catering-icon { font-size: 2.5rem; margin-bottom: 16px; }
.catering-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.catering-card p { font-size: 0.875rem; color: var(--text-gray); line-height: 1.7; }

.booking-form-wrap { max-width: 700px; margin: 56px auto 0; background: var(--white); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-md); }
.booking-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; text-align: center; }
.booking-form-wrap p { text-align: center; color: var(--text-gray); font-size: 0.875rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid #E5E5E5; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-family: 'Inter', sans-serif;
  color: var(--text-dark); transition: var(--transition); outline: none;
  background: var(--off-white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 15px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:first-child img, .gallery-item:nth-child(4) img { height: 320px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(249,115,22,0.85) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-gray); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-info strong { display: block; font-size: 0.875rem; font-weight: 600; }
.author-info span { font-size: 0.78rem; color: var(--text-gray); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; max-width: 1200px; margin: 0 auto; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-gray); line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.contact-item-text a, .contact-item-text span { font-size: 0.875rem; color: var(--text-gray); transition: var(--transition); }
.contact-item-text a:hover { color: var(--orange); }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid #E5E5E5; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

.contact-form-box { background: var(--off-white); border-radius: 24px; padding: 36px; }
.map-placeholder {
  width: 100%; height: 240px; background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
  border-radius: var(--radius); margin-top: 28px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--text-gray); font-size: 0.875rem; text-align: center;
}
.map-placeholder .map-icon { font-size: 2rem; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-md); text-decoration: none;
}
.float-whatsapp { background: #25D366; color: var(--white); }
.float-call { background: var(--orange); color: var(--white); }
.float-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark); color: #D1D5DB;
  padding: 60px 5% 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--white); }
.footer-brand .tagline { font-family: 'Dancing Script', cursive; color: var(--green); font-size: 0.9rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; opacity: 0.7; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; opacity: 0.7; transition: var(--transition); }
.footer-col ul a:hover { opacity: 1; color: var(--orange); }
.footer-col p { font-size: 0.85rem; opacity: 0.7; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; opacity: 0.5; flex-wrap: wrap; gap: 8px; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.4rem; font-weight: 600; color: var(--text-dark); transition: var(--transition); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; cursor: pointer; background: none; border: none; }

/* ===== SCROLL REVEAL ===== */
.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: 900px) {
  .hero-content, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-img-main { height: 300px; }
  .hero-img-badge { display: none; }
  .about-img-secondary { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
