/* ==========================================================================
   HOTEL GRAND SHIVA — PREMIUM DESIGN ENHANCEMENT LAYER
   Load this AFTER style.css and responsive.css.
   This file only restyles existing markup/classes — no HTML/content changes.
   ========================================================================== */

:root{
  --gs-gold: #b18a51;
  --gs-gold-dark: #8f6c3a;
  --gs-gold-light: #d9c093;
  --gs-dark: #101010;
  --gs-ink: #2b2620;
  --gs-cream: #faf7f2;
  --gs-cream-2: #f3ede3;
  --gs-shadow: 0 10px 30px rgba(17, 12, 5, 0.08);
  --gs-shadow-lg: 0 20px 45px rgba(17, 12, 5, 0.14);
  --gs-radius: 10px;
  --gs-ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- Base type & rhythm ---------- */
body{
  font-family: 'Jost', 'Roboto', sans-serif;
  color: var(--gs-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,.about-title h2,.f-widget-title h2,.signature-text{
  font-family: 'Playfair Display', serif;
  letter-spacing: .2px;
}
::selection{ background: var(--gs-gold); color:#fff; }
a{ transition: color .25s var(--gs-ease); }
img{ transition: transform .5s var(--gs-ease), filter .5s var(--gs-ease); }

/* thin premium scrollbar */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--gs-cream-2); }
::-webkit-scrollbar-thumb{ background: var(--gs-gold); border-radius: 10px; }

/* subtle warm page background instead of stark white */
body{ background-color: #fffdfb; }

/* ---------- Header / Navigation ---------- */
.header-top.second-header{
  background: var(--gs-dark);
  letter-spacing: .3px;
}
.header-cta i{
  color: var(--gs-gold);
  margin-right: 6px;
}
.header-three .menu-area{
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
}
#header-sticky.sticky-menu{
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.header-three .main-menu ul li a{
  font-weight: 500;
  letter-spacing: .3px;
  padding: 8px 2px;
  position: relative;
}
.header-three .main-menu > ul > li{
  margin: 0 4px;
}
.header-three .main-menu > ul > li > a::after{
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -4px;
  height: 2px;
  background: var(--gs-gold);
  transition: left .3s var(--gs-ease), right .3s var(--gs-ease);
}
.header-three .main-menu > ul > li:hover > a::after{
  left: 0; right: 0;
}
.header-three .main-menu > ul > li:hover > a,
.header-three .main-menu ul li a:hover{
  color: var(--gs-gold) !important;
}
.main-menu .sub-menu, .menu .children{
  box-shadow: var(--gs-shadow-lg);
  border-top: 3px solid var(--gs-gold);
}
.logo img{
  transition: transform .4s var(--gs-ease);
}
.logo:hover img{ transform: scale(1.04); }

/* ---------- Buttons ---------- */
.btn{
  border-radius: 4px;
  letter-spacing: 1.4px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(177,138,81,.32);
  background: linear-gradient(135deg, var(--gs-gold) 0%, var(--gs-gold-dark) 100%);
  transition: transform .35s var(--gs-ease), box-shadow .35s var(--gs-ease), background .35s var(--gs-ease);
}
.btn:hover{
  background: linear-gradient(135deg, var(--gs-dark) 0%, #2b2620 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
}
.btn.ss-btn.active{
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
.slider-bg .text2 .btn.ss-btn.active:hover,
.btn.ss-btn.active:hover{
  transform: translateY(-3px);
}

/* ---------- Section titles ---------- */
.section-title h5{
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-title h5::before,
.section-title h5::after{
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gs-gold);
  display: inline-block;
}
.section-title h2{
  font-size: 42px;
  font-weight: 700;
  color: var(--gs-dark);
}
.section-title p{
  color: #6f7172;
  line-height: 1.8;
}

/* ---------- Room / service cards ---------- */
.single-services{
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  transition: transform .45s var(--gs-ease), box-shadow .45s var(--gs-ease);
}
.single-services:hover{
  transform: translateY(-8px);
  box-shadow: var(--gs-shadow-lg);
}
.services-thumb{ overflow: hidden; }
.services-thumb img{ height: 260px; object-fit: cover; width: 100%; }
.single-services:hover .services-thumb img{ transform: scale(1.08); }
.single-services .day-book{
  border-radius: 0 0 0 var(--gs-radius);
  box-shadow: 0 8px 18px rgba(177,138,81,.35);
}
.single-services .day-book li{ font-weight: 600; letter-spacing: .3px; }
.services-content{ padding: 26px 24px 34px; }
.services-content h4{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}
.services-content h4 a{ color: var(--gs-dark); }
.services-content p{ text-align: left; color: #6f7172; line-height: 1.75; }
.services-content span{ background: var(--gs-gold-light); width: 60px; }
.single-services:hover .services-content span{ width: 90px; background: var(--gs-gold); }
.single-services .icon li img{ opacity: .75; transition: opacity .3s; }
.single-services:hover .icon li img{ opacity: 1; }

/* ---------- Facility / amenity icon boxes ---------- */
.services-08-item{
  background: #fff;
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow);
  padding: 34px 18px;
  text-align: center;
  transition: transform .4s var(--gs-ease), box-shadow .4s var(--gs-ease);
}
.services-08-item:hover{
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-lg);
}
.services-08-item .services-icon2{
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b1b1b 0%, var(--gs-dark) 100%);
  border: 2px solid var(--gs-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--gs-ease), box-shadow .35s var(--gs-ease);
}
.services-08-item .services-icon2 img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.services-08-item:hover .services-icon2{
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(177,138,81,.4);
  border-color: var(--gs-gold);
}
.services-08-item .services-08-thumb{ display: none; }
.services-08-item h3{
  font-size: 17px;
  margin-top: 4px;
  color: var(--gs-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.single-testimonial{
  background: #fff;
  border-radius: var(--gs-radius);
  padding: 34px 30px;
  box-shadow: var(--gs-shadow-lg);
}
.single-testimonial p{
  font-style: italic;
  color: #555;
  line-height: 1.8;
}
.review-icon i{ color: var(--gs-gold); }

/* ---------- Blog / attraction cards ---------- */
.single-post2{
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  background: #fff;
  transition: transform .4s var(--gs-ease), box-shadow .4s var(--gs-ease);
}
.single-post2:hover{
  transform: translateY(-8px);
  box-shadow: var(--gs-shadow-lg);
}
.blog-thumb2{ overflow: hidden; }
.blog-thumb2 img{ height: 220px; object-fit: cover; width: 100%; }
.single-post2:hover .blog-thumb2 img{ transform: scale(1.08); }
.blog-content2{ padding: 22px 22px 26px; }
.blog-content2 h4 a{ font-family: 'Playfair Display', serif; color: var(--gs-dark); }
.blog-btn a{
  color: var(--gs-gold);
  font-weight: 600;
  letter-spacing: .5px;
}
.blog-btn a:hover{ color: var(--gs-dark); }

/* ---------- Gallery ---------- */
.gallery-image{ border-radius: 6px; overflow: hidden; }
.gallery-image img{ transition: transform .5s var(--gs-ease); }
.gallery-image:hover img{ transform: scale(1.1); }
.banking{ border-radius: 6px; overflow: hidden; box-shadow: var(--gs-shadow); }

/* ---------- About / why-stay section ---------- */
.about-title h5{ color: var(--gs-gold); letter-spacing: 2px; }
.about-content p{ color: #6f7172; line-height: 1.85; }

/* ---------- FAQ (inline block on some pages) ---------- */
.faq-item{ border-radius: var(--gs-radius) !important; box-shadow: var(--gs-shadow) !important; }
.faq-question{
  background: linear-gradient(135deg, var(--gs-gold) 0%, var(--gs-gold-dark) 100%) !important;
  letter-spacing: .5px;
}
.faq-question:hover{ background: var(--gs-dark) !important; }

/* ---------- Footer ---------- */
.footer-bg{ background-color: var(--gs-dark) !important; }
.footer-top{ border-top: 3px solid var(--gs-gold); }
.f-widget-title h2{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}
.f-widget-title h2::before{ background: var(--gs-gold); width: 50px; height: 2px; }
.f-contact ul li{ line-height: 1.7; }
.f-contact ul li i.icon{
  color: var(--gs-dark) !important;
  background: var(--gs-gold);
  border-radius: 50%;
}
.footer-link ul li a{ transition: padding-left .3s var(--gs-ease); }
.footer-link ul li a:hover{ padding-left: 6px; color: var(--gs-gold) !important; }
.copyright-text,.footer-bottom{ border-top: 1px solid rgba(255,255,255,.08); }

/* ---------- Misc polish ---------- */
.slider-active{ background: var(--gs-dark); }
.single-slider::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
  z-index: 0;
  pointer-events: none;
}
.single-slider .container{ position: relative; z-index: 1; }

/* smoother WOW-driven reveals already used across pages */
.wow{ visibility: visible !important; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 767px){
  .section-title h2{ font-size: 30px; }
  .services-content{ padding: 20px 18px 26px; }
  .single-services{ margin: 0 6px 20px; }
}

/* ==========================================================================
   PREMIUM LAYER v2 — deeper polish pass (still CSS-only, no content edits)
   ========================================================================== */

/* ---------- Hero: slow Ken Burns drift + gradient headline ---------- */
@keyframes gsKenBurns{
  0%   { transform: scale(1); }
  100% { transform: scale(1.09); }
}
.slider-active .slick-list{ overflow: hidden; }
.single-slider.slider-bg{
  animation: gsKenBurns 12s ease-in-out infinite alternate;
  will-change: transform;
}
.single-slider .slider-content h2{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 29px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: .3px;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}

/* Button micro-interaction: quiet arrow glide, drawn with CSS only */
.btn{ overflow: hidden; padding-right: 46px; }
.btn::after{
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: right .35s var(--gs-ease);
}
.btn:hover::after{ right: 14px; }

/* ---------- Inner page banners / breadcrumb ---------- */
.breadcrumb-area{ position: relative; }
.breadcrumb-area::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,5,.35) 0%, rgba(10,8,5,.72) 100%);
}
.breadcrumb-wrap{ position: relative; z-index: 1; }
.breadcrumb-title h2{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.breadcrumb-item a{ transition: color .25s var(--gs-ease); }
.breadcrumb-item a:hover{ color: var(--gs-gold-light) !important; }

/* ---------- Section title ornament ---------- */
.section-title{ position: relative; }
.section-title h5{
  position: relative;
  padding: 0 4px;
}

/* ---------- Forms (contact / enquiry / room booking) ---------- */
.contact-field input,
.contact-field textarea,
.contact-field select,
.room-booking-body input,
.room-booking-body select{
  border-radius: 6px !important;
  transition: border-color .3s var(--gs-ease), box-shadow .3s var(--gs-ease);
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus,
.room-booking-body input:focus,
.room-booking-body select:focus{
  border-color: var(--gs-gold) !important;
  box-shadow: 0 0 0 3px rgba(177,138,81,.15);
  outline: none;
}
.room-booking-head{
  background: linear-gradient(135deg, var(--gs-cream-2) 0%, #fff 100%) !important;
  border-bottom: 2px solid var(--gs-gold) !important;
}
.room-booking-card, .related-card{
  box-shadow: var(--gs-shadow-lg) !important;
}

/* ---------- Tables (tariff, comparisons) ---------- */
.table-responsive{
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
}
table.table{
  margin-bottom: 0;
  background: #fff;
}
table.table th{
  background: linear-gradient(135deg, var(--gs-gold) 0%, var(--gs-gold-dark) 100%);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 13px;
  border: none !important;
  padding: 16px 14px;
}
table.table td{
  padding: 14px;
  vertical-align: middle;
  color: var(--gs-ink);
  border-color: #eee2d1 !important;
}
table.table tbody tr:nth-child(even){ background: var(--gs-cream); }
table.table tbody tr:hover{ background: var(--gs-cream-2); }

/* ---------- Sidebar widgets (blog / SEO landing pages) ---------- */
.sidebar-widget{
  background: #fff;
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow);
  padding: 24px;
}

/* ---------- Global scroll-reveal smoothing ---------- */
.wow{
  animation-duration: .9s !important;
}

/* ---------- Fine typography rhythm ---------- */
p{ line-height: 1.8; }
.about-content3 li{ line-height: 1.9; }

/* ---------- Sticky call-to-action polish (if theme uses scrollUp) ---------- */
#scrollUp{
  background: var(--gs-gold) !important;
  border-radius: 50% !important;
  box-shadow: var(--gs-shadow-lg);
}

@media (max-width: 767px){
  .single-slider .slider-content h2{ font-size: 30px; }
}
