/* ===== Global – Nav, Footer, Top Bar (sab pages pe same) ===== */
/* Colors & theme variables ab variables.css me hain */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--bg-creme);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition), background var(--transition), transform var(--transition); }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
}

/* ===== Top Bar (Minimal Contact info) ===== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.top-contact a {
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-contact a:hover { color: var(--orange); }
.top-social {
  display: flex;
  gap: 12px;
}
.top-social a {
  color: rgba(255,255,255,0.85);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.top-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Main Nav (Floating minimal) ===== */
.main-nav {
  background: rgba(252, 250, 248, 0.9);
  backdrop-filter: blur(15px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy-dark);
  font-weight: 400;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo:hover { color: var(--orange); }
.logo-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 400;
  border: 1px solid var(--orange);
  border-radius: 50%;
}
.logo-text small { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 3px;}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: var(--text-primary);
  padding: 8px 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); background: transparent; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-call {
  background: transparent;
  color: var(--navy-dark) !important;
  border: 1px solid var(--navy-dark);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-call:hover {
  background: var(--navy-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-label span {
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Buttons (Elegant) ===== */
.btn {
  padding: 12px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.btn-primary {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.btn-primary:hover {
  background: transparent;
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.8rem; }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.btn-outline:hover {
  background: var(--text-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Section common (Editorial title) ===== */
.section-tag {
  color: var(--orange);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 16px;
  position: relative;
  display: inline-block;
}
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  width: 40px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--navy-dark);
  margin: 0 0 3rem;
  line-height: 1.1;
}
.section-title span { color: var(--text-muted); font-style: italic; }

/* ===== Page strip (BEST HOTEL IN UTTARKASHI...) ===== */
.page-strip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===== CTA section ===== */
.cta-section { padding: 80px 0; background: var(--gray-light); }
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 30px;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 0;
  background: var(--bg-creme);
}
.cta-box:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
.cta-box p {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: #333;
}
.cta-box strong { color: var(--orange); }
.cta-phone {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  display: inline-block;
  transition: color var(--transition);
}
.cta-phone:hover { color: var(--orange); }

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 100px 0 0;
  font-weight: 300;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
}
.footer-logo-text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
}
.footer-col h4 {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0 0 20px;
}
.footer-col p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-col p i { margin-top: 4px; flex-shrink: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-links a {
  color: rgba(255,255,255,0.8);
  margin: 0 4px;
}
.footer-links a:hover { color: var(--orange); }

/* ===== Floating (WhatsApp + scroll top) ===== */
.float-whatsapp,
.float-top {
  position: fixed;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition);
}
.float-whatsapp {
  bottom: 90px;
  background: #25d366;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
.float-top {
  bottom: 24px;
  background: var(--orange);
}
.float-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232,93,4,0.4);
}

/* ===== Global responsive (nav, footer, top bar) ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; }
  .top-contact { justify-content: center; }
  .nav-toggle-label { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-toggle:checked ~ .nav-links { max-height: 320px; padding: 20px 0; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px; color: var(--white) !important; font-weight: 500; font-family: 'Inter', sans-serif; letter-spacing: 1px; }
  .btn-call { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-col p { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-whatsapp, .float-top { right: 16px; width: 48px; height: 48px; font-size: 1.25rem; }
  .float-whatsapp { bottom: 80px; }
}

@media (max-width: 480px) {
  .top-contact { flex-direction: column; align-items: center; gap: 6px; }
  .cta-phone { font-size: 1.35rem; }
}
.hero-tag,
.hero-title,
.hero-btns{
  opacity: 0;
}
.hero-tag{
  animation: heroTag 0.8s ease forwards;
}

.hero-title{
  animation: heroTitle 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-btns{
  animation: heroBtns 1s ease forwards;
  animation-delay: 0.6s;
}
@keyframes heroTag{
  from{
    opacity:0;
    transform: translateY(-30px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

@keyframes heroTitle{
  from{
    opacity:0;
    transform: translateY(-40px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

@keyframes heroBtns{
  from{
    opacity:0;
    transform: translateY(40px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* ===== Subpage Overrides for Minimal Luxury ===== */
.page-hero h1 { color: var(--white) !important; font-family: 'Playfair Display', serif !important; }
.breadcrumb { color: rgba(255,255,255,0.9) !important; font-family: 'Inter', sans-serif; }
.breadcrumb a { color: var(--white) !important; }
.breadcrumb a:hover { color: var(--gold) !important; }
.strip { background: var(--bg-creme) !important; color: var(--navy-dark) !important; font-weight: 500 !important; font-family: 'Inter', sans-serif !important; border-bottom: 1px solid rgba(0,0,0,0.05); }
.author-avatar { color: var(--navy-dark) !important; font-weight: 500 !important; font-family: 'Inter', sans-serif !important; font-size: 1.25rem !important; }