/* Hotel Utsav - Itahari, Nepal
   Brand colors taken from logo: deep red, royal blue, warm cream */

:root {
  --primary: #b8232f;       /* logo red */
  --primary-dark: #8a1a23;
  --secondary: #1f3a8a;     /* royal blue */
  --accent: #d4a24c;        /* warm gold */
  --dark: #1a1a1a;
  --light: #fdfaf3;
  --muted: #6b6b6b;
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #2a2a2a;
  background: var(--light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
}

a { text-decoration: none; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--dark);
  color: #f1f1f1;
  font-size: 0.85rem;
  padding: 6px 0;
}
.top-bar a { color: #f1f1f1; transition: color 0.2s; }
.top-bar a:hover { color: var(--accent); }
.top-bar i { color: var(--accent); margin-right: 6px; }

/* ============ NAVBAR ============ */
.navbar {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.navbar-brand {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand span.tag {
  font-size: 0.7rem;
  color: var(--secondary);
  font-weight: 500;
  display: block;
  line-height: 1;
  letter-spacing: 2px;
}
.navbar .nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 6px;
  position: relative;
  padding: 8px 4px !important;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
  left: 0;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--primary) !important; }

.btn-book {
  background: var(--primary);
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 26px !important;
  margin-left: 14px;
  margin-top: 4px;
  margin-bottom: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(184,35,47,0.25);
  transition: all 0.3s;
}
.btn-book:hover {
  background: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184,35,47,0.35);
}
.btn-book::after { display: none !important; }
@media (max-width: 991px) {
  .btn-book {
    margin: 12px 0 4px 0;
    display: inline-block;
    padding: 10px 26px !important;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/hu3.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero p.lead {
  font-size: 1.25rem;
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero .badge-stars {
  background: var(--accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.btn-primary-custom {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-custom {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-left: 12px;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline-custom:hover {
  background: #fff;
  color: var(--primary);
}

/* page hero (smaller) */
.page-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hu9.jpg') center/cover no-repeat;
  color: #fff;
  padding: 110px 0 70px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 2.8rem; margin-bottom: 8px; }
.page-hero .breadcrumb-trail { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb-trail a { color: var(--accent); }

/* ============ SECTION ============ */
section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title small {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: 2.4rem;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
}

/* ============ FEATURES ============ */
.feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border-bottom-color: var(--primary);
}
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
}
.feature-card h5 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============ ABOUT ============ */
.about-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.about-img .stat-overlay {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: var(--primary);
  color: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.about-img .stat-overlay strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}
.about-img .stat-overlay span { font-size: 0.85rem; opacity: 0.9; }

.about-content small.kicker {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.about-content h2 {
  font-size: 2.3rem;
  margin: 6px 0 18px;
}
.about-content ul { list-style: none; padding: 0; }
.about-content ul li {
  padding: 7px 0 7px 28px;
  position: relative;
}
.about-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ ROOMS ============ */
.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: all 0.3s;
  height: 100%;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
.room-card .room-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.room-card .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.room-card:hover .room-img img { transform: scale(1.08); }
.room-card .price-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}
.room-card .room-body { padding: 22px; }
.room-card h4 { font-size: 1.3rem; margin-bottom: 8px; }
.room-card .amenities {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.room-card .amenities li {
  background: #f4f0e8;
  color: var(--dark);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 30px;
}
.room-card .amenities li i { color: var(--primary); margin-right: 4px; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ============ TESTIMONIAL / CTA ============ */
.cta-banner {
  background: linear-gradient(rgba(184,35,47,0.92), rgba(138,26,35,0.92)), url('../images/hu5.jpg') center/cover no-repeat;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: 2.3rem; margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; max-width: 620px; margin: 0 auto 26px; opacity: 0.95; }
.cta-banner .btn-light-custom {
  background: #fff;
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}
.cta-banner .btn-light-custom:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ DINING ============ */
.dining-feature {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.dining-feature .icon-circle {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: rgba(184,35,47,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.dining-feature h5 { font-size: 1.1rem; margin-bottom: 4px; }
.dining-feature p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ============ CONTACT ============ */
.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}
.contact-info-card:hover { transform: translateY(-5px); }
.contact-info-card .icon-big {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 18px;
}
.contact-info-card h5 { margin-bottom: 10px; }
.contact-info-card a { color: var(--dark); }
.contact-info-card a:hover { color: var(--primary); }

.contact-form input,
.contact-form textarea {
  border: 1px solid #e1e1e1;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ============ FOOTER ============ */
footer {
  background: #1a1a1a;
  color: #cfcfcf;
  padding: 60px 0 0;
}
footer h5 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--primary);
}
footer p, footer li, footer a { color: #c2c2c2; font-size: 0.92rem; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a:hover { color: var(--accent); }
footer .footer-contact i { color: var(--accent); width: 20px; margin-right: 8px; }
footer .socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.3s;
}
footer .socials a:hover { background: var(--primary); }
.copyright {
  background: #111;
  padding: 18px 0;
  text-align: center;
  margin-top: 50px;
  font-size: 0.88rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero { min-height: 70vh; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero p.lead { font-size: 1rem; }
  .btn-outline-custom { margin: 10px 0 0 0; display: block; }
  section { padding: 55px 0; }
  .section-title h2 { font-size: 1.8rem; }
  .about-img .stat-overlay { position: static; margin-top: 16px; display: inline-block; }
  .page-hero { padding: 80px 0 50px; }
  .page-hero h1 { font-size: 2rem; }
}
