/* ==== RESET & BASE ==== */
* { margin:0; padding:0; box-sizing:border-box; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
body { font-family:'Montserrat',sans-serif; line-height:1.6; color:#333; background:#fff; }
h1,h2,h3,h4 { font-family:'Playfair Display',serif; }
.container { max-width:1240px; margin:auto; padding:0 20px; }

/* ==== COLORS ==== */
:root {
  --red: #E30613;
  --dark: #1A1A1A;
  --light: #FFFFFF;
  --gray: #F5F5F5;
}

/* ==== HEADER ==== */
.header { background:var(--dark); color:var(--light); position:sticky; top:0; z-index:100; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:15px 0; }
.logo { display:flex; align-items:center; gap:8px; font-weight:700; font-size:1.5rem; }
.logo img { width:100px; }
.nav ul { display:flex; gap:30px; align-items:center; }
.nav a { color:var(--light); font-weight:600; transition:.3s; }
.nav a:hover, .nav a.active { color:var(--red); }
.btn-primary { background:var(--red); color:var(--light); padding:10px 25px; border-radius:50px; font-weight:600; transition:.3s; }
.btn-primary:hover { transform:scale(1.05); }
.btn-outline { border:2px solid var(--light); padding:10px 25px; border-radius:50px; }

/* ==== HERO ==== */
.hero { background:url('../assets/images/hero.jpg') center/cover no-repeat; color:var(--light); text-align:center; padding:140px 20px; }
.hero h1 { font-size:3.5rem; margin-bottom:20px; }
.hero p { max-width:700px; margin:auto; font-size:1.1rem; }

/* GALLERY PAGE SPECIFIC STYLES */
.gallery-hero {
  background: var(--red);
  color: var(--light);
  text-align: center;
  padding: 100px 20px 80px;
}

.gallery-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.gallery-hero h1 {
  font-size: 3.2rem;
  margin: 20px 0;
  line-height: 1.2;
}

.gallery-hero p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  opacity: 0.95;
}

.gallery-grid-section {
  padding: 80px 0;
  background: #fff;
}

.gallery-masonry {
  column-count: 2;
  column-gap: 20px;
  padding: 0 10px;
}

.gallery-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  display: block;
  break-inside: avoid;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

/* APP PROMO - GALLERY PAGE */
/* -------------------------------------------------
   APP PROMO – exact match to the screenshot
   ------------------------------------------------- */
.app-promo {
  background: var(--red);
  color: var(--light);
  padding: 120px 20px;
  overflow: hidden;
}
.app-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: auto;
}
.app-promo-text h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
}


.app-steps ol,
.app-steps li {
  list-style: none;
}

.app-promo-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}
.features-list {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0 0 40px;
  flex-wrap: wrap;
}
.features-list li {
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  backdrop-filter: blur(5px);
}
.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--light);
  color: var(--light);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all .3s ease;
}
.btn-outline:hover {
  background: var(--light);
  color: var(--red);
}
.btn-primary {
  background: var(--light);
  color: var(--red);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
}
.phone-mockup img {
  max-width: 480px;          
  width: 100%;               
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  transition: transform .3s ease;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .app-promo-inner { grid-template-columns: 1fr; gap: 60px; }
  .app-promo-text { text-align: center; }
  .features-list { justify-content: center; }
  .btn-group { justify-content: center; }
  .phone-mockup { order: -1; }      
  .phone-mockup img { max-width: 420px; }    /* phone on top on mobile */
}
@media (max-width: 600px) {
  .app-promo-text h2 { font-size: 2.2rem; }
  .features-list { flex-direction: column; align-items: center; }
  .phone-mockup img { max-width: 340px; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-masonry {
    column-count: 1;
  }
  
  .gallery-hero h1 {
    font-size: 2.5rem;
  }
  
  .app-promo h2 {
    font-size: 2.2rem;
  }
  
  .features-list {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}
/* ==== GRID ==== */
.grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.grid-footer { display:grid; grid-template-columns:1fr 2fr 1fr 1fr; gap:40px; }

/* ==== FORM ==== */
form { display:grid; gap:15px; }
.form-row { display:gr  id; grid-template-columns:1fr 1fr; gap:15px; }
input, textarea { padding:14px; border:1px solid #ddd; border-radius:6px; font:inherit; }
button { background:var(--red); color:var(--light); border:none; padding:16px; border-radius:50px; cursor:pointer; font-weight:600; }

/* ==== CARDS ==== */
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 5px 20px rgba(0,0,0,.1); transition:.3s; }
.card:hover { transform:translateY(-10px); }
.tilt-left { transform:rotate(-3deg); }
.tilt-right { transform:rotate(3deg); }

/* ============================================= */
/* FOOTER – PIXEL-PERFECT FINAL DESIGN           */
/* Exact fonts, margins, spacing, hover effects  */
/* ============================================= */

.footer {
  background: #fff;
  padding: 90px 0 40px;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  display:flow-root;
  align-items: flex-start;
  gap: 24px;
  
}

.footer-logo-img {
  width: 150px;
  height: 60px;               
  max-height: 70vh;   
}

.footer-brand h3 {
  font-size: 1.95rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: #000;
  letter-spacing: -0.8px;
  line-height: 1;
}

.footer-brand p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* Column Headers */
.footer-col h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 11px 0;
}

.footer-col ul li a {
  color: #777;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--red);
}

/* Social Icons */
.social-col h4 {
  margin-bottom: 18px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.social-icons img {
  width: 19px;
  height: 19px;
  filter: grayscale(100%) opacity(0.8);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: grayscale(0) opacity(1);
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 0.88rem;
  color: #999;
  margin: 70px auto 0;
  padding-top: 28px;
  border-top: 1px solid #eee;
  max-width: 1280px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-logo {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo-img {
    width: 85px;
  }
  .footer-brand h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 30px;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    margin-top: 50px;
    font-size: 0.85rem;
  }
}
/* Social Icons */
.social-col h4 {
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f0f0f0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: grayscale(0);
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin: 60px 0 0;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .logo-footer img {
    width: 900px;
  }
  .brand-text h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 30px;
  }
  .social-icons {
    justify-content: center;
  }
}
/* ============================================= */
/* HOME PAGE SPECIFIC STYLES                     */
/* ============================================= */

.hero-index {
  background: url('../assets/images/hero-home.png') center/cover no-repeat;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
.hero-index::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-content h1 { font-size: 3.2rem; margin-bottom: 16px; }
.hero-content p { font-size: 1.1rem; opacity: 0.9; }

.section-tag { color: var(--red); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.grid-about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin: 100px 0; }
.tags { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.tags li { background: #f0f0f0; padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; }

.stats-section { background: #f9f9f9; padding: 100px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.stat h3 { font-size: 3.5rem; color: var(--red); margin-bottom: 8px; }
.stat p { font-size: 1rem; color: #555; }
.stat p span { display: block; margin-top: 8px; font-size: 0.9rem; }

.services-cards { padding: 100px 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 50px; }
.service-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.service-card img { width: 100%; height: 180px; object-fit:cover; }
.service-card h4 { padding: 20px 20px 8px; font-size: 1.2rem; }
.service-card p { padding: 0 20px 20px; font-size: 0.95rem; color: #666; }

.app-steps { padding: 100px 0; background: #fff; }
.grid-app { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-steps ol { counter-reset: step; margin: 30px 0; }
.app-steps li { counter-increment: step; margin-bottom: 24px; padding-left: 40px; position: relative; }
.app-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; background: var(--red); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.app-image img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.testimonials { padding: 100px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.testimonial.main { grid-column: span 2; background: #1a1a1a; color: white; padding: 40px; border-radius: 20px; }
.testimonial { background: #f9f9f9; padding: 30px; border-radius: 16px; }
.testimonial p { font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.author { display: flex; align-items: center; gap: 12px; }
.author img { width: 48px; height: 48px; border-radius: 50%; }
.author strong { display: block; font-size: 1rem; }
.author span { font-size: 0.85rem; color: #888; }
/* ============================================= */
/* FINAL HOME PAGE – EXACT MATCH TO DESIGN       */
/* Fonts, spacing, parallax, red tags, layout   */
/* ============================================= */

/* Google Fonts – Playfair Display + Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

/* Global font reset */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* HERO – Full background with subtle parallax */
.hero-index {
  position: relative;
  height: 85vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/images/hero-home.jpg') center center / cover no-repeat;
  background-attachment: fixed; /* ← PARALLAX PANNING */
  transform: scale(1.05);
  z-index: -1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}
.hero-content {
  position: relative;
  max-width: 620px;
}
.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-content p {
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.95;
}

/* Section Tag – Red */
.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* About Snippet */
/* ============================================= */
/* HOME – CENTER TEXT IN ABOUT SECTION           */
/* ============================================= */

.home-about {
  text-align: center;
  padding: 120px 20px;
  background: #fff;
}

.home-about .section-tag {
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.home-about h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.home-about p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* TAGS (Professional chefs, etc.) */
.home-about .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.home-about .tag {
  background: #f5f5f5;
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1.5px solid #eee;
  transition: all 0.3s ease;
}

.home-about .tag:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

/* CTA BUTTON */
.home-about .btn-primary {
  display: inline-block;
  background: var(--red);
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.25);
  transition: all 0.3s ease;
}

.home-about .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(227, 6, 19, 0.35);
}

/* Stats */
.stats-section {
  background: #f9f9f9;
  padding: 100px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: left;
}
.stat h3 {
  font-size: 4.2rem;
  color: var(--red);
  font-weight: 900;
  margin: 0 0 12px;
}
.stat p {
  font-size: 1.05rem;
  color: #444;
  margin: 0;
}
.stat p span {
  display: block;
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Services Cards */
.services-cards {
  padding: 120px 0;
}
.section-header {
  text-align: left;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.8rem;
  margin: 12px 0 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card h4 {
  font-size: 1.35rem;
  margin: 24px 24px 12px;
}
.service-card p {
  font-size: 0.98rem;
  color: #666;
  margin: 0 24px 24px;
  line-height: 1.6;
}

/* App Steps */
.app-steps {
  padding: 120px 0;
  background: white;
}
.grid-app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-steps h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.app-steps > div > p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 32px;
}
.app-steps ol {
  counter-reset: step;
  padding: 0;
  margin: 32px 0;
}
.app-steps li {
  counter-increment: step;
  margin-bottom: 28px;
  padding-left: 50px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
}
.app-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--red);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.app-image img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: white;
}
.testimonials .section-header {
  text-align: left;
  margin-bottom: 60px;
}
.testimonials h2 {
  font-size: 2.8rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.testimonial.main {
  background: #1a1a1a;
  color: white;
  padding: 48px;
  border-radius: 24px;
}
.testimonial.main p {
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 32px;
}
.testimonial {
  background: #f9f9f9;
  padding: 32px;
  border-radius: 20px;
}
.testimonial p {
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
.author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.author strong {
  font-weight: 600;
  font-size: 1.05rem;
}
.author span {
  font-size: 0.9rem;
  color: #888;
}
/* ============================================= */
/* TRANSPARENT HEADER + BIG LOGO                 */
/* ============================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.transparent-header {
  background: transparent !important;
  backdrop-filter: none;
}

.transparent-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BIG LOGO */
.transparent-header .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: white;
}

.transparent-header .logo img {
  width: 130px;           /* ← BIGGER LOGO */
  height: auto;/* white logo on dark hero */
}

.transparent-header .logo span {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* NAV TEXT – WHITE */
.transparent-header .nav a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.transparent-header .nav a:hover,
.transparent-header .nav a.active {
  color: #ffcccc;
}

/* CTA BUTTON – RED ON TRANSPARENT */
.transparent-header .btn-primary {
  background: var(--red);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.transparent-header .btn-primary:hover {
  background: #c20510;
  transform: translateY(-2px);
}

/* ADD SOLID BG ON SCROLL (optional smooth effect) */
.header.scrolled {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header.scrolled .logo img {
  width: 56px;
}

/* ============================================= */
/* HERO – FANCY TEXT BOX (centered, elegant)    */
/* ============================================= */

.hero-index {
  position: relative;
  height: 85vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/images/hero-home.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.05);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
}

/* FANCY TEXT BOX */
.hero-text-box {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px 48px;
  max-width: 680px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  animation: fadeInUp 1s ease-out;
}

.hero-text-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: white;
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text-box p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
/* ============================================= */
/* ABOUT PAGE – EXACT DESIGN MATCH               */
/* Fonts, layout, text wrap, red tags, spacing   */
/* ============================================= */

.about-hero {
  padding: 140px 0 80px;
  background: #fff;
}
.grid-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-intro h1 {
  font-size: 3.2rem;
  margin: 16px 0 20px;
  line-height: 1.2;
}
.grid-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}
.intro-images {
  position: relative;
}
.img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.img-badges {
  position: absolute;
  top: 20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.img-badges img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* OUR STORY */
/* ============================================= */
/* OUR STORY – FULL BACKGROUND IMAGE (no grey)   */
/* ============================================= */

/* ============================================= */
/* OUR STORY – IMAGE SCROLLS WITH CONTENT        */
/* No fixed parallax – moves when you scroll     */
/* ============================================= */

.our-story {
  position: relative;
  padding: 160px 0;
  color: white;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  background: url('../assets/images/about-story-bg.png') center center / cover no-repeat;
  background-attachment: scroll; /* ← SCROLLS WITH PAGE */
}

.our-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}

.story-box {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-box .section-tag {
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

.story-box h2 {
  font-size: 2.9rem;
  margin: 18px 0 26px;
  line-height: 1.2;
  font-weight: 900;
}

.story-box p {
  font-size: 1.12rem;
  line-height: 1.8;
  opacity: 0.96;
  margin-bottom: 36px;
}

.story-box .btn-primary {
  background: var(--red);
  color: white;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 6px 22px rgba(227, 6, 19, 0.35);
  transition: all 0.3s ease;
}

.story-box .btn-primary:hover {
  background: #d10615;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(227, 6, 19, 0.4);
}

/* WHY CHOOSE US */
/* ============================================= */
/* WHY CHOOSE US – 1 BIG IMAGE + 4 SMALL CARDS   */
/* Exact match to your design                    */
/* ============================================= */

.why-choose {
  padding: 120px 0;
  background: #fff;
}

.why-choose .section-header {
  text-align: left;
  margin-bottom: 60px;
}

.why-choose .section-header h2 {
  font-size: 2.8rem;
  margin: 12px 0 16px;
}

.why-choose .section-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 680px;
}

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

.why-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  height: 480px;               
  max-height: 70vh;           
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  object-position: top;     /* keeps focus on chef's face */
  display: block;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-card {
  background: #f9f9f9;
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.why-card .card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.why-card h4 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.why-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* SPECIAL CARDS */
.why-card.red {
  background: var(--red);
  color: white;
}

.why-card.red h4,
.why-card.red p {
  color: white;
}

.why-card.dark {
  background: #1a1a1a;
  color: white;
}

.why-card.dark h4,
.why-card.dark p {
  color: white;
}
@media (max-width: 992px) {
  .why-image {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .why-image {
    height: 320px;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
  .why-choose .section-header h2 {
    font-size: 2.2rem;
  }
}
/* OUR VALUES */
/* ============================================= */
/*      padidng and styling          */
/* ============================================= */

.our-values {
  padding: 120px 0;
  background: #fff;
}

.our-values .section-header {
  text-align: left;
  margin-bottom: 60px;
}

.our-values .section-header h2 {
  font-size: 2.8rem;
  margin: 12px 0 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.values-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.value-card {
  background: #f9f9f9;
  padding: 28px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  background: #fff;
}

.value-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(7000%) hue-rotate(0deg) brightness(90%) contrast(110%); /* red */
}

.value-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.values-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  height: 480px;               
  max-height: 70vh;
}

.values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .values-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .values-cards {
    grid-template-columns: 1fr;
  }
  .our-values .section-header h2 {
    font-size: 2.2rem;
  }
}
/* FOUNDER */
.founder {
  padding: 100px 0;
  background: var(--red);
  color: white;
}
.grid-founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.founder-image {
  position: relative;
}
.founder-image img {
  width: 100%;
  border-radius: 20px;
}
.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}
.founder-text h3 {
  font-size: 2.4rem;
  margin: 0 0 20px;
}
.founder-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.btn-outline {
  display: inline-block;
  border: 2px solid white;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: white;
  color: var(--red);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-intro, .grid-founder, .features-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .img-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  .img-badges img {
    width: 70px;
    height: 70px;
  }
}
/* Subtle entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-text-box {
    padding: 32px 36px;
    border-radius: 20px;
  }
  .hero-text-box h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .hero-text-box {
    padding: 28px 24px;
    border-radius: 16px;
  }
  .hero-text-box h1 {
    font-size: 2.5rem;
  }
  .hero-text-box p {
    font-size: 1rem;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 3rem; }
  .grid-about, .grid-app, .stats-grid, .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.main { grid-column: 1; }
  .app-steps li { padding-left: 45px; }
}
@media (max-width: 600px) {
  .hero-content h1 { font-size: 2.5rem; }
  .section-header h2, .about-snippet h2, .app-steps h2 { font-size: 2.2rem; }
  .stat h3 { font-size: 3rem; }
}
@media (max-width: 992px) {
  .grid-about, .grid-app, .stats-grid, .cards-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials .main { grid-column: 1; }
}
/* ==== RESPONSIVE ==== */
@media (max-width:992px) {
  .grid, .grid-footer { grid-template-columns:1fr; }
  .cards { grid-template-columns:1fr; }
  .tilt-left, .tilt-right { transform:none; }
}
@media (max-width:600px) {
  .hero h1 { font-size:2.5rem; }
  .form-row { grid-template-columns:1fr; }
}
/* ============================================= */
/* SERVICES PAGE          */
/*   new info coming bruh */
/* ============================================= */

/*  */
/* ============================================= */
/* SERVICES          */
/*  */
/* ============================================= */

.services-hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/images/services-hero.png') center center / cover no-repeat;
  background-attachment: fixed; /* parallax */
  z-index: -1;
  transform: scale(1.05);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.58); /* dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content .section-tag {
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  margin: 18px 0 22px;
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.96;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}
/* INTRO */
.services-intro {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}
.services-intro .section-tag {
  color: var(--red);
}
.services-intro h2 {
  font-size: 2.8rem;
  margin: 16px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICE BLOCK */
.service-block {
  padding: 100px 0;
  background: #f9f9f9;
}
.grid-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-text .section-tag {
  color: var(--red);
}
.service-text h3 {
  font-size: 2.2rem;
  margin: 12px 0 20px;
}
.service-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.service-list li {
  font-size: 1.05rem;
  margin: 12px 0;
  position: relative;
  padding-left: 28px;
}
.service-list li::before {
  content: '•';
  color: var(--red);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.service-list strong {
  color: #000;
}
.service-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  height: 480px;               /* ← NEW: CONTROL HEIGHT */
  max-height: 70vh;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reverse .grid-service {
  direction: rtl;
}
.reverse .service-text {
  direction: ltr;
  text-align: left;
}

/* ============================================= */
/* ADDITIONAL SERVICES */
/* ============================================= */

.additional-services {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}

.additional-services .section-tag {
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.additional-services h2 {
  font-size: 2.6rem;
  margin: 16px 0 50px;
  font-weight: 900;
}

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

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  height: 300px;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY + WHITE TEXT */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.75));
  z-index: 1;
}

.service-card h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 28px;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card h4 {
    font-size: 1.05rem;
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card h4 {
    font-size: 1rem;
    padding: 20px 16px;
  }
}
/* ============================================= */
/* CONTACT HERO –      */
/* ============================================= */

.contact-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/images/contact-hero.png') center bottom / cover no-repeat;
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 5.8rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
  text-transform: none;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 44px;
  opacity: 0.94;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT BUTTON */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  border: 1.8px solid rgba(255, 255, 255, 0.28);
  transition: all 0.35s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}

.contact-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 4.2rem;
  }
  .hero-content p {
    font-size: 1.15rem;
  }
  .contact-btn {
    padding: 14px 32px;
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 3.2rem;
    letter-spacing: -0.8px;
  }
  .hero-content p {
    font-size: 1.05rem;
  }
  .contact-btn {
    padding: 12px 26px;
    font-size: 1rem;
  }
}
/* CONTACT SECTION */
.contact-section {
  padding: 120px 0;
  background: #fff;
}
.grid-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag {
  color: var(--red);
}
.contact-info h2 {
  font-size: 2.8rem;
  margin: 16px 0 20px;
  line-height: 1.2;
}
.contact-info p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details {
  list-style: none;
  padding: 0;
}
.contact-details li {
  font-size: 1.05rem;
  margin: 16px 0;
  display: flex;
  align-items: center;
}
.contact-details li span {
  font-weight: 600;
  color: #000;
  margin-right: 12px;
  min-width: 60px;
}
.contact-details a {
  color: var(--red);
  text-decoration: none;
}
.contact-details a:hover {
  text-decoration: underline;
}

/* FORM */
.contact-form form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9f9f9;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  justify-self: start;
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 0;
  background: #f9f9f9;
  text-align: center;
}
.testimonials .section-tag {
  color: var(--red);
}
.testimonials h2 {
  font-size: 2.8rem;
  margin: 16px 0 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testi-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transform: rotate(0deg);
  transition: transform 0.4s ease;
}
.testi-card:hover {
  transform: translateY(-12px) rotate(-1deg);
}
.testi-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.testi-card h4 {
  font-size: 1.25rem;
  margin: 20px 0 12px;
  font-weight: 700;
}
.testi-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  padding: 0 24px 28px;
  margin: 0;
}

/* CARD COLORS */
.testi-card.dark {
  background: #1a1a1a;
  color: white;
}
.testi-card.dark h4,
.testi-card.dark p {
  color: white;
}
.testi-card.light {
  background: #fff;
}
.testi-card.red {
  background: var(--red);
  color: white;
}
.testi-card.red h4,
.testi-card.red p {
  color: white;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-card:hover {
    transform: translateY(-8px);
  }
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info h2,
  .testimonials h2 {
    font-size: 2.2rem;
  }
}

/* ============================================= */
/* TESTIMONIALS  */
/* ============================================= */

.testimonials-stylish {
  padding: 120px 0;
  background: #fafafa;
  text-align: center;
}

.testi-header .section-tag {
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.testi-header h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #111;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.testi-card {
  background: white;
  padding: 40px 32px 36px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.testi-card:hover::before {
  opacity: 1;
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  opacity: 0.12;
  position: absolute;
  top: 20px;
  left: 24px;
  pointer-events: none;
  user-select: none;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin: 50px 0 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
  transition: border 0.3s ease;
}

.testi-card:hover .author img {
  border-color: var(--red);
}

.author h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.author span {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testi-header h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .testi-card {
    padding: 32px 24px;
  }
  .quote-icon {
    font-size: 5rem;
    top: 16px;
    left: 18px;
  }
  .author img {
    width: 48px;
    height: 48px;
  }
}
/* ============================================= */
/* MENUS PAGE      */
/* ============================================= */

.menu-hero {
  background: url('../assets/images/menu-hero.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
}
.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 1;
}
.menu-hero > .container { position: relative; z-index: 2; }
.menu-hero h1 { font-size: 5.5rem; font-weight: 900; margin-bottom: 20px; }
.menu-hero p { font-size: 1.6rem; max-width: 900px; margin: 0 auto 40px; font-weight: 500; line-height: 1.5; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.menu-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.menu-grid img:hover {
  transform: scale(1.05);
}
.finger-foods {
  padding: 100px 0 140px;
  background: white;
  text-align: center;
  margin-top: 0 !important;
}
.finger-foods h1 {
  font-size: 5.2rem;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 900;
}
.finger-foods h1 span {
  display: block;
  font-size: 4rem;
  color: var(--red);
  font-weight: 800;
  margin-top: 10px;
}
.finger-foods > .container > p {
  font-size: 1.45rem;
  max-width: 960px;
  margin: 0 auto 70px;
  color: #444;
  line-height: 1.7;
  font-weight: 500;
}
.options-list {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.2);
}

.options-list strong {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 20px;
  color: var(--red);
}

.options-list ul {
  columns: 3;
  gap: 50px;
  list-style: disc;
  padding-left: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

.options-list .etc {
  margin-top: 24px;
  font-style: italic;
  color: var(--red);
  font-weight: 600;
  text-align: center;
}

/* MENU OPTIONS */
.menu-options {
  padding: 140px 0;
  text-align: center;
  background: #fff;
}

.menu-options h2 {
  font-size: 3.5rem;
  margin-bottom: 70px;
  font-weight: 900;
  color: #111;
}

.options-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.option-card {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  width: 300px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-8px);
}

.option-card .icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--red);
}

.option-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #111;
  font-weight: 800;
}

.option-card p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

/* BRAAI CTA */
.braai-cta {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-braai {
  background: var(--red);
  color: white;
  padding: 28px 48px;
  border-radius: 28px;
  font-size: 1.3rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(227,6,19,0.3);
  transition: transform 0.3s ease;
  font-weight: 700;
}

.btn-braai:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(227,6,19,0.4);
}

.btn-braai.red {
  background: #b00; /* darker red */
}

.btn-braai span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 8px;
  opacity: 0.9;
}

/* SHISANYAMA */
.shisanyama {
  padding: 140px 0;
  background: #f9f9f9;
  text-align: center;
}

.shisanyama h2 {
  font-size: 3.8rem;
  margin-bottom: 24px;
  font-weight: 900;
  color: #111;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 70px;
  color: #555;
}

.tagline strong {
  color: var(--red);
  font-weight: 800;
}

.shisa-grid, .shisa-continued {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 90px;
}

.shisa-item, .shisa-cont-item {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.shisa-item:hover, .shisa-cont-item:hover {
  transform: translateY(-8px);
}

.shisa-item img, .shisa-cont-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.shisa-item h3, .shisa-cont-item h3 {
  font-size: 1.6rem;
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 800;
}

.shisa-item ul, .shisa-cont-item ul {
  padding-left: 24px;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

.continued {
  font-size: 2.4rem;
  margin: 80px 0 40px;
  font-weight: 900;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .menu-hero h1 {
    font-size: 3.5rem;
  }
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .options-cards {
    flex-direction: column;
    align-items: center;
  }
  .shisa-grid, .shisa-continued {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .menu-hero h1 {
    font-size: 2.8rem;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .btn-braai {
    padding: 20px 30px;
    font-size: 1.1rem;
  }
  .continued {
    font-size: 2rem;
  }
}
/* ==== SIMPLE TRANSPARENT HEADER (NO MOBILE MENU) ==== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.transparent-header {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 130px;
  height: auto;
}

.nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--red);
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 12px 30px;
  border-radius: 2px solid var(--red);
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(227,6,19,0.4);
}

/* Solid background when scrolling */
/* ——————— HEADER WHEN SCROLLED – CLEAN & ELEGANT ——————— */
.header.scrolled {
  background: rgba(0, 0, 0, 0.65);        
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;                       
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.header.scrolled .logo img {
  width: 130px !important;   
  transition: width 0.4s ease;
}


.header.scrolled .nav a {
  font-size: 1rem;
}

.header.scrolled .btn-primary {
  padding: 10px 24px;
  font-size: 0.95rem;
}

.header.scrolled {
  background: rgba(15, 15, 15, 0.36);     
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
/* ==================== MOBILE MENU – FINAL & GORGEOUS (SEE-THROUGH) ==================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: white;
  margin: 6px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Hamburger → X */
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scale(0.1); }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 992px) {
  .hamburger { 
    display: block; 
  }

  
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.12);      /* ← Very light white overlay */
    backdrop-filter: blur(20px);                /* ← Strong glass blur */
    -webkit-backdrop-filter: blur(20px);        /* Safari support */
    padding: 130px 20px 60px;
    text-align: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav ul {
    flex-direction: column;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }

  .nav a {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    display: block;
    padding: 12px 0;
    text-shadow: 0 3px 15px rgba(0,0,0,0.6);
    transition: all 0.35s ease;
  }

  .nav a:hover {
    color: var(--red);
    transform: translateY(-4px);
  }

  /* Underline animation */
  .nav a::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 12px auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .nav a:hover::after {
    transform: scaleX(1);
  }

  /* Contact button – stands out beautifully */
  .nav .btn-primary {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 55px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--red);
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(227, 6, 19, 0.5);
    transition: all 0.3s ease;
  }
  .nav .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(227, 6, 19, 0.6);
  }
}
/* ==================== FOOTER LOGO – BEAUTIFULLY RESPONSIVE ==================== */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-img,
.footer-logo img {
  height: auto;
  transition: all 0.4s ease;
}

/* Desktop & tablets – full proud size */
@media (min-width: 993px) {
  .footer-logo-img,
  .footer-logo img {
    width: 220px;        
  }
}

/* Medium tablets */
@media (max-width: 992px) {
  .footer-logo-img,
  .footer-logo img {
    width: 190px;
  }
}

/* Mobile phones – still beautiful, never tiny */
@media (max-width: 768px) {
  .footer-logo-img,
  .footer-logo img {
    width: 170px;
  }
}

@media (max-width: 480px) {
  .footer-logo-img,
  .footer-logo img {
    width: 150px;           
  }
}


@media (max-width: 360px) {
  .footer-logo-img,
  .footer-logo img {
    width: 140px;
  }
}


.footer-brand p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: #ccc;
}

@media (max-width: 480px) {
  .footer-brand p {
    font-size: 0.95rem;
  }
}
