/* ============================================================
   Hotel Sartaj — Main Stylesheet
   ============================================================ */

:root {
  --gold: #c9a227;
  --gold-dark: #a8841b;
  --charcoal: #1c1c1c;
  --charcoal-soft: #2a2a2a;
  --cream: #f7f2e9;
  --cream-dark: #ece3d2;
  --white: #ffffff;
  --text: #333333;
  --text-light: #6b6b6b;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--gold);
  font-size: 15px;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn-light { border-color: #fff; color: #fff; }
.btn-light:hover { background: #fff; color: var(--charcoal); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--charcoal);
  color: #cfcfcf;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar a { color: #cfcfcf; transition: color 0.3s; }
.topbar a:hover { color: var(--gold); }
.topbar .left span, .topbar .left a { margin-right: 18px; }
.topbar .right a { margin-left: 14px; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--gold); font-size: 20px;
}
.logo-text { line-height: 1.1; }
.logo-text strong { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--charcoal); display: block; }
.logo-text small { font-size: 11px; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.book-btn { margin-left: 12px; }

.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--charcoal); }

/* ---------- Hero Slider ---------- */
.hero { position: relative; height: 90vh; min-height: 560px; overflow: hidden; }
.slides { height: 100%; position: relative; }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; }
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.25));
}
.slide .hero-content { position: relative; z-index: 2; color: #fff; max-width: 640px; }
.hero-content .eyebrow {
  display: inline-block; letter-spacing: 3px; text-transform: uppercase;
  font-size: 13px; color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.hero-content h1 {
  font-size: clamp(34px, 5vw, 60px); line-height: 1.1; margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-content p { font-size: 18px; margin-bottom: 30px; color: #eee; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; transition: 0.3s; }
.hero-dots button.active { background: var(--gold); border-color: var(--gold); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(0,0,0,0.4); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 20px; cursor: pointer; transition: 0.3s; }
.hero-arrow:hover { background: var(--gold); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ---------- Booking Bar ---------- */
.booking-bar {
  background: var(--charcoal);
  margin-top: -40px;
  position: relative;
  z-index: 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
}
.booking-bar .field label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 6px; }
.booking-bar .field input, .booking-bar .field select {
  width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid #444;
  background: #232323; color: #fff; font-family: inherit; font-size: 14px;
}
.booking-bar .field input:focus, .booking-bar .field select:focus { outline: none; border-color: var(--gold); }

/* ---------- Section Heading ---------- */
.sec-head { text-align: center; margin-bottom: 50px; }
.sec-head .eyebrow { color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-size: 13px; font-weight: 600; }
.sec-head h2 { font-size: clamp(28px, 4vw, 44px); color: var(--charcoal); margin: 8px 0 14px; }
.sec-head p { max-width: 640px; margin: 0 auto; color: var(--text-light); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img .badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--gold); color: #fff;
  padding: 22px 26px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
}
.about-img .badge strong { font-family: 'Playfair Display', serif; font-size: 34px; display: block; line-height: 1; }
.about-img .badge span { font-size: 12px; letter-spacing: 1px; }
.about-text h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--charcoal); margin-bottom: 18px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-feats li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about-feats li::before { content: '✦'; color: var(--gold); }

/* ---------- Rooms ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.room-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 22px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.room-card img { height: 230px; width: 100%; object-fit: cover; }
.room-body { padding: 24px; }
.room-body h3 { color: var(--charcoal); font-size: 22px; margin-bottom: 8px; }
.room-body .price { color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.room-body p { color: var(--text-light); font-size: 14.5px; margin-bottom: 18px; }
.room-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-light); margin-bottom: 16px; flex-wrap: wrap; }
.room-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Attractions ---------- */
.attr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.attr-card { border-radius: var(--radius); overflow: hidden; position: relative; height: 300px; }
.attr-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.attr-card:hover img { transform: scale(1.08); }
.attr-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 55%); }
.attr-card .attr-info { position: absolute; bottom: 18px; left: 18px; right: 18px; color: #fff; z-index: 2; }
.attr-card .attr-info h3 { font-size: 20px; margin-bottom: 4px; }
.attr-card .attr-info p { font-size: 13px; color: #ddd; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: var(--charcoal); color: #fff; padding: 34px 28px; border-radius: var(--radius); position: relative; }
.testi-card .quote { color: var(--gold); font-size: 46px; font-family: serif; line-height: 1; }
.testi-card p { font-style: italic; margin: 14px 0 20px; color: #e0e0e0; }
.testi-card .name { font-weight: 600; color: var(--gold); }
.testi-card .role { font-size: 13px; color: #aaa; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(rgba(28,28,28,0.88), rgba(28,28,28,0.88)), url('../assets/front%20hotel%20pic.jpeg'); background-size: cover; background-position: center; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta p { color: #ddd; max-width: 600px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
footer { background: var(--charcoal); color: #bbb; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; margin-bottom: 40px; }
footer h4 { color: #fff; font-size: 18px; margin-bottom: 18px; font-family: 'Playfair Display', serif; }
footer a { color: #bbb; transition: color 0.3s; }
footer a:hover { color: var(--gold); }
.footer-about p { font-size: 14px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; font-size: 14px; }
.footer-contact li { margin-bottom: 12px; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .ic { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid #444; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: 0.3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; color: #888; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  height: 50vh; min-height: 360px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; position: relative; background-size: cover; background-position: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.page-hero .ph-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 10px; }
.breadcrumb { font-size: 14px; color: #ddd; }
.breadcrumb a { color: var(--gold); }

/* ---------- Amenities ---------- */
.amen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.amen-card { display: flex; gap: 20px; background: var(--cream); padding: 26px; border-radius: var(--radius); transition: transform 0.3s; }
.amen-card:hover { transform: translateY(-5px); }
.amen-icon { font-size: 34px; color: var(--gold); line-height: 1; flex-shrink: 0; }
.amen-card h3 { color: var(--charcoal); margin-bottom: 8px; font-size: 20px; }
.amen-card p { color: var(--text-light); font-size: 14.5px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid a { overflow: hidden; border-radius: 8px; height: 240px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; cursor: pointer; }
.gallery-grid a:hover img { transform: scale(1.1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; z-index: 2000; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85%; border-radius: 6px; }
.lightbox .close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 40px; cursor: pointer; }
.lightbox .nav-lb { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 40px; cursor: pointer; background: none; border: none; }
.lightbox .prev-lb { left: 30px; }
.lightbox .next-lb { right: 30px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h3 { color: var(--charcoal); margin-bottom: 18px; font-size: 24px; }
.contact-info ul li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-info .ic { color: var(--gold); font-size: 20px; }
.contact-info a:hover { color: var(--gold); }
.contact-form { background: var(--cream); padding: 34px; border-radius: var(--radius); }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; margin-bottom: 6px; color: var(--charcoal); font-weight: 500; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--cream-dark); border-radius: 6px;
  font-family: inherit; font-size: 14px; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.map-wrap { margin-top: 50px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .rooms-grid, .testi-grid, .attr-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr; }
  .booking-bar { grid-template-columns: repeat(2, 1fr); }
  .booking-bar .book-btn { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; padding: 10px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; }
  .nav-links a::after { display: none; }
  .book-btn { margin: 6px 24px 14px; text-align: center; }
  .hero { height: 78vh; }
  .rooms-grid, .testi-grid, .attr-grid, .gallery-grid { grid-template-columns: 1fr; }
  .about-feats { grid-template-columns: 1fr; }
  .booking-bar { grid-template-columns: 1fr; margin-top: -20px; }
  .booking-bar .book-btn { grid-column: span 1; }
  .section { padding: 60px 0; }
}
