:root {
  --primary: #88c0d0;
  --secondary: #a3be8c;
  --background: #e5e9f0;
  --footer-bg: #4c566a;
  --button: #d08770;
  --section-bg-1: #eceff4;
  --section-bg-2: #d8dee9;
  --section-bg-3: #e5e9f0;
  --text-dark: #2e3440;
  --text-light: #eceff4;
  --transition: all 0.3s ease;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 0;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.25px;
}

p {
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

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

a:hover {
  color: var(--button);
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-3 {
  background-color: var(--section-bg-3);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--button);
  color: white;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 135, 112, 0.25);
}

.card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.natural-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.natural-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.natural-image:hover img {
  transform: scale(1.02);
}

footer {
  background-color: var(--footer-bg);
  color: var(--text-light);
  padding: 3rem 0;
}

footer a {
  color: var(--text-light);
}

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

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}