/* =========================
   RESET + BASE
   ========================= */
*{ box-sizing:border-box; margin:0; padding:0; }

:root{
  --brand:#8B0000;
  --brand-dark:#6f0000;
  --ink:#2b2b2b;
  --paper:rgba(255,255,255,0.92);
  --paper-strong:rgba(255,255,255,0.97);
}

body{
  font-family:'Poppins',sans-serif;
  color:var(--ink);

  background-image:
    linear-gradient(rgba(255,248,240,0.88), rgba(255,248,240,0.88)),
    url("Fagu, Shimla caps.jpg");
  background-size:320px 320px;
  background-repeat:repeat;
  background-attachment:fixed;
}

.container{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
}

/* =========================
   NAVBAR
   ========================= */
.site-header{
  background:var(--brand);
  box-shadow:0 2px 12px rgba(0,0,0,0.25);
}

.nav-wrap{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.logo{
  font-family:'Playfair Display', serif;
  color:#fff;
  font-size:24px;
  font-weight:700;
  letter-spacing:1px;
  white-space:nowrap;
}

.nav{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-family:'Playfair Display', serif;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  letter-spacing:0.6px;
  padding:10px 14px;
  border-radius:10px;
  transition:0.25s;
}

.nav a:hover{
  background:rgba(255,255,255,0.15);
}

/* =========================
   HERO
   ========================= */
.hero{ padding:34px 0 12px; }

.hero-inner{
  height:70vh;
  min-height:460px;
  border-radius:14px;
  overflow:hidden;

  background-image:
    linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),
    url("image 1 bttr.png");

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 16px 42px rgba(0,0,0,0.25);
  filter:contrast(1.08) saturate(1.15) brightness(1.08);
}

.hero-content{
  text-align:center;
  color:#fff;
  max-width:850px;
  padding:34px;
}

.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:56px;
  line-height:1.05;
  margin-bottom:32px;
  text-shadow:0 6px 18px rgba(0,0,0,0.40);
}

.hero-content p{
  font-size:18px;
  margin-bottom:18px;
  opacity:0.95;
  text-shadow:0 6px 18px rgba(0,0,0,0.35);
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-block;
  background: linear-gradient(135deg, #8B0000, #a30000);
  color:#fff;
  padding:16px 36px;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:0.4px;
  box-shadow:0 12px 28px rgba(139,0,0,0.35);
  transition:0.3s ease;
  border:none;
}

.btn:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 20px 45px rgba(139,0,0,0.45);
}

/* =========================
   SECTIONS
   ========================= */
.section{ padding:55px 0; }

.section-box{
  background:var(--paper);
  border-radius:16px;
  padding:52px 44px;
  box-shadow:0 16px 40px rgba(0,0,0,0.10);
}

.section-box h2{
  font-family:'Playfair Display', serif;
  font-size:38px;
  margin-bottom:28px;
}

.lead{
  max-width:820px;
  line-height:1.7;
  font-size:16px;
  opacity:0.95;
  margin:0 auto;
  
}
/* =========================
   HOMEPAGE CARDS 
   ========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:28px;
  margin-top:18px;
}

.card{
  background:var(--paper-strong);
  border-radius:14px;
  padding:28px;
  min-height:90px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  font-weight:600;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.28s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 45px rgba(0,0,0,0.14);
  border-color:rgba(139,0,0,0.25);
}

/* center CTA buttons under sections */
.section-actions{
  margin-top:40px;
  display:flex;
  justify-content:center;
}

/* optional: if you still use btn-outline anywhere */
.btn-outline{
  background:transparent;
  color:var(--brand);
  border:2px solid var(--brand);
}

.btn-outline:hover{
  background:var(--brand);
  color:#fff;
}
/* =========================
   PROFESSIONAL MENU GRID
   ========================= */

.menu-subtitle{
  font-family:'Playfair Display', serif;
  font-size:20px;
  text-align:center;
  margin-bottom:40px;
  color:#444;
  letter-spacing:0.5px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
  margin-top:30px;
}

.menu-item{
  background:#fff;
  border-radius:18px;
  padding:25px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border-top:5px solid var(--brand);
  transition:all 0.35s ease;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:160px;
}

.menu-item:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.menu-item h3{
  font-family:'Playfair Display', serif;
  font-size:18px;
  margin-bottom:8px;
  color:#222;
}

.menu-item p{
  font-size:14px;
  line-height:1.5;
  color:#555;
  margin-bottom:12px;
}

.menu-price{
  font-weight:700;
  color:var(--brand);
  font-size:16px;
  margin-top:auto;
}
/* =========================
   REVIEWS SCROLL
   ========================= */
.reviews-scroll{
  display:flex;
  gap:20px;
  margin-top:30px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:10px;
}

.review-card{
  min-width:280px;
  background:white;
  border-radius:18px;
  padding:20px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  transition:0.3s;
  scroll-snap-align:start;
}

.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.review-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:15px;
}

.review-card span{
  font-weight:bold;
  color:#b92b27;
}

/* =========================
   SCROLL REVEAL
   ========================= */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   FOOTER
   ========================= */
.footer{
  margin-top:40px;
  background:#2e2e2e;
  color:#fff;
}

.footer-inner{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
}

/* =========================
   MOBILE
   ========================= */
@media(max-width: 900px){
  .hero-content h1{ font-size:44px; }
}

@media(max-width: 768px){
  .nav-wrap{ flex-direction:column; }
  .logo{ text-align:center; }
  .nav{ justify-content:center; gap:16px; }

  .hero-inner{ height:60vh; min-height:420px; }
  .hero-content h1{ font-size:34px; }

  .section-box{ padding:36px 18px; }
  .section-box h2{ font-size:30px; }
}
.menu-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:18px 0 28px;
}

.menu-chip{
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  color:var(--brand);
  background:rgba(139,0,0,0.08);
  border:1px solid rgba(139,0,0,0.18);
  padding:10px 14px;
  border-radius:999px;
  transition:0.25s;
}

.menu-chip:hover{
  transform:translateY(-2px);
  background:rgba(139,0,0,0.14);
  border-color:rgba(139,0,0,0.28);
}

.menu-section{
  margin-top:36px;
}

.menu-section-head{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.menu-section-title{
  font-family:'Playfair Display', serif;
  font-size:22px;
  color:#222;
  white-space:nowrap;
}

.menu-section-line{
  height:3px;
  flex:1;
  background:linear-gradient(90deg, var(--brand), rgba(139,0,0,0.05));
  border-radius:999px;
  opacity:0.9;
}

html{
  scroll-behavior:smooth;
}
.nav a.active{
  background:rgba(255,255,255,0.25);
}
/* =========================
   RESTAURANT GALLERY SHOWCASE
   ========================= */

.gallery-showcase{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:70px;
}

/* row layout */
.gallery-row{
  display:flex;
  align-items:center;
  gap:50px;
}

/* alternate sides */
.gallery-row.reverse{
  flex-direction:row-reverse;
}

/* image container */
.gallery-img{
  flex:1;
}

.gallery-img img{
  width:100%;
  height:auto;        /* IMPORTANT: no cropping */
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  transition:0.35s ease;
}

.gallery-img img:hover{
  transform:scale(1.03);
}

/* text side */
.gallery-text{
  flex:1;
}

.gallery-text h3{
  font-family:'Playfair Display', serif;
  font-size:32px;
  margin-bottom:15px;
}

.gallery-text p{
  font-size:17px;
  line-height:1.7;
  color:#555;
  max-width:500px;
}
@media(max-width:900px){

  .gallery-row,
  .gallery-row.reverse{
    flex-direction:column;
    text-align:center;
  }

  .gallery-text p{
    margin:0 auto;
  }
}
.gallery-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.gallery-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.gallery-row.reverse {
  flex-direction: row-reverse;
}

.gallery-row img {
  width: 55%;
  height: auto;
  border-radius: 14px;
  object-fit: contain; /* prevents cropping */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-text {
  width: 45%;
}

.gallery-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.gallery-text p {
  color: #555;
  line-height: 1.6;
}
.section-box h2 {
  position: relative;
  display: inline-block;
}

.section-box h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #8B1C13; /* Punjabi red */
  margin-top: 10px;
  border-radius: 2px;
}
.gallery-text {
  border-left: 4px solid #8B1C13;
  padding-left: 20px;
}
.gallery-img img {
  border-radius: 14px;
  transition: all 0.4s ease;
}

.gallery-img img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(139, 28, 19, 0.35);
}
.gallery-text h3 {
  color: #8B1C13;
}
.section-box {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fff7f5 100%
  );
}
/* =========================
   VISIT US PAGE
   ========================= */

.visit-layout{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:30px;
  margin-top:26px;
  align-items:start;
}

.info-card, .map-card{
  background:#fff;
  border-radius:18px;
  padding:26px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border-top:5px solid var(--brand);
  transition:all 0.35s ease;
}

.info-card:hover, .map-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.14);
}

.info-card-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.info-card h3{
  font-family:'Playfair Display', serif;
  font-size:22px;
  color:#222;
}

.accent-line{
  height:3px;
  width:110px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--brand), rgba(139,0,0,0.25));
}

.info-line{
  display:flex;
  gap:10px;
  margin:10px 0;
  line-height:1.6;
}

.info-label{
  min-width:95px;
  font-weight:700;
  color:#222;
}

.visit-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.hours-grid{
  margin-top:10px;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  overflow:hidden;
}

.hours-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.hours-row:nth-child(odd){
  background: rgba(139,0,0,0.03);
}

.hours-row span:first-child{
  font-weight:700;
  color:#222;
}

.hours-row span:last-child{
  color:var(--brand);
  font-weight:700;
}

.small-note{
  margin-top:12px;
  font-size:13px;
  opacity:0.85;
}

.map-embed{
  width:100%;
  height:360px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.06);
}

.map-embed iframe{
  width:100%;
  height:100%;
  border:0;
}

.map-hint{
  margin-top:12px;
  font-size:14px;
  line-height:1.6;
  color:#444;
  border-left:4px solid var(--brand);
  padding-left:12px;
}

/* Mobile */
@media(max-width: 900px){
  .visit-layout{
    grid-template-columns:1fr;
  }
  .map-embed{ height:320px; }
}
/* =========================
   OUR STORY (PAGE STYLES)
   ========================= */
.story-showcase{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.story-row{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;

  background: rgba(255,255,255,0.80);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(139,0,0,0.10);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border-top: 5px solid var(--brand);
  transition: 0.35s ease;
}

.story-row:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.story-row.reverse{
  grid-template-columns: 1fr 1.15fr;
}

.story-row.reverse .story-img{
  order: 2;
}
.story-row.reverse .story-text{
  order: 1;
}

.story-img{
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(139,0,0,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.story-img img{
  width: 100%;
  height: 340px;
  object-fit: contain; /* prevents cropping */
  background: #fff;
  display: block;
}

.story-text h3{
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.story-text p{
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 680px;
}

.story-accent{
  color: var(--brand);
  font-weight: 700;
}

/* Quote / highlight block */
.story-quote{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 16px;
  align-items: stretch;

  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  padding: 18px 18px;
  border: 1px solid rgba(139,0,0,0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.story-quote-bar{
  background: linear-gradient(180deg, var(--brand), #b10000);
  border-radius: 20px;
}

.story-quote-text h3{
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.story-quote-text p{
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

/* Small red-highlight card */
.story-mini-card{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(139,0,0,0.05);
  border: 1px solid rgba(139,0,0,0.14);
}

.story-mini-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 7px;
}

/* Mobile */
@media (max-width: 900px){
  .story-row, .story-row.reverse{
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-img,
  .story-row.reverse .story-text{
    order: initial;
  }

  .story-img img{
    height: 280px;
  }

  .story-text h3{
    font-size: 28px;
  }
}
/* MOBILE NAVBAR */
@media (max-width: 768px){

  .nav-wrap{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav a{
    font-size: 14px;
    padding: 6px 10px;
  }

}
@media (max-width: 768px){

  .section{
    padding: 40px 16px;
  }

  .section-box{
    padding: 20px;
  }

}
img{
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px){

  h2{
    font-size: 32px;
  }

  .story-text h3,
  .gallery-text h3{
    font-size: 24px;
  }

}