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

:root {
  --primary: #8B0000;
  --primary-dark: #6B0000;
  --gold: #C9A84C;
  --dark: #1C1C1C;
  --gray: #666666;
  --light-gray: #F8F5F0;
  --white: #FFFFFF;
  --border: #E5E0D8;
  --nav-height: 80px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--dark); line-height: 1.7; background: var(--white); }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVIGATION ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: var(--transition); padding: 0 5%;
  height: var(--nav-height); display: flex; align-items: center;
  justify-content: space-between; background: transparent;
}
.navbar.scrolled,
.navbar.solid {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 700; color: var(--white); letter-spacing: 2px; transition: var(--transition);
}
.navbar.scrolled .logo-text,
.navbar.solid .logo-text { color: var(--primary); }
.nav-logo .logo-sub {
  font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: var(--white); transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a:hover,
.navbar.solid .nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary) !important; color: var(--white) !important;
  padding: 0.6rem 1.5rem; border-radius: 2px;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: var(--transition); }
.navbar.scrolled .hamburger span,
.navbar.solid .hamburger span { background: var(--dark); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; background-attachment: fixed;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.52); }
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 800px; padding: 0 2rem; }
.hero-content .pre-title {
  font-size: 0.78rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.05rem; margin-bottom: 2.5rem; font-weight: 300; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 420px; display: flex;
  align-items: center; justify-content: center; text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.page-hero-content { position: relative; z-index: 1; color: var(--white); }
.page-hero-content .pre-title {
  font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block;
}
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.9rem 2.5rem; font-size: 0.78rem;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  transition: var(--transition); cursor: pointer; border: none; font-family: 'Lato', sans-serif;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8922a; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ── SECTIONS ── */
.section { padding: 6rem 5%; }
.section-sm { padding: 4rem 5%; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .pre-title {
  font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--gray); font-size: 1.02rem; }
.section-dark .section-header p { color: #aaa; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 1.2rem auto; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── FEATURE CARDS ── */
.feature-card {
  text-align: center; padding: 3rem 2rem;
  border: 1px solid var(--border); transition: var(--transition); background: var(--white);
}
.feature-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-5px); }
.feature-card .icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--primary); }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* ── SERVICE CARDS (home preview) ── */
.service-card { position: relative; overflow: hidden; height: 360px; cursor: pointer; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; color: var(--white);
}
.service-card-overlay h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.service-card-overlay p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.service-card-overlay a { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--gold); margin-bottom: 0.4rem; }
.stat-item p { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: #aaa; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--white); padding: 2.5rem; border-left: 4px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.testimonial-card .quote { font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; font-family: 'Playfair Display', serif; }
.testimonial-card p { color: var(--gray); font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author .avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--light-gray); overflow: hidden; }
.testimonial-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author .info h4 { font-size: 0.95rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.testimonial-author .info span { font-size: 0.8rem; color: var(--gray); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }

/* ── CTA BANNER ── */
.cta-banner { position: relative; padding: 6rem 5%; text-align: center; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(139, 0, 0, 0.88); }
.cta-banner-content { position: relative; z-index: 1; color: var(--white); }
.cta-banner-content h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-banner-content p { font-size: 1.02rem; margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.85); }

/* ── ABOUT PAGE ── */
.about-content { max-width: 680px; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.about-content p { color: var(--gray); margin-bottom: 1.5rem; font-size: 1.02rem; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 500px; object-fit: cover; }
.about-image::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%; border: 3px solid var(--gold); z-index: -1;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-item { text-align: center; padding: 2rem 1.5rem; }
.value-item .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-item h3 { color: var(--primary); margin-bottom: 0.8rem; font-size: 1.1rem; }
.value-item p { color: var(--gray); font-size: 0.95rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 1rem; filter: grayscale(20%); transition: var(--transition); }
.team-card:hover img { filter: grayscale(0); }
.team-card h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.team-card span { font-size: 0.82rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

/* ── SERVICES PAGE ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-detail-card { background: var(--white); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: var(--transition); }
.service-detail-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.service-detail-card img { width: 100%; height: 220px; object-fit: cover; }
.service-detail-card .card-body { padding: 2rem; }
.service-detail-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--primary); }
.service-detail-card p { color: var(--gray); font-size: 0.93rem; margin-bottom: 1rem; }
.service-detail-card ul li {
  color: var(--gray); font-size: 0.9rem; padding: 0.3rem 0;
  padding-left: 1.2rem; position: relative;
}
.service-detail-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.process-step { padding: 2rem 1rem; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%; background: var(--primary);
  color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.8rem; color: var(--dark); }
.process-step p { color: var(--gray); font-size: 0.9rem; }

/* ── MENU PAGE ── */
.menu-tabs { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 3rem; flex-wrap: wrap; }
.menu-tab {
  padding: 0.6rem 2rem; border: 2px solid var(--border); cursor: pointer;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  transition: var(--transition); background: none; font-family: 'Lato', sans-serif; color: var(--dark);
}
.menu-tab.active, .menu-tab:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.menu-category { display: none; }
.menu-category.active { display: block; }
.menu-category h3 { text-align: center; font-size: 1.8rem; margin-bottom: 2.5rem; color: var(--primary); }
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid var(--border); gap: 2rem; }
.menu-item:nth-child(odd) { padding-right: 3rem; }
.menu-item:nth-child(even) { padding-left: 3rem; border-left: 1px solid var(--border); }
.menu-item-info h4 { font-size: 1rem; margin-bottom: 0.3rem; font-family: 'Playfair Display', serif; }
.menu-item-info p { font-size: 0.83rem; color: var(--gray); }
.menu-item-price { font-family: 'Playfair Display', serif; color: var(--primary); font-weight: 600; white-space: nowrap; font-size: 0.95rem; }
.menu-badge {
  display: inline-block; font-size: 0.65rem; padding: 0.15rem 0.5rem;
  border-radius: 2px; letter-spacing: 1px; text-transform: uppercase; margin-left: 0.5rem; vertical-align: middle;
}
.badge-veg { background: #e8f5e9; color: #2e7d32; }
.badge-nonveg { background: #fce4e4; color: #c62828; }
.menu-note { text-align: center; margin-top: 3rem; padding: 1.8rem; background: var(--light-gray); color: var(--gray); font-style: italic; }

/* ── GALLERY PAGE ── */
.gallery-filter { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.5rem; border: 2px solid var(--border); cursor: pointer;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  transition: var(--transition); background: none; font-family: 'Lato', sans-serif; color: var(--dark);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(139, 0, 0, 0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 2rem; }
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 9999; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; color: var(--white); font-size: 2.5rem; cursor: pointer; line-height: 1; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--primary); }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-info-item .icon { font-size: 1.3rem; margin-top: 0.2rem; color: var(--gold); min-width: 24px; }
.contact-info-item h4 { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.3rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.contact-info-item p { color: var(--gray); font-size: 0.93rem; }
.social-links { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-link {
  width: 40px; height: 40px; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 1rem;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label { display: block; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--border);
  font-family: 'Lato', sans-serif; font-size: 0.95rem; color: var(--dark);
  background: var(--white); transition: var(--transition); outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-success { display: none; background: #e8f5e9; color: #2e7d32; padding: 1rem 1.5rem; margin-top: 1rem; }

/* ── FOOTER ── */
.footer { background: #0f0f0f; color: #aaa; padding: 5rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); letter-spacing: 2px; }
.footer-brand .logo-sub { font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-family: 'Lato', sans-serif; font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: #aaa; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; margin-bottom: 0.7rem; }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .grid-3, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .process-steps, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 1100; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 72%; height: 100vh;
    background: var(--white); flex-direction: column; justify-content: center;
    gap: 2rem; transition: right 0.3s ease; padding: 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.12); z-index: 1050;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--dark); font-size: 1rem; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hamburger.open span { background: var(--dark) !important; }
  .grid-2, .grid-3, .grid-4, .stats-grid, .testimonials-grid,
  .services-grid, .values-grid, .process-steps, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-items { grid-template-columns: 1fr; }
  .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-image::before { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 4rem 5%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-tabs { flex-direction: column; align-items: stretch; }
  .menu-tab { text-align: center; }
}
