/* =====================================================================
   Hotel Saket Villa — Digital Booking & Concierge
   Design language: modern luxury + Kashi heritage
   ===================================================================== */

:root {
  --color-ivory: #FBF7F0;
  --color-sandstone: #E9DCC9;
  --color-maroon: #6B1E2B;
  --color-maroon-dark: #4A1420;
  --color-gold: #B08D57;
  --color-gold-light: #D4B98C;
  --color-ink: #241C1A;
  --color-muted: #6B615A;
  --color-white: #FFFFFF;

  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 14px;
  --shadow-soft: 0 8px 24px rgba(36, 28, 26, 0.08);
  --shadow-elevated: 0 16px 40px rgba(36, 28, 26, 0.16);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--color-maroon);
  color: #fff; padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--color-maroon); color: #fff; }
.btn-primary:hover { background: var(--color-maroon-dark); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; border-color: var(--color-gold); color: var(--color-maroon); }
.btn-outline:hover { background: var(--color-sandstone); }
.btn-ghost { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }

/* ---------------- Hero ---------------- */
.hero { position: relative; width: 100%; min-height: 92vh; overflow: hidden; background: var(--color-maroon-dark); }
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; border: 0; object-fit: cover; }
.hero-poster { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
  position: relative; z-index: 2;
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px 20px;
  background: linear-gradient(180deg, rgba(36,20,20,0.35) 0%, rgba(36,20,20,0.55) 60%, rgba(36,20,20,0.75) 100%);
}
.hero-logo { width: 96px; height: 96px; object-fit: contain; margin-bottom: 18px; border-radius: 50%; background: #fff; padding: 6px; }
.hero-heading { font-family: var(--font-heading); font-size: clamp(28px, 6vw, 52px); color: #fff; margin: 0 0 8px; }
.hero-subheading { font-size: clamp(15px, 2.4vw, 19px); color: var(--color-gold-light); font-style: italic; margin: 0 0 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------------- Brand strip ---------------- */
.brand-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  background: var(--color-maroon); padding: 14px 16px; position: relative; z-index: 3;
}
.brand-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 14px;
}
.brand-pill:hover { background: rgba(255,255,255,0.12); }
.brand-pill-name { font-weight: 700; }
.brand-pill-tag { font-size: 11px; color: var(--color-gold-light); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------------- Sections ---------------- */
.section {
  max-width: var(--max-width); margin: 0 auto; padding: 64px 20px;
}
.section h2 {
  font-family: var(--font-heading); font-size: clamp(26px, 4vw, 36px);
  color: var(--color-maroon); margin: 0 0 6px; text-align: center;
}
.section-subhead { text-align: center; color: var(--color-muted); margin: 0 0 32px; font-size: 16px; }

/* ---------------- Social strip ---------------- */
.social-strip {
  background: var(--color-sandstone); padding: 18px 20px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
}
.social-icons { display: flex; gap: 16px; flex-wrap: wrap; }
.social-icons a { font-weight: 600; color: var(--color-maroon); font-size: 14px; }
.google-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.google-actions .btn-ghost { background: var(--color-maroon); }

/* ---------------- OTA grid ---------------- */
.ota-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.ota-card {
  background: #fff; border: 1px solid var(--color-sandstone); border-radius: var(--radius);
  padding: 20px 14px; text-align: center; font-weight: 700; color: var(--color-maroon);
  box-shadow: var(--shadow-soft); transition: transform 0.15s ease;
}
.ota-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.ota-card img { height: 32px; margin: 0 auto 10px; object-fit: contain; }

/* ---------------- Forms ---------------- */
.share-form, .enquiry-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-row > * { flex: 1 1 200px; }
input, select, textarea {
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--color-sandstone);
  font-size: 15px; font-family: var(--font-body); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--color-gold); }
.consent-label { font-size: 13px; color: var(--color-muted); display: flex; gap: 8px; align-items: flex-start; }
.form-message { text-align: center; margin-top: 10px; font-weight: 600; min-height: 1.2em; }
.form-message.success { color: #2E6B41; }
.form-message.error { color: var(--color-maroon); }

/* ---------------- Maps ---------------- */
.maps-section { text-align: center; }
.maps-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.maps-embed iframe { width: 100%; height: 320px; border: 0; }
.maps-placeholder { padding: 60px 20px; background: var(--color-sandstone); color: var(--color-muted); }
.maps-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

/* ---------------- Brand sections (hotel/restaurant/cafe) ---------------- */
.brand-section { background: #fff; border-radius: 24px; box-shadow: var(--shadow-soft); }
.hotel-ctas, .brand-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 26px 0; }

.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 10px; }
.room-card { border: 1px solid var(--color-sandstone); border-radius: var(--radius); overflow: hidden; background: var(--color-ivory); }
.room-card img { height: 180px; width: 100%; object-fit: cover; }
.room-card-body { padding: 16px; }
.room-card-body h3 { margin: 0 0 6px; color: var(--color-maroon); }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 10px 0; }
.room-amenities li { background: var(--color-sandstone); padding: 4px 10px; border-radius: 999px; font-size: 12px; }
.room-price { font-weight: 700; color: var(--color-gold); margin: 8px 0; }

.amenities-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.amenity-chip { background: var(--color-maroon); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: 13px; }

.meta-line { text-align: center; color: var(--color-muted); font-size: 14px; margin-bottom: 20px; }
.meta-line span:not(:last-child)::after { content: ' • '; }

.menu-block { max-width: 640px; margin: 0 auto; }
.menu-block h3 { color: var(--color-gold); border-bottom: 1px solid var(--color-sandstone); padding-bottom: 6px; margin-top: 24px; }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--color-sandstone); }
.menu-item-price { color: var(--color-maroon); font-weight: 700; }

/* ---------------- Kashi ---------------- */
.kashi-section { background: linear-gradient(180deg, var(--color-ivory), var(--color-sandstone)); border-radius: 24px; }
.kashi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.kashi-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.kashi-card img { height: 170px; width: 100%; object-fit: cover; }
.kashi-card-body { padding: 16px; }
.kashi-card-body h3 { color: var(--color-maroon); margin: 0 0 6px; }

/* ---------------- Gallery ---------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.empty-state { text-align: center; color: var(--color-muted); grid-column: 1/-1; }

/* ---------------- Reviews ---------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.review-card { background: #fff; border-left: 4px solid var(--color-gold); border-radius: 10px; padding: 18px; box-shadow: var(--shadow-soft); margin: 0; }
.review-card footer { margin-top: 10px; color: var(--color-muted); font-size: 13px; }
.reviews-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ---------------- Payment ---------------- */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.payment-card { background: #fff; border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: var(--shadow-soft); }
.payment-card img { width: 140px; margin: 10px auto; }
.upi-id { font-size: 13px; color: var(--color-muted); }
.copy-upi { border: none; background: var(--color-sandstone); border-radius: 6px; padding: 3px 8px; font-size: 12px; cursor: pointer; margin-left: 6px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--color-maroon-dark); color: #fff; padding: 48px 20px 100px; text-align: center; }
.footer-logo { width: 60px; margin: 0 auto 14px; border-radius: 50%; background: #fff; padding: 6px; }
.footer-social { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 14px 0; }
.footer-social a { color: var(--color-gold-light); font-size: 13px; }
.footer-credit { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 20px; }

/* ---------------- Mobile action bar ---------------- */
.mobile-action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: #fff; border-top: 1px solid var(--color-sandstone);
  display: flex; justify-content: space-around; padding: 8px 4px;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
}
.mobile-action-bar a, .mobile-action-bar button {
  background: none; border: none; font-family: var(--font-body);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 11px; color: var(--color-maroon); font-weight: 600; cursor: pointer;
}
.icon { width: 20px; height: 20px; display: inline-block; border-radius: 50%; background: var(--color-sandstone); }

/* ---------------- Chatbot ---------------- */
.concierge-widget { position: fixed; bottom: 74px; right: 16px; z-index: 950; }
.concierge-toggle {
  background: var(--color-maroon); color: #fff; border: none; border-radius: 999px;
  padding: 12px 18px; font-weight: 700; box-shadow: var(--shadow-elevated); cursor: pointer; font-size: 13px;
}
.concierge-panel {
  position: fixed; bottom: 74px; right: 16px; left: 16px; max-width: 360px; margin-left: auto;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-elevated);
  display: flex; flex-direction: column; max-height: 70vh; overflow: hidden;
}
.concierge-header { background: var(--color-maroon); color: #fff; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.concierge-header button { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
.concierge-messages { padding: 14px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.msg { padding: 10px 14px; border-radius: 14px; max-width: 85%; font-size: 14px; }
.msg-bot { background: var(--color-sandstone); align-self: flex-start; }
.msg-user { background: var(--color-maroon); color: #fff; align-self: flex-end; }
.concierge-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; }
.suggestion { border: 1px solid var(--color-gold); background: none; border-radius: 999px; padding: 5px 10px; font-size: 12px; cursor: pointer; color: var(--color-maroon); }
.concierge-form { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--color-sandstone); }
.concierge-form input { flex: 1; }
.concierge-form button { background: var(--color-maroon); color: #fff; border: none; border-radius: 8px; padding: 0 14px; cursor: pointer; }
.concierge-escalate { display: block; text-align: center; padding: 8px; font-size: 12px; color: var(--color-maroon); background: var(--color-sandstone); }

@media (min-width: 900px) {
  .mobile-action-bar { display: none; }
  .site-footer { padding-bottom: 48px; }
}
