/* 
==============================================
1. VARIABLES
============================================== 
*/
:root {
  /* Base Colors */
  --c-sand: #f8f5f0;
  --c-white: #fffdf9;
  --c-stone: #f1ede6;

  /* Accent Colors */
  --c-orange: #f97316;
  --c-lemon: #fde68a;
  --c-olive: #6b8e23;
  --c-teal: #2dd4bf;

  /* Text Colors */
  --c-text-main: #2b2b2b;
  --c-text-muted: #6b7280;

  /* Gradients */
  --g-warm: linear-gradient(135deg, var(--c-orange) 0%, #facc15 100%);
  --g-overlay: linear-gradient(to right, rgba(255, 253, 249, 0.95), rgba(255, 253, 249, 0.4));

  /* Typography */
  --f-heading: 'Fraunces', serif;
  --f-body: 'DM Sans', sans-serif;

  /* Layout */
  --max-width: 1320px;
  --space-mobile: 60px;
  --space-tablet: 80px;
  --space-desktop: 110px;

  /* Effects */
  --shadow-soft: 0 10px 30px rgba(43, 43, 43, 0.05);
  --shadow-hover: 0 20px 40px rgba(249, 115, 22, 0.15);
  --radius-card: 20px;
  --radius-btn: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 
==============================================
2. RESET & BASE
============================================== 
*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  color: var(--c-text-main);
  background-color: var(--c-sand);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

/* 
==============================================
3. LAYOUT & GRID
============================================== 
*/
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: var(--space-mobile) 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-12 { grid-template-columns: repeat(12, 1fr); }

@media (min-width: 768px) {
  .section { padding: var(--space-tablet) 0; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .section { padding: var(--space-desktop) 0; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* 
==============================================
4. COMPONENTS
============================================== 
*/

/* --- Typography Utilities --- */
.text-center { text-align: center; }
.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-orange);
  display: block;
  margin-bottom: 0.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--f-body);
}

.btn-primary {
  background: var(--g-warm);
  color: var(--c-white);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background: var(--c-white);
  color: var(--c-text-main);
  border: 1px solid var(--c-stone);
}

.btn-secondary:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 237, 230, 0.5);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-heading);
  font-size: 1.5rem;
  color: var(--c-text-main);
  font-weight: 600;
}

.logo svg {
  width: 32px;
  height: 32px;
  color: var(--c-orange);
}

.nav-links {
  display: none;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-orange);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--c-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--c-text-main);
}

@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--c-white);
  z-index: 1001;
  padding: 80px 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 5%;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--c-text-main);
}

.mobile-menu a {
  font-family: var(--f-heading);
  font-size: 2rem;
  color: var(--c-text-main);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--c-white);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stars {
  color: var(--c-orange);
  display: flex;
  gap: 0.2rem;
}

.hero-image {
  position: relative;
  height: 60vh;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}

@media (min-width: 1024px) {
  .hero-image { height: 80vh; }
  .hero .grid-2 { align-items: center; }
}

/* --- Room Cards --- */
.room-card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

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

.room-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.room-content {
  padding: 2rem;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-stone);
}

.room-price {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  color: var(--c-text-main);
}

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

/* --- Immersive Feature Sections --- */
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 6rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .feature-row {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
  .feature-row:nth-child(even) {
    flex-direction: row-reverse;
  }
  .feature-img, .feature-content {
    flex: 1;
  }
  .feature-img {
    height: 500px;
  }
}

/* --- Reviews Section --- */
.reviews {
  background: var(--c-stone);
}

.review-card {
  background: var(--c-white);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.review-text {
  font-size: 1.125rem;
  font-style: italic;
  margin: 1.5rem 0;
  color: var(--c-text-main);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- Page Headers (Internal Pages) --- */
.page-header {
  padding-top: 150px;
  padding-bottom: 50px;
  background: var(--c-white);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

/* --- Contact & Forms --- */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--c-stone);
  border-radius: 10px;
  background: var(--c-sand);
  font-family: var(--f-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* --- Footer --- */
.footer {
  background: var(--c-white);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--c-stone);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--c-stone);
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

/* 
==============================================
5. ANIMATIONS & UTILITIES
============================================== 
*/
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Document Text Pages (Privacy/Terms) */
.doc-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--c-white);
  padding: 3rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.doc-content h2 {
  margin-top: 2.5rem;
}