/* Shri Raghunath Hotel - Professional Light Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1e3a5f;
  --primary-light: #2d5a8a;
  --accent: #b7791f;
  --accent-light: #f6ad55;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0fdfa 50%, #fefce8 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('rudraprayag.webp') center/cover no-repeat;
  opacity: 0.85;
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.2) 0%, rgba(248,250,252,0.5) 100%);
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0) rotate(0deg); }
  50% { transform: scale(1.06) translate(-1.5%, -1%) rotate(0.3deg); }
  100% { transform: scale(1.1) translate(-2.5%, -2%) rotate(-0.2deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 
    0 25px 60px rgba(30, 58, 95, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 40px 100px rgba(30, 58, 95, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 20px 40px -15px rgba(13, 148, 136, 0.15);
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) translateZ(20px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero .tagline {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.hero-card:hover .tagline {
  transform: translateZ(10px);
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(183, 121, 31, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) translateZ(8px);
  box-shadow: 0 12px 35px rgba(183, 121, 31, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Image Gallery Strip */
.gallery-strip {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  overflow-x: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.index-gallery {
  perspective: 1200px;
}

.gallery-item {
  flex: 0 0 280px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
  box-shadow: 
    0 10px 40px rgba(30, 58, 95, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  perspective: 800px;
}

.gallery-item:hover {
  transform: translateY(-12px) translateZ(25px) rotateX(5deg) rotateY(-5deg) scale(1.03);
  box-shadow: 
    0 25px 60px rgba(30, 58, 95, 0.2),
    0 0 0 1px rgba(183, 121, 31, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background: white;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Page Wrapper for other pages */
.page-wrapper {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
}

.page-placeholder {
  max-width: 600px;
  padding: 3rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.06);
}

.page-placeholder h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.page-placeholder p {
  color: var(--text-muted);
}

.about-content {
  max-width: 720px;
}

.about-content p {
  margin-bottom: 1.25rem;
  text-align: left;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

/* Subtle floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card {
  animation: float 6s ease-in-out infinite;
}

/* Service Cards */
.services-page {
  padding-top: 100px;
  padding-bottom: 3rem;
  background: var(--bg);
}

.services-page h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.service-section {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30, 58, 95, 0.08);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 16px 60px rgba(30, 58, 95, 0.12);
}

.service-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .service-card-inner {
    grid-template-columns: 1fr;
  }
}

.service-card-image {
  height: 300px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 2rem;
}

.service-card-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.service-card-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scenic Views */
.scenic-section {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.scenic-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.scenic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.scenic-grid .gallery-item {
  flex: none;
  width: 100%;
  height: 220px;
}

@media (max-width: 600px) {
  .scenic-grid { grid-template-columns: 1fr; }
}

/* Room & Hall Detail Pages */
.detail-page {
  padding-top: 100px;
  padding-bottom: 3rem;
  background: var(--bg);
}

.detail-hero {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
}

.detail-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.detail-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.detail-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.detail-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-images img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}

@media (max-width: 600px) {
  .detail-images { grid-template-columns: 1fr; }
}

.features-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.06);
}

.features-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Contact Page */
.contact-page {
  padding-top: 100px;
  padding-bottom: 3rem;
  background: var(--bg);
}

.contact-page h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-section,
.reviews-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.06);
}

.contact-section h2,
.reviews-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.contact-item {
  margin-bottom: 1.25rem;
}

.contact-label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.contact-value {
  color: var(--text-muted);
  margin: 0;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  padding: 1.25rem;
  background: var(--bg);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.review-author {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.review-text {
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-inner { flex-direction: column; gap: 1rem; }
  .action-buttons { flex-direction: column; }
  .gallery-item { flex: 0 0 240px; height: 150px; }
}
