:root {
  --bg-color: #f5f3ef;
  --text-color: #0f0f0f;
  --accent-color: #b4a078;
  --highlight-color: #2e3b2f;
  --card-bg: #ffffff;
  --card-dark: #1a1a1a;
  --shadow: rgba(0, 0, 0, 0.08);

  --primary-font-family: 'DM Sans', sans-serif;
  --secondary-font-family: 'Barlow Condensed', sans-serif;
  --quote-font-family: 'Cormorant Garamond', serif;
}

body {
  margin: 0;
  font-family: var(--primary-font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
}

.themes-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-family: var(--quote-font-family);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--highlight-color);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.theme-card {
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-6px);
}

.theme-card h2 {
  font-family: var(--quote-font-family);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.theme-card p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--primary-font-family);
}

/* Light Theme Cards */
.theme-card.light {
  background-color: var(--card-bg);
  color: var(--text-color);
}

/* Dark Theme Cards */
.theme-card.dark {
  background-color: var(--card-dark);
  color: #fff;
}

.theme-card.dark h2,
.theme-card.dark p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .theme-card {
    padding: 1.5rem;
  }
}

.theme-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
