/* =========================================================
   M.R. CATERERS — Design tokens
   Palette: Oxblood #6B1024, Gold #C9A24B, Saffron #D98E2B,
            Ivory #FBF6EE, Charcoal #2B2118, Deep Green #2F4A3C
   Display: 'Cormorant Garamond' / 'Marcellus'
   Body:    'Mukta' (Indian-vernacular-friendly grotesque)
   Signature: hand-drawn paisley divider motif (mehendi-card echo)
   ========================================================= */

:root{
  --oxblood: #6B1024;
  --oxblood-dark: #4A0A19;
  --gold: #C9A24B;
  --gold-light: #E8D2A0;
  --saffron: #D98E2B;
  --ivory: #FBF6EE;
  --ivory-2: #F3EADA;
  --charcoal: #2B2118;
  --green: #2F4A3C;
  --font-display: 'Cormorant Garamond', 'Marcellus', serif;
  --font-heading: 'Marcellus', serif;
  --font-body: 'Mukta', sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
}
h1,h2,h3,h4,.font-display{
  font-family: var(--font-display);
  color: var(--oxblood-dark);
  font-weight: 700;
}
h5,h6{font-family: var(--font-heading);}
a{color: var(--oxblood); text-decoration:none;}
a:hover{color: var(--saffron);}
::selection{background: var(--gold-light); color: var(--oxblood-dark);}
:focus-visible{outline: 3px solid var(--saffron); outline-offset: 2px;}

.eyebrow{
  font-family: var(--font-heading);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  font-size: .8rem;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}
.eyebrow::before{
  content:"";
  width: 26px; height: 2px;
  background: var(--saffron);
  display:inline-block;
}

.section-title{
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: .5rem;
}
.section-sub{
  color:#6b5c4a;
  max-width: 620px;
}

/* ---------- Signature paisley divider ---------- */
.paisley-divider{
  display:flex; align-items:center; justify-content:center;
  gap: 14px; margin: 1.1rem 0 2.2rem;
}
.paisley-divider .line{ height:1px; width:60px; background: var(--gold); opacity:.6; }
.paisley-divider svg{ width:26px; height:26px; fill: var(--gold); }

/* ---------- Topbar ---------- */
.topbar{
  background: var(--oxblood-dark);
  color: var(--ivory-2);
  font-size: .85rem;
}
.topbar-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding: 7px 0;
}
.topbar a{ color: var(--ivory-2); margin-left: 18px; }
.topbar a:hover{ color: var(--gold-light); }
.topbar-left i, .topbar-right i{ color: var(--gold); margin-right:4px; }

/* ---------- Nav ---------- */
.main-nav{
  background: var(--ivory);
  border-bottom: 1px solid rgba(107,16,36,.1);
  padding: .6rem 0;
}
.navbar-brand{ display:flex; align-items:center; gap:.6rem; }
.brand-mark{
  font-family: var(--font-heading);
  background: var(--oxblood);
  color: var(--gold-light);
  width:44px; height:44px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 1rem; letter-spacing: .05em;
  border: 2px solid var(--gold);
}
.brand-text{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--oxblood-dark);
  font-weight: 700;
}
.brand-text em{ font-style: normal; color: var(--saffron); }
.main-nav .nav-link{
  font-family: var(--font-heading);
  color: var(--charcoal);
  margin: 0 10px;
  padding: 8px 2px !important;
  border-bottom: 2px solid transparent;
  transition: all .2s ease;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active{
  color: var(--oxblood);
  border-bottom-color: var(--gold);
}
.btn-enquire{
  background: var(--oxblood);
  color: var(--ivory) !important;
  border: 1px solid var(--oxblood);
  border-radius: 999px;
  padding: 9px 22px !important;
  font-family: var(--font-heading);
  letter-spacing:.03em;
  transition: all .25s ease;
}
.btn-enquire:hover{
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--oxblood-dark) !important;
  transform: translateY(-1px);
}

/* ---------- Buttons ---------- */
.btn-primary-gold{
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border: none;
  color: var(--oxblood-dark);
  font-family: var(--font-heading);
  padding: 12px 30px;
  border-radius: 999px;
  letter-spacing: .03em;
  box-shadow: 0 8px 20px rgba(201,162,75,.35);
  transition: all .25s ease;
}
.btn-primary-gold:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,162,75,.45); color: var(--oxblood-dark); }
.btn-outline-cream{
  border: 1.5px solid var(--ivory);
  color: var(--ivory);
  font-family: var(--font-heading);
  padding: 11px 28px;
  border-radius: 999px;
  transition: all .25s ease;
}
.btn-outline-cream:hover{ background: var(--ivory); color: var(--oxblood-dark); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(201,162,75,.18), transparent 55%),
    linear-gradient(150deg, var(--oxblood-dark) 0%, var(--oxblood) 55%, #7c1730 100%);
  color: var(--ivory);
  overflow:hidden;
  padding: 90px 0 110px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.35;
  pointer-events:none;
}
.hero .eyebrow{ color: var(--gold-light); }
.hero .eyebrow::before{ background: var(--gold-light); }
.hero h1{
  color: var(--ivory);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.12;
}
.hero h1 span{ color: var(--gold-light); font-style: italic; }
.hero p.lead{ color: #E9D9CB; max-width: 540px; }
.hero-stats{
  display:flex; gap: 28px; flex-wrap:wrap; margin-top: 2.4rem;
}
.hero-stat{ text-align:left; }
.hero-stat .num{
  font-family: var(--font-display);
  font-size: 2.1rem; color: var(--gold-light); font-weight:700; line-height:1;
}
.hero-stat .label{ font-size:.8rem; color:#D8C4B4; letter-spacing:.05em; text-transform:uppercase;}
.hero-visual{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 3px solid rgba(201,162,75,.5);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.hero-visual img{ width:100%; height: 460px; object-fit: cover; display:block; }
.hero-badge{
  position:absolute; bottom: -20px; left: -20px;
  background: var(--ivory);
  color: var(--oxblood-dark);
  border-radius: 50%;
  width: 110px; height:110px;
  display:flex; align-items:center; justify-content:center; flex-direction:column;
  text-align:center;
  border: 3px solid var(--gold);
  font-family: var(--font-heading);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.hero-badge strong{ font-size:1.4rem; line-height:1; color: var(--oxblood); }
.hero-badge span{ font-size:.62rem; text-transform:uppercase; letter-spacing:.05em; }

/* ---------- Marquee (event types ticker) ---------- */
.event-ticker{
  background: var(--gold);
  overflow:hidden;
  white-space:nowrap;
  padding: 12px 0;
}
.event-ticker .track{
  display:inline-block;
  animation: scroll-left 28s linear infinite;
  font-family: var(--font-heading);
  color: var(--oxblood-dark);
  letter-spacing:.04em;
}
.event-ticker .track span{ margin: 0 20px; }
.event-ticker .track span::after{ content:"✦"; margin-left:20px; color: var(--oxblood); opacity:.6; }
@keyframes scroll-left{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .event-ticker .track{ animation: none; }
}

/* ---------- Cards ---------- */
.service-card{
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  height: 100%;
  border: 1px solid rgba(107,16,36,.08);
  transition: all .3s ease;
  position:relative;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(107,16,36,.14);
  border-color: rgba(201,162,75,.5);
}
.service-icon{
  width: 62px; height:62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oxblood), var(--oxblood-dark));
  color: var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.service-card h4{ font-size:1.3rem; }
.service-card p{ color:#6b5c4a; font-size:.95rem; margin-bottom:0;}

.why-item{ display:flex; gap: 16px; align-items:flex-start; margin-bottom: 1.8rem;}
.why-icon{
  flex:none;
  width:52px;height:52px;border-radius:14px;
  background: var(--ivory-2);
  color: var(--oxblood);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;
  border: 1px solid rgba(201,162,75,.4);
}
.why-item h5{ margin-bottom:.25rem; color:var(--oxblood-dark);}
.why-item p{ color:#6b5c4a; font-size:.92rem; margin-bottom:0;}

/* ---------- Menu-style process/timeline (used only where order matters) ---------- */
.process-step{ text-align:center; padding: 0 10px; position:relative;}
.process-num{
  width:56px;height:56px;border-radius:50%;
  border: 2px solid var(--gold);
  color: var(--oxblood);
  font-family: var(--font-display); font-weight:700; font-size:1.3rem;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 14px;
  background: #fff;
}
.process-step h5{ font-size:1.05rem;}
.process-step p{ font-size:.88rem; color:#6b5c4a;}

/* ---------- Testimonials ---------- */
.testimonial-card{
  background: var(--ivory-2);
  border-radius: 16px;
  padding: 1.8rem;
  height:100%;
  border-left: 4px solid var(--gold);
}
.testimonial-card i.fa-quote-left{ color: var(--gold); font-size:1.4rem; }
.testimonial-card p.quote{ font-style: italic; color:#4a3c2e; margin: .8rem 0 1.1rem;}
.testimonial-author{ font-family: var(--font-heading); color: var(--oxblood-dark); font-size:.95rem;}
.testimonial-author small{ display:block; color:#8a7a68; font-family:var(--font-body); font-weight:400;}

/* ---------- Gallery ---------- */
.gallery-item{
  position:relative; overflow:hidden; border-radius: 12px;
  aspect-ratio: 4/3.2;
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-overlay{
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(74,10,25,.85), transparent 60%);
  display:flex; align-items:flex-end; padding: 14px;
  opacity:0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-overlay span{ color: var(--ivory); font-family: var(--font-heading); font-size:.95rem;}
.gallery-filters .btn{
  font-family: var(--font-heading);
  border-radius: 999px;
  padding: 6px 20px;
  margin: 4px;
  border: 1px solid var(--oxblood);
  color: var(--oxblood);
  background: transparent;
}
.gallery-filters .btn.active,
.gallery-filters .btn:hover{ background: var(--oxblood); color: var(--ivory); }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--oxblood-dark), var(--oxblood));
  color: var(--ivory);
  border-radius: 22px;
  padding: 3rem;
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width:220px; height:220px; border-radius:50%;
  border: 2px dashed rgba(201,162,75,.4);
}

/* ---------- Forms ---------- */
.form-elegant .form-control,
.form-elegant .form-select{
  border: 1px solid rgba(107,16,36,.2);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
}
.form-elegant .form-control:focus,
.form-elegant .form-select:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(201,162,75,.2);
}
.form-elegant label{
  font-family: var(--font-heading);
  color: var(--oxblood-dark);
  font-size: .92rem;
  margin-bottom: 4px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: linear-gradient(150deg, var(--oxblood-dark), var(--oxblood));
  color: var(--ivory);
  padding: 70px 0 60px;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.3;
}
.page-hero h1{ color: var(--ivory); font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb-elegant a{ color: var(--gold-light); }
.breadcrumb-elegant span{ color: #cbb9ab; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--charcoal); color: #cbbfae; margin-top: 4rem;}
.footer-band{ height:5px; background: linear-gradient(90deg, var(--gold), var(--saffron), var(--gold)); }
.footer-heading{ color: var(--gold-light); font-family: var(--font-heading); margin-bottom: 1rem;}
.footer-links{ list-style:none; padding:0; margin:0;}
.footer-links li{ margin-bottom:.55rem;}
.footer-links a{ color:#cbbfae; }
.footer-links a:hover{ color: var(--gold-light); }
.footer-contact{ list-style:none; padding:0; margin:0;}
.footer-contact li{ margin-bottom:.7rem; display:flex; gap:8px; font-size:.92rem;}
.footer-contact i{ color: var(--gold); margin-top:3px;}
.footer-about{ color:#a99a86; font-size:.9rem;}
.brand-mark-footer{ display:flex; align-items:center; gap:.6rem;}
.brand-mark-footer .brand-text{ color: var(--ivory);}
.footer-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  border: 1px solid rgba(201,162,75,.4);
  color: var(--gold-light); margin-right:8px; margin-top:1rem;
}
.footer-social a:hover{ background: var(--gold); color: var(--oxblood-dark); }
.footer-bottom{ background: #1e1712; border-top: 1px solid rgba(255,255,255,.06);}
.footer-bottom small{ color:#8a7c6a;}

/* ---------- WhatsApp float ---------- */
.whatsapp-float{
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height:58px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
  z-index: 999;
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.back-to-top{
  position: fixed; bottom: 96px; right: 30px;
  width:44px;height:44px; border-radius:50%;
  background: var(--oxblood); color: var(--ivory);
  border:none; display:none; align-items:center; justify-content:center;
  z-index:999; box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.back-to-top.show{ display:flex; }

/* ---------- Utilities ---------- */
.badge-gold{
  background: var(--ivory-2);
  color: var(--oxblood);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .78rem;
  font-family: var(--font-heading);
  letter-spacing:.04em;
}
.text-gold{ color: var(--gold) !important; }
.section-pad{ padding: 5rem 0; }
@media (max-width: 767px){
  .section-pad{ padding: 3.2rem 0; }
  .hero{ padding: 60px 0 80px; }
  .hero-badge{ display:none; }
  .cta-band{ padding: 2rem; }
}
