:root {
  /* Nature & Hospitality Palette */
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --text-main: #2c3e50;
  --text-light: #64748b;

  /* Primary: Fresh Mountain Green/Blue */
  --primary-color: #0ea5e9;
  --primary-dark: #0284c7;

  /* Accent: Warmth/Wood */
  --accent-color: #d97706;

  --border-color: #e2e8f0;

  --font-main: 'Montserrat', sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bg-light {
  background-color: var(--bg-light);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--text-main);
  font-weight: 500;
}

nav a:hover {
  color: var(--primary-color);
}

.btn-nav {
  background: var(--primary-color);
  color: white !important;
  /* Force white text */
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.btn-nav:hover {
  background: var(--primary-dark);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
  display: none;
  /* Add JS logic later if needed for mobile toggle */
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('bedroom.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding-top: 120px;
  /* offset fixed header */
}

/* Fallback if image doesn't load */
.hero {
  background-color: #334155;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  /* Large impact */
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: white;
  border: 1px solid white;
  margin-left: 1rem;
}

.btn-outline:hover {
  background: white;
  color: var(--text-main);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.features-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.img-placeholder {
  background: var(--bg-light);
  width: 100%;
  height: 300px;
  /* Placeholder height */
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  border: 2px dashed var(--border-color);
}

/* Cards (Accommodation) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1px));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-color);
}

.card-content {
  padding: 2rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.card .subtitle {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.card-features {
  margin-top: 1.5rem;
  list-style: none;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.card-features li {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-right: 1rem;
}

/* Surroundings / Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.info-item {
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.info-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.info-item h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-col a {
  color: #cbd5e1;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  background: #0f172a;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
    /* Needs simple JS toggle for mobile */
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Carousel Styles */
.about-image {
  position: relative;
  width: 100%;
  height: 400px;
  /* Fixed height for the carousel */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
}