:root {
  --bg: #0f0c08;
  --card: #181412;
  --accent: #c99b44;
  --muted: #bfb7a3;
  --text: #f7f3ee;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: linear-gradient(180deg, #0b0906, #1a1510);
  color: var(--text);
  line-height: 1.5;
}
/* Navbar Container */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all .35s ease;
}

/* Header on scroll small effect */
.site-header.scrolled {
  background: rgba(0,0,0,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Logo */
.logo {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--accent);
  text-decoration: none;
  transition: color .3s ease;
}

.logo:hover {
  color: #e7c57c;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-item {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 4px 0;
  transition: all .3s ease;
}

/* Hover golden underline */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item:hover {
  color: var(--text);
}

/* Visit Button */
.nav-btn {
  padding: 8px 14px;
  border-radius: 10px;
  transition: all .3s ease;
}

.nav-btn:hover {
  background: #e7c57c;
  transform: translateY(-2px);
}

/* Navbar flex */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0; /* height कम की */
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: 0.35s ease;
}

/* On scroll */
.site-header.scrolled {
  padding: 6px 0;
  background: rgba(0,0,0,0.75);
}

/* NAV LAYOUT */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Nav Links */
.nav-left, .nav-right {
  display: flex;
  gap: 22px;
}

.nav-item {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: var(--accent);
}

/* Center Brand */
.brand-center {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 20px;
  cursor: pointer;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255, 200, 80, 0.08);
  border: 1px solid rgba(255, 200, 80, 0.25);
  box-shadow:
    inset 0 0 8px rgba(255, 200, 80, 0.15),
    0 0 25px rgba(255,200,80,0.25);
  transition: 0.35s ease;
}

/* Hover Glow on Center Icon */
.brand-center:hover {
  transform: scale(1.05);
  box-shadow:
    inset 0 0 12px rgba(255, 200, 80, 0.3),
    0 0 35px rgba(255,200,80,0.45);
}

/* Center Icon */
.brand-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.6));
  transition: 0.3s ease;
}

.brand-center:hover .brand-icon {
  transform: scale(1.12);
  filter: brightness(1.2);
}

/* Brand Text */
.brand-text {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,200,80,0.4);
}

/* Visit Button */
.nav-btn {
  padding: 8px 14px;
  border-radius: 12px;
}

.nav-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Mobile */
@media(max-width:900px){
  .nav-left, .nav-right {
    display: none;
  }
  .brand-center {
    margin: auto;
  }
}


/* Responsive */
@media(max-width:900px){
  nav {
    display: none; /* Mobile menu bana sakta hoon if needed */
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Content Styling */
.hero-title {
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 22px;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  margin: 0 8px;
}

.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 28px;
}

/* Navbar */
.site-header {
  padding: 14px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: Georgia, serif;
  color: var(--accent);
  font-size: 24px;
  text-decoration: none;
}

nav a {
  color: var(--muted);
  margin-left: 16px;
  text-decoration: none;
}

/* Buttons */
.btn {
  background: var(--accent);
  color: #111;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}

/* Hero */
.hero {
  background: url('nutshell-hero.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hero-overlay {
  width: 100%;
  padding: 80px 28px;
  background: rgba(0,0,0,0.55);
}

/* Quick Info Premium Upgrade */
.quick-info {
  margin-top: -40px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  transition: all .35s ease;
  border: 1px solid transparent;
}

/* Hover: Lift + glow */
.card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

.card h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

/* Gallery Premium Style */
.gallery-preview h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}

.gallery-preview .grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.gallery-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: all .4s ease;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4);
}

/* Hover Zoom */
.gallery-preview img:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  filter: brightness(1.15);
}

/* Button center */
.gallery-preview .btn {
  margin-top: 10px;
}

/* Fade-up scroll animation initial state */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all .9s ease;
}

/* Responsive */
@media(max-width:900px){
  .quick-info {
    grid-template-columns: 1fr;
  }
  .gallery-preview .grid {
    grid-template-columns: 1fr;
  }
}


/* Timeline wrapper */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

/* Line running in center */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.08);
  transform: translateX(-50%);
}

/* Each item */
.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 20px;
  border-radius: 12px;
}

/* Small hover animation */
.timeline-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
}

/* Dot at center line */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* Year Box */
.timeline-year {
  flex: 1;
  text-align: right;
  padding-right: 20px;
  color: var(--accent);
  font-size: 24px;
  font-family: Georgia, serif;
}

/* Content Box */
.timeline-content {
  flex: 2;
  text-align: left;
}

.timeline-content h3 {
  margin: 0;
  color: var(--text);
}

.timeline-content p {
  color: var(--muted);
}

/* Responsive */
@media(max-width:900px){
  .timeline::before {
    left: 10px;
  }
  .timeline-item::before {
    left: 10px;
    transform: none;
  }
  .timeline-item {
    padding-left: 30px;
  }
  .timeline-year {
    text-align: left;
    padding-right: 0;
  }
}
/* Features Section */
.features-section {
  margin-top: 80px;
  text-align: center;
}

.features-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
  transition: all .35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  background: rgba(255,255,255,0.04);
}

/* Image */
.feature-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform .4s ease;
}

.feature-card:hover .feature-img {
  transform: scale(1.05);
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

/* Responsive */
@media(max-width:900px){
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* Testimonials */
.testimonials-section {
  margin-top: 90px;
  text-align: center;
}

.testimonials-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: all .35s ease;
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  background: rgba(255,255,255,0.04);
}

.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card .text {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.author {
  color: var(--accent);
  font-size: 16px;
  margin-top: 4px;
}

/* Responsive */
@media(max-width:900px){
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA Section */
.cta-section {
  margin-top: 100px;
  background: url('nutshell-front.jpg') center/cover no-repeat;
  height: 300px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CTA Content */
.cta-content {
  text-align: center;
  color: var(--text);
}

.cta-content h2 {
  font-family: Georgia, serif;
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 10px;
}

.cta-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 18px;
}

/* CTA Button */
.cta-btn {
  background: var(--accent);
  color: #111;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s ease;
}

.cta-btn:hover {
  background: #e7b868;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:900px){
  .cta-section {
    height: 260px;
  }
  .cta-content h2 {
    font-size: 30px;
  }
}

/* Footer */
.footer {
  background: #0a0806;
  padding: 50px 0 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h3,
.footer-col h4 {
  color: var(--accent);
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color .3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icon {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: all .3s ease;
}

.social-icon:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Bottom Row */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
}

.footer-small {
  font-size: 13px;
  color: #aaa08d;
}

copyright {
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
/* about page css */
/* ABOUT HERO */
.about-hero {
  background: url('nutshell-front.jpg') center/cover no-repeat;
  height: 280px;
  border-radius: 14px;
  margin-top: 20px;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 14px;
}

.about-overlay h1 {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 38px;
  margin-bottom: 10px;
}

.about-overlay p {
  color: var(--muted);
  font-size: 18px;
}

/* ABOUT TEXT */
.about-content {
  margin-top: 40px;
}

.about-text {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}

/* FACT STRIP */
.fact-strip {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fact-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transition: all .35s ease;
}

.fact-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,200,80,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

.fact-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 20px;
}

.fact-card p {
  color: var(--muted);
  font-size: 16px;
}

/* ANIMATION INITIAL STATE */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all .9s ease;
}
/* about page css end*/

/* menu-page-css */
/* MENU HERO */
.menu-hero {
  background: url('menu-hero.jpg') center/cover no-repeat;
  height: 260px;
  border-radius: 14px;
  margin-top: 20px;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-overlay h1 {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 38px;
  margin-bottom: 6px;
}

.menu-overlay p {
  color: var(--muted);
  font-size: 18px;
}

/* SECTION TITLES */
.menu-title {
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--accent);
  margin: 40px 0 20px;
  text-align: center;
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* MENU CARD */
.menu-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: all .35s ease;
  opacity: 0;
  transform: translateY(40px);
}

.menu-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,200,80,0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

/* Card text */
.menu-card h3 {
  color: var(--accent);
  margin-bottom: 6px;
}

.menu-card .desc {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 14px;
}

.price {
  font-size: 16px;
  color: var(--text);
  font-weight: bold;
}

/* Responsive */
@media(max-width:900px){
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
/* menu-page-css-end */

/* gallary-page-css */
/* Gallery Title */
.gallery-title {
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--accent);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Grid Layout (Small Thumbnails) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Gallery Item */
.g-item {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transition: all .35s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* Image Styling */
.g-item img {
  width: 100%;
  height: 170px;          /* Image छोटे रहेंगे */
  object-fit: cover;
  transition: all .4s ease;
}

/* Hover Effect */
.g-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  border-color: rgba(255,200,80,0.28);
}

.g-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* gallary-page-css-end*/

/* contact-page-css */

/* CONTACT HERO */
.contact-hero {
  background: url('nutshell-front.jpg') center/cover no-repeat;
  height: 260px;
  border-radius: 14px;
  margin: 20px 0;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.contact-overlay h1 {
  font-family: Georgia, serif;
  font-size: 36px;
  color: var(--accent);
}

.contact-overlay p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 6px;
}


/* CONTACT GRID */
.contact-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  text-align: center;
  transition: all .35s ease;
  opacity: 0;
  transform: translateY(40px);
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,200,80,0.3);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.6);
}

.contact-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.c-btn {
  display: inline-block;
  padding: 8px 16px;
  margin-top: 5px;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.c-btn:hover {
  background: #e7c57c;
  transform: translateY(-2px);
}


/* MAP */
.map-title {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--accent);
  margin: 40px 0 16px;
  text-align: center;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 25px rgba(0,0,0,0.45);
}


/* Responsive */
@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* contact-page-css-end */
