:root {
  /* Color Palette - Earthy, Nomadic, Vibrant */
  --color-bg: #fdfaf6;
  --color-surface: #ffffff;
  --color-primary: #e67e22; /* Burnt Orange */
  --color-secondary: #2c3e50; /* Deep Slate */
  --color-accent: #27ae60; /* Forest Green */
  --color-text: #2c3e50;
  --color-text-muted: #7f8c8d;
  --color-border: #ecf0f1;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Misc */
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* --- Layout Components --- */

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

/* --- Navigation --- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: var(--color-primary);
}

.btn-book {
  background: var(--color-secondary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-book:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* --- Hero Section --- */

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: var(--spacing-md);
}

.hero-image-wrapper {
  position: relative;
  height: 600px;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  background: #ddd;
  border-radius: 40px 40px 400px 40px;
  object-fit: cover;
  position: relative;
  overflow: hidden;
}

.placeholder-hero {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e67e22, #f39c12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- Features/Stats --- */

.stats-bar {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  display: block;
  color: var(--color-primary);
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* --- Room Cards --- */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  font-size: 3rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.room-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.room-image {
  height: 300px;
  background: #eee;
  position: relative;
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.room-info {
  padding: var(--spacing-md);
}

.room-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.room-price span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.room-features {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* --- Community / Experience --- */

.experience-section {
  background: var(--color-secondary);
  color: white;
  border-radius: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.experience-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-content h2 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
}

.experience-image {
  background: #34495e;
  min-height: 500px;
}

/* --- Footer --- */

footer {
  background: var(--color-surface);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  margin-bottom: var(--spacing-md);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-image::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 50%;
}

.placeholder-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-grid, .rooms-grid, .experience-section {
    grid-template-columns: 1fr;
  }
  .hero { height: auto; padding: var(--spacing-lg) 0; }
  .hero-image-wrapper { height: 400px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
