/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --primary: #2f4f4f;
  --secondary: #6b8f71;
  --light: #f8f7f4;
  --dark: #1f1f1f;
}

/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.95);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-weight: 600;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
}

/* BUTTONS */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 2px;
}

.btn-secondary {
  border: 1px solid var(--primary);
  padding: 12px 24px;
  color: var(--primary);
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("images/hero.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.35);
  padding: 60px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  font-size: 18px;
}

/* INTRO */
.intro {
  text-align: center;
}

.intro p {
  max-width: 700px;
  margin: 20px auto 0;
}

/* ROOMS */
.rooms {
  background: #fff;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.room-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.room-card h3 {
  margin-bottom: 10px;
}

/* WELLNESS */
.wellness {
  background: linear-gradient(
      rgba(0,0,0,0.4),
      rgba(0,0,0,0.4)
    ),
    url("images/swimming-pool.jpeg") center/cover no-repeat;
  color: #fff;
}

.wellness-content {
  max-width: 600px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}