:root {
    --primary: #800020;
    --secondary: #D4AF37;
    --bg-light: #FDFBF7;
    --text-main: #2C2C2C;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; overflow-x: hidden; width: 100%; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 0.8rem 0; background: rgba(255,255,255,0.98); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem; max-width: 1400px; margin: 0 auto; width: 100%; }
.logo-text { font-size: 1.3rem; letter-spacing: 2px; color: var(--primary); font-weight: 700; }
.nav-links { display: flex; list-style: none; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* HERO */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; color: var(--white); overflow: hidden; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; z-index: 1; padding: 0 1.5rem; width: 100%; }
.hero-title { font-size: clamp(2rem, 8vw, 5.5rem); line-height: 1.1; margin-bottom: 2rem; }

/* BOOKING */
.booking-widget-container { max-width: 1100px; margin: -60px auto 0; position: relative; z-index: 10; padding: 0 1rem; width: 100%; }
.booking-widget { background: var(--white); padding: 1.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; box-shadow: 0 15px 50px rgba(0,0,0,0.1); border-radius: 4px; }
.input-group label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.input-group input { padding: 0.8rem; border: 1px solid #EEE; font-size: 0.85rem; width: 100%; }
.check-availability { background: var(--primary); color: var(--white); border: none; font-weight: 700; text-transform: uppercase; cursor: pointer; padding: 0.8rem; font-size: 0.8rem; }

/* SECTIONS */
section { padding: 6rem 0; width: 100%; }
.section-title { font-size: clamp(1.8rem, 5vw, 3.5rem); color: var(--primary); margin-bottom: 3rem; text-align: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-image img { width: 100%; height: 450px; object-fit: cover; box-shadow: 15px 15px 0 var(--secondary); border-radius: 4px; }

/* ROOMS */
.rooms { background: #F8F6F2; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.room-card { background: var(--white); box-shadow: var(--shadow); border-radius: 4px; overflow: hidden; }
.room-img { height: 280px; }
.room-img img { width: 100%; height: 100%; object-fit: cover; }
.room-info { padding: 1.5rem; text-align: center; }

/* FACILITIES */
.facilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: center; }
.facility-card { padding: 2rem; border: 1px solid #EEE; border-radius: 4px; }
.facility-card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; }

/* GALLERY */
.gallery { background: #0A0A0A; color: white; padding: 6rem 1rem; }
.gallery-mosaic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.gallery-item { border: 2px solid var(--secondary); padding: 5px; border-radius: 6rem 6rem 0 0; position: relative; }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; border-radius: 5.5rem 5.5rem 0 0; }

/* KESAR BAGH FOOTER */
.footer { background: #660019; color: var(--white); padding: 5rem 1rem 2rem; text-align: center; border-top: 5px solid var(--secondary); width: 100%; }
.logo-main { color: var(--secondary); font-size: 2rem; letter-spacing: 5px; font-family: 'Playfair Display'; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h3 { font-size: 0.9rem; color: var(--secondary); letter-spacing: 2px; margin-bottom: 1.5rem; position: relative; display: inline-block; }
.footer-col h3::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 20px; height: 1px; background: var(--secondary); }
.social-links-minimal { display: flex; justify-content: center; gap: 1rem; }
.social-links-minimal a { border: 1px solid rgba(255,255,255,0.3); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
.social-links-minimal a:hover { border-color: var(--secondary); color: var(--secondary); }
.footer-nav-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.bottom-links { list-style: none; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.bottom-links a { color: white; text-decoration: none; opacity: 0.8; font-size: 0.85rem; }
.copyright { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 1rem; }

/* FLOATING ACTIONS */
.floating-actions { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 1005; transition: 0.3s; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
.whatsapp { background: #25D366; }
.phone { background: #8B4513; }
.scroll-top { background: var(--secondary); display: none; }

/* MOBILE MENU */
.menu-btn { cursor: pointer; color: var(--primary); display: none; }
.mobile-overlay { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: var(--primary); z-index: 2000; visibility: hidden; transition: 0.4s; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mobile-overlay.active { left: 0; visibility: visible; }
.mobile-nav-links a { color: white; text-decoration: none; font-size: 2rem; margin: 1.5rem 0; display: block; font-family: 'Playfair Display'; }

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .nav-links, .desktop-only { display: none; }
    .menu-btn { display: block; }
    .hero-title { font-size: 2.22rem; line-height: 1.2; }
    .hero-label { font-size: 0.9rem; margin-bottom: 0.5rem; }
    .booking-widget { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 350px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .facility-card { padding: 1.5rem; }
}

@media (max-width: 600px) {
    .logo-text { font-size: 1.1rem; }
    .gallery-mosaic { grid-template-columns: 1fr; }
}
