:root {
  --bg-primary: #F8F9F7;
  --bg-secondary: #EBECE8;
  --text-primary: #2C3531;
  --text-secondary: #5A6B63;
  --accent-primary: #3C5A48;
  --accent-secondary: #C18C5D;
  --card-bg: #FFFFFF;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.rounded-img {
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-secondary);
}

/* Utilities */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.w-100 { width: 100%; }
.d-block { display: block; }
.text-center { text-align: center; }

/* Header & Navigation */
.header {
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links a:hover {
  color: var(--accent-secondary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #2a4033;
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn-secondary:hover {
  background-color: var(--accent-primary);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  border-radius: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(248, 249, 247, 0.95);
  padding: 50px;
  border-radius: 8px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--text-primary);
}

/* Page Header */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.align-center {
  align-items: center;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

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

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.card-img {
  height: 220px;
}

.card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.4rem;
  color: var(--accent-primary);
}

.card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Forms & Boxes */
.booking-box, .contact-box {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--bg-primary);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Amenities */
.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.amenities-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
}

.amenities-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Typography Pages */
.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content h2 {
  margin-top: 30px;
}

.text-content ul.simple-list {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

/* Contact Specific */
.contact-info {
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h3 {
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.footer-links li {
  margin-bottom: 8px;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .grid-2, .grid-3, .form-row {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #ddd;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-btn {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .booking-box, .contact-box {
    padding: 30px 20px;
  }
}