/*
Theme Name: Dev Hotel Mansarovar
Theme URI: https://devhotelmansarovar.com
Author: Dev Hotel Jaipur Team
Author URI: https://devhotelmansarovar.com
Description: Custom high-converting luxury & budget hotel theme built specifically for Dev Hotel Mansarovar (13/231 Kaveri Path, Sector 1, Mansarovar, Jaipur). Fully responsive, SEO optimized with Schema.org JSON-LD, integrated WhatsApp instant booking, room management, and Hostinger WordPress compatibility.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: dev-hotel-mansarovar
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  --primary-bg: #fdfbf7;
  --secondary-bg: #1c1917;
  --accent-amber: #d97706;
  --accent-gold: #f59e0b;
  --text-dark: #1c1917;
  --text-light: #f5f5f4;
  --border-color: #e7e5e4;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  color: #fff;
  padding: 0.75rem 1.5rem;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  color: #1c1917;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.site-title-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fef3c7;
  letter-spacing: -0.02em;
}

.site-title-sub {
  font-size: 0.7rem;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d6d3d1;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #f59e0b;
}

.btn-book-now {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1c1917;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

.btn-book-now:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.5);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: #0c0a09;
  color: #fff;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(217, 119, 6, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fef3c7;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title span {
  color: #f59e0b;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #a8a29e;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-feature-tag {
  background: rgba(44, 40, 37, 0.8);
  border: 1px solid rgba(231, 229, 228, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #e7e5e4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card {
  background: #1c1917;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Room Cards Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #d97706;
}

.room-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img {
  transform: scale(1.05);
}

.room-price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(28, 25, 23, 0.9);
  color: #fef3c7;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.room-body {
  padding: 1.5rem;
}

.room-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1c1917;
}

.room-desc {
  font-size: 0.875rem;
  color: #57534e;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.room-amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.amenity-chip {
  background: #f5f5f4;
  color: #44403c;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Footer */
.site-footer {
  background: #1c1917;
  color: #a8a29e;
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(217, 119, 6, 0.2);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-heading {
  color: #fef3c7;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  space-y: 0.75rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d6d3d1;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231, 229, 228, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: #78716c;
}
