/* ===================================
   Ashapura Caterers - Main Stylesheet
   Orange & White Theme Only
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --primary: #f97316;
  --primary-dark: #ea6c0a;
  --primary-light: #fff7ed;
  --primary-border: #fed7aa;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-bg: #fff7ed;
  --text-dark: #1a1a1a;
  --text-mid: #4b4b4b;
  --text-muted: #787878;
  --border: #ffe8cc;
  --gradient: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  --shadow-sm: 0 2px 12px rgba(249,115,22,0.08);
  --shadow-md: 0 6px 30px rgba(249,115,22,0.12);
  --shadow-lg: 0 15px 60px rgba(249,115,22,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---- Navbar ---- */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(249,115,22,0.12);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

#navbar.scrolled .nav-brand { color: var(--text-dark); }
.nav-brand span { color: var(--primary); }

.nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

#navbar.scrolled .nav-link { color: var(--text-mid) !important; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

.btn-nav {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 0.4rem 1.3rem !important;
  border-radius: 25px;
  font-weight: 700 !important;
}
.btn-nav::after { display: none !important; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(249,115,22,0.12)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 65%);
}

.hero-content { position: relative; z-index: 2; }

.hero-subtitle {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  background: rgba(249,115,22,0.15);
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(249,115,22,0.35);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span { color: var(--primary); font-style: italic; }

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ---- Buttons ---- */
.btn-primary-cta {
  background: var(--gradient);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249,115,22,0.38);
  color: var(--white);
}

.btn-outline-cta {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
}

.btn-outline-cta:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  background: transparent;
  font-size: 0.95rem;
}

.btn-outline-white:hover { background: var(--white); color: var(--primary); }

/* ---- Hero Stats ---- */
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.72);
}

/* ---- Sections ---- */
.section-label {
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title span { color: var(--primary); font-style: italic; }

.section-divider {
  width: 55px; height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 0.9rem 0;
}

/* ---- Service Cards ---- */
.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
  background: var(--white);
  border: 1px solid var(--border);
  height: 100%;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-badge {

  background: var(--gradient);
  color: var(--white);
  padding: 0.22rem 0.75rem;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
}

.service-card-body { padding: 1.5rem; }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.service-card-text { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ---- Why Items ---- */
.why-item {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: 14px;
  transition: all 0.3s;
  border: 1px solid var(--border);
  background: var(--white);
}

.why-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.why-icon {
  width: 68px; height: 68px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.6rem;
  color: var(--primary);
  transition: all 0.3s;
}

.why-item:hover .why-icon { background: var(--gradient); color: var(--white); }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: #fb923c; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { font-style: italic; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.92rem; }
.testimonial-author { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-event { font-size: 0.73rem; color: var(--primary); font-weight: 600; margin-top: 2px; letter-spacing: 0.5px; }

/* ---- FAQ ---- */
.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  background: var(--off-white);
  font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: none;
}

.accordion-button:focus { box-shadow: none; }

/* ---- City Cards ---- */
.city-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.city-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.city-card-icon { font-size: 2.3rem; margin-bottom: 0.6rem; }
.city-card-name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.city-card-sub { font-size: 0.73rem; color: var(--primary); font-weight: 600; margin-top: 2px; }

/* ---- City SEO Section ---- */
.city-coverage-section { background: var(--light-bg); }

.city-seo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s;
  border-top: 3px solid var(--primary);
}

.city-seo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.city-seo-card h3 { color: var(--primary-dark); font-family: 'Playfair Display', serif; }
.city-seo-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ---- Instagram Grid ---- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--light-bg);
  cursor: pointer;
  border: 1px solid var(--border);
}

.insta-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }

.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(249,115,22,0.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i { font-size: 2rem; color: var(--white); }

/* ---- CTA Band ---- */
.cta-band {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

/* ---- Contact ---- */
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Nunito Sans', sans-serif;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  outline: none;
}

.contact-icon-box {
  width: 46px; height: 46px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- Footer ---- */
footer { background: var(--primary-light); border-top: 2px solid var(--border); }

.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--text-dark); }
.footer-brand span { color: var(--primary); }

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
  display: block;
  padding: 0.2rem 0;
}
.footer-link:hover { color: var(--primary); }
.footer-heading { color: var(--text-dark); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  margin-right: 0.4rem;
  background: var(--white);
}

.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Scroll Top ---- */
#scrollTop {
  position: fixed;
  bottom: 100px; right: 25px;
  width: 44px; height: 44px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(249,115,22,0.35);
}

#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { transform: scale(1.1); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 25px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.55rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  z-index: 1001;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* ---- Page Hero ---- */
.page-hero {
  padding: 8.5rem 0 4rem;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(249,115,22,0.18)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
}

.breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- Loader ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }

.loader-logo { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.loader-logo span { color: var(--primary); }
.loader-tagline { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 3px; margin-bottom: 1.25rem; text-transform: uppercase; }

.loader-bar { width: 140px; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar-inner { height: 100%; background: var(--gradient); border-radius: 2px; animation: load 1.5s ease forwards; }

@keyframes load { 0% { width: 0; } 100% { width: 100%; } }

/* ---- Gallery ---- */
.gallery-grid-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-grid-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }

.gallery-grid-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(249,115,22,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 1rem;
}

.gallery-grid-item:hover img { transform: scale(1.1); }
.gallery-grid-item:hover .overlay { opacity: 1; }

/* ---- Map ---- */
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

/* ---- Utilities ---- */
.text-orange { color: var(--primary) !important; }
.font-serif { font-family: 'Playfair Display', serif; }
.bg-orange-soft { background: var(--light-bg); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-stats { gap: 1.5rem; justify-content: center; }
  .stat-num { font-size: 1.5rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { text-align: center; }
  .hero::before { background: rgba(0,0,0,0.62); }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-primary-cta, .btn-outline-cta { padding: 0.75rem 1.5rem; font-size: 0.88rem; }
}
