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

:root {
  --black: #080706;
  --deep: #110e0c;
  --gold: #d4af37;
  --light-gold: #f3e5ab;
  --ivory: #faf5eb;
  --muted: #c2b29c;
  --stone: #5c4e3f;
  --card: #16120e;
  --whatsapp: #25D366;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ivory);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: 0.3s ease; }
p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; font-weight: 300; }
.container { width: min(1120px, 86%); margin: auto; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; font-weight: 400; }
h1 {
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1.1;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}
h2 { font-size: clamp(34px, 5vw, 52px); color: var(--gold); line-height: 1.2; }
h3 { font-size: 28px; color: var(--light-gold); line-height: 1.3; }

.eyebrow {
  color: var(--light-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.tagline { 
  font-size: 21px; 
  letter-spacing: 6px; 
  text-transform: uppercase; 
  color: var(--ivory); 
  font-weight: 300;
  margin-top: 10px;
}
.hero-text { font-size: 18px; max-width: 610px; margin-top: 24px; font-weight: 300; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 7%;
  background: rgba(8, 7, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  padding: 12px 7%;
  background: rgba(8, 7, 6, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo {
  display: flex; align-items: center; gap: 14px;
  text-transform: uppercase; letter-spacing: 2px; color: var(--gold);
  font-family: var(--font-serif);
}
.logo-mark {
  width: 44px; height: 44px; 
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; 
  font-size: 18px;
}
.logo small { display: block; color: var(--ivory); letter-spacing: 4px; font-size: 10px; font-family: var(--font-sans); margin-top: 2px; }
nav { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
nav a:hover { color: var(--gold); }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px 7% 80px;
  background:
    linear-gradient(90deg, rgba(8,7,6,.95) 0%, rgba(8,7,6,.7) 45%, rgba(8,7,6,0) 80%),
    url("assets/images/jhansi-fort-view-hotel.jpg") center/cover no-repeat;
}
.hero-content { max-width: 720px; animation: fadeIn 1.2s ease-out; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.5);
  cursor: pointer;
}
.btn.primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn.primary:hover {
  background: var(--light-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn:not(.primary):hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

/* Feature Strip */
.feature-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--deep);
}
.feature-strip div {
  padding: 24px 12px; text-align: center; color: var(--gold); font-weight: 400;
  border-right: 1px solid rgba(212, 175, 55, 0.1);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

/* Layout */
.section { padding: 100px 0; }
.section-title { max-width: 760px; margin-bottom: 48px; text-align: center; margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-color: rgba(212, 175, 55, 0.4);
}
.card img { width: 100%; height: 280px; object-fit: cover; }
.card-body { padding: 32px; }
.card ul { color: var(--muted); line-height: 1.9; padding-left: 20px; font-weight: 300; }

/* View Block */
.view-block {
  padding: 160px 0;
  background:
    linear-gradient(90deg, rgba(8,7,6,.95), rgba(8,7,6,.4)),
    url("assets/images/hotel-opposite-jhansi-fort.jpg") center/cover no-repeat;
  background-attachment: fixed;
}
.view-block .container { max-width: 700px; margin-left: 7%; }

/* OTA / Info Cards */
.ota-card, .info-card {
  padding: 36px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(145deg, #15110d, #0b0907);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}
.ota-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.ota-card strong { display:block; font-size: 32px; color: var(--gold); font-family: var(--font-serif); margin-bottom: 12px; }
.ota-card span { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--ivory); }

/* Gallery Layout */
.gallery-container {
  padding: 40px 0;
}
.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
  gap: 16px; 
}
.gallery-grid img { 
  height: 250px; 
  width: 100%; 
  object-fit: cover; 
  border-radius: 4px; 
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  filter: brightness(0.85);
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  z-index: 1;
}

/* Room Slider */
.slider-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
}
.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* Maps & Reviews */
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(80%) contrast(1.2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--card);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.review-stars { color: var(--gold); margin-bottom: 15px; font-size: 20px; }

/* FAQ */
.faq details {
  background: var(--card); border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 24px; border-radius: 8px; margin-bottom: 16px;
  transition: background 0.3s;
}
.faq details:hover { background: #1a1510; }
.faq summary { cursor: pointer; color: var(--gold); font-weight: 500; font-size: 1.1rem; list-style-position: inside; }
.faq summary::-webkit-details-marker { color: var(--gold); }
.faq p { margin-top: 16px; margin-bottom: 0; }

/* CTA Band */
.cta-band {
  padding: 80px 0; background: linear-gradient(135deg, #1f170e, #0f0d0b);
  border-top: 1px solid rgba(212, 175, 55, 0.2); border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.cta-flex { display:flex; justify-content:space-between; align-items:center; gap:40px; }

/* Footer */
.footer {
  padding: 80px 0 40px; background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-grid { display:grid; grid-template-columns: 1fr 1fr; gap:40px; }
.footer h2 { margin-bottom: 16px; }
.footer-actions { display:flex; flex-wrap:wrap; gap:16px; align-items: flex-start; align-content: flex-start; }
.footer-actions a { 
  padding: 12px 20px; 
  border: 1px solid rgba(212, 175, 55, 0.3); 
  border-radius: 4px; 
  color: var(--gold); 
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-actions a:hover { background: rgba(212, 175, 55, 0.1); }

/* Floating Elements */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s;
}
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; }

.mobile-sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 99;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 30px;
  color: var(--muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.6; }

/* Responsive */
@media(max-width: 900px) {
  .site-header { flex-direction: column; padding: 15px 5%; background: rgba(8, 7, 6, 0.95); }
  nav { margin-top: 15px; flex-wrap: wrap; justify-content: center; gap: 15px; }
  .hero { 
    padding-top: 200px; 
    text-align: center;
    background:
      linear-gradient(0deg, rgba(8,7,6,1) 0%, rgba(8,7,6,.7) 40%, rgba(8,7,6,0) 90%),
      url("assets/images/jhansi-fort-view-hotel.jpg") center/cover no-repeat;
  }
  .hero-content { margin: auto; }
  .btn-row { justify-content: center; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-strip div:last-child { grid-column: span 2; border-right: none; }
  .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .cta-flex { flex-direction: column; text-align: center; }
  .section-title { text-align: left; }
}

@media(max-width: 600px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip div:last-child { grid-column: auto; }
  .floating-whatsapp { bottom: 80px; right: 20px; left: auto; width: 50px; height: 50px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
  .mobile-sticky-book { display: block; }
  body { padding-bottom: 60px; /* space for sticky button */ }
}
.badge-renovated {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #d4af37, #aa8123);
  color: #12100e;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
  animation: pulseGold 2s infinite;
}
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

