/* =========================================================================
   HOTEL D. MERCY — 2026 DESIGN SYSTEM
   Palette drawn from the property itself: espresso-dark woodwork, brass
   chandelier light, cream marble floors, and the forest greens of Tadoba
   & Karhandla just outside town. Loads after style.css and overrides it.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root{
  /* --- core palette --- */
  --espresso:      #241610;
  --espresso-2:    #34211a;
  --espresso-3:    #4a2f24;
  --cream:         #faf5ec;
  --cream-2:       #f2e8d8;
  --ivory:         #fffcf7;
  --gold:          #c1913f;
  --gold-light:    #e0bd7d;
  --gold-dark:     #9a721f;
  --forest:        #445a3d;
  --forest-dark:   #2c3d27;
  --ink:           #241610;
  --ink-soft:      #6d5c4c;
  --line:          rgba(36,22,16,0.12);
  --line-light:    rgba(255,252,247,0.18);

  /* --- type --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-soft: 0 20px 50px -20px rgba(36,22,16,0.35);
  --shadow-card: 0 12px 30px -12px rgba(36,22,16,0.25);
  --radius: 4px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a{ color: var(--gold-dark); }
a:hover, a:focus{ color: var(--espresso); text-decoration: none; }

::selection{ background: var(--gold); color: var(--ivory); }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  color: var(--espresso);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p{ color: var(--ink-soft); line-height: 1.75; }

.subheading{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.subheading::before{
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.heading-section h2{ font-size: 2.5rem; margin-top: .5rem; }

/* =========================== NAVBAR =================================== */
#ftco-navbar{
  background: rgba(36,22,16,0.92) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
  padding-top: 14px;
  padding-bottom: 14px;
  transition: background .3s ease;
}
#ftco-navbar.scrolled{ background: var(--espresso) !important; box-shadow: var(--shadow-soft); }
.navbar-brand{ display: flex; align-items: center; }
.navbar-brand img{ width: 150px !important; height: auto; filter: drop-shadow(0 0 1px rgba(255,255,255,.3)); }

#ftco-navbar .navbar-nav .nav-link{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-2) !important;
  padding: 10px 18px !important;
  position: relative;
}
#ftco-navbar .navbar-nav .nav-item.active .nav-link,
#ftco-navbar .navbar-nav .nav-link:hover{ color: var(--gold-light) !important; }
#ftco-navbar .navbar-nav .nav-item.active .nav-link::after{
  content:'';
  position:absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 1px;
  background: var(--gold);
}
.navbar-toggler{ border-color: var(--line-light) !important; }
.navbar-toggler .oi{ color: var(--cream) !important; }

/* =========================== BUTTONS =================================== */
.btn{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 14px 30px;
  transition: all .25s ease;
  border: 1px solid transparent;
}
.btn-primary{
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--espresso) !important;
}
.btn-primary:hover{
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: var(--ivory) !important;
  transform: translateY(-2px);
}
.btn-secondary{
  background: transparent !important;
  border: 1px solid var(--espresso) !important;
  color: var(--espresso) !important;
}
.btn-secondary:hover{
  background: var(--espresso) !important;
  color: var(--ivory) !important;
}
.btn-outline-white{
  background: transparent !important;
  border: 1px solid rgba(255,252,247,.55) !important;
  color: var(--ivory) !important;
}
.btn-outline-white:hover{ background: var(--ivory) !important; color: var(--espresso) !important; }

/* =========================== HERO / SLIDER ============================= */
.hero .slider-item{ background-size: cover; background-position: center; }
.hero .overlay{
  background: linear-gradient(100deg, rgba(24,15,10,.88) 0%, rgba(24,15,10,.55) 45%, rgba(24,15,10,.25) 100%);
}
.hero .slider-text .text > span.subheading{ color: var(--gold-light); }
.hero h2{
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  margin-bottom: 18px;
}
.hero h1{
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--ivory) !important;
  font-size: 3.4rem;
  line-height: 1.15;
}
.hero-wrap .overlay,
.hero-wrap-2 .overlay{ background: rgba(24,15,10,.72); }
.bread{ color: var(--ivory) !important; font-style: italic; }
.breadcrumbs a, .breadcrumbs span{ color: var(--cream-2); }

/* =========================== BOOKING BAR =============================== */
.ftco-booking .booking-form{
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  margin-top: -70px;
  position: relative;
  z-index: 10;
}
.ftco-booking label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.ftco-booking .form-control{
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding-left: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--espresso);
  background: transparent;
}
.ftco-booking .form-control:focus{ box-shadow: none; border-color: var(--gold); }
.ftco-booking .btn-primary{ height: 100%; }
.ftco-booking .btn-primary small{ display:block; font-size: 10px; font-weight: 400; letter-spacing: .05em; text-transform: none; opacity:.75; margin-top:2px; }

/* =========================== SERVICE / ICON STRIP ======================= */
.block-6.services{
  cursor: pointer;
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}
.block-6.services:hover, .block-6.services.active{ background: var(--cream-2); }
.block-6.services .icon{
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 14px;
  transition: background .25s ease;
}
.block-6.services .icon span, .block-6.services .icon svg{ color: var(--gold-dark) !important; fill: var(--gold-dark) !important; font-size: 28px; }
.block-6.services:hover .icon{ background: var(--gold); }
.block-6.services:hover .icon span, .block-6.services:hover .icon svg{ color: var(--ivory) !important; fill: var(--ivory) !important; }
.block-6.services h3.heading{ font-size: 1rem; letter-spacing: .02em; }

/* =========================== ABOUT SPLIT ================================ */
.wrap-about .img{ box-shadow: var(--shadow-card); }

/* =========================== ROOM CARDS ================================= */
.room{
  background: var(--ivory);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.room .img{ position: relative; }
.room .img .price{
  position: absolute; bottom: 14px; left: 14px;
  background: var(--espresso);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: .95rem;
}
.room .text{ padding: 26px 24px 28px; }
.room h3{ font-size: 1.3rem; margin-bottom: 10px; }
.room .d-flex.mt-3 > div{
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================== MENU / RESTAURANT ========================== */
.menu-item .text{ border-bottom: 1px dashed var(--line); padding-bottom: 14px; }
.menu-item .price{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

/* =========================== TESTIMONY =================================== */
.testimony-section{ background: var(--espresso); }
.testimony-section .heading-section span.subheading{ color: var(--gold-light); }
.testimony-section h2{ color: var(--ivory); }
.testimony-wrap{
  background: var(--espresso-2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.testimony-wrap p{ color: var(--cream-2); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.testimony-wrap .name{ color: var(--gold-light); font-weight: 600; }
.testimony-wrap .position{ color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing:.08em; }

/* =========================== GALLERY ===================================== */
.gallery{ position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(36,22,16,0) 55%, rgba(36,22,16,.75) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.gallery:hover::after{ opacity: 1; }
.gallery .icon{ z-index: 2; }

/* =========================== FOOTER ======================================= */
.ftco-footer{ background: var(--espresso) !important; }
.ftco-footer h2.ftco-heading-2{ color: var(--ivory); font-size: 1.2rem; }
.ftco-footer p, .ftco-footer li, .ftco-footer a{ color: var(--cream-2) !important; }
.ftco-footer a:hover{ color: var(--gold-light) !important; }
.ftco-footer .ftco-footer-social li a{
  border: 1px solid var(--line-light);
  background: transparent;
}
.ftco-footer .ftco-footer-social li a:hover{ background: var(--gold); border-color: var(--gold); color: var(--espresso) !important; }
.ftco-footer-widget .block-23 ul li span{ color: var(--gold-light); }
.copyright{ border-top: 1px solid var(--line-light); padding-top: 24px; margin-top: 10px; }
.copyright p, .copyright a{ color: var(--ink-soft) !important; font-size: 13px; }

/* =========================== CONTACT ======================================= */
.contact-form{
  box-shadow: var(--shadow-card) !important;
  border-radius: var(--radius);
}
.contact-form .form-control{
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 16px;
  height: auto;
}
.contact-form .form-control:focus{ border-color: var(--gold); box-shadow: 0 0 0 3px rgba(193,145,63,.15); }
.block-9 .icon{
  background: var(--espresso) !important;
  color: var(--gold-light) !important;
}

/* =========================== PORTRAIT FRAME (owner/team photos) ========== */
.portrait-frame{
  position: relative;
  padding: 14px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}
.portrait-frame .portrait-inner{
  background-color: var(--espresso);
  background-size: cover;
  background-position: top center;
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 3px;
}
.portrait-frame .portrait-caption{
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -26px;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
  padding: 16px 22px;
  border-radius: 2px;
}
.portrait-frame .portrait-caption .name{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--espresso);
  line-height: 1.2;
}
.portrait-frame .portrait-caption .role{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
  display: block;
}
.portrait-frame .corner-mark{
  position: absolute;
  top: -14px; right: -14px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--espresso);
  border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1rem;
  box-shadow: var(--shadow-card);
}

/* =========================== TESTIMONIAL QUOTE CARDS ====================== */
.quote-card{
  background: var(--espresso-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 40px 34px 30px;
  height: 100%;
  position: relative;
}
.quote-card .quote-mark{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.quote-card .stars{ color: var(--gold-light); font-size: .85rem; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p.quote-text{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-2);
  font-size: 1.08rem;
  line-height: 1.6;
  min-height: 96px;
}
.quote-card .who{ border-top: 1px solid var(--line-light); margin-top: 18px; padding-top: 14px; }
.quote-card .who .name{ color: var(--gold-light); font-weight: 600; font-size: .95rem; }
.quote-card .who .meta{ color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

/* =========================== BADGES / SEAL (signature motif) ============== */
/* Brass roundel echoing the hotel's own D.M monogram badge — used to number
   or mark featured content across the site. */
.seal{
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* =========================== MISC ========================================= */
.ftco-section{ padding: 6em 0; }
.bg-light{ background: var(--cream-2) !important; }
hr.gold-rule{ border: none; height: 1px; width: 60px; background: var(--gold); margin: 22px 0; }

@media (max-width: 767.98px){
  .hero h1{ font-size: 2.1rem; }
  .ftco-booking .booking-form{ margin-top: 20px; }
  .heading-section h2{ font-size: 1.8rem; }
}
