:root {
  --bg-color: #f9f6f2;
  --text-color: #2d2d2d;
  --accent-color: #cbb89d;
  --highlight-color: #594f43;
  --soft-white: #ffffff;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color) !important;
  color: var(--text-color);
  line-height: 1.6;
}
.modal {
  display: none; 
  position: fixed; 
  z-index: 2000; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 50px auto; 
  padding: 20px; 
  border-radius: 8px;
  max-width: 600px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999; /* sits behind the side menu */
}
/* Side menu hidden off-screen (right side) */
.side-menu {
  position: fixed;
  top: 0;
  right: -250px; /* hidden */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto
}
.side-menu.active ~{
  right: 0;
}

header.hero {
  background-color: var(--accent-color);
  color: var(--soft-white);
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}

.cta-button {
  background-color: var(--highlight-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -250px; /* hide offscreen initially */
  width: 250px;
  height: 100%;
  background-color: #fdf7f0;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 60px;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu ul li {
  margin: 20px 0;
  text-align: center;
}

.side-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
}

/* Menu Toggle Button */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #d9b382;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1100;
}

/* Active menu */
.side-menu.active {
  right: 0;
}

section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--highlight-color);
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--soft-white);
  font-size: 0.9rem;
  color: var(--highlight-color);
}
.evaluation-exercise {
  background-color: #f5f1ff;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 960px;
  text-align: center;
}

.evaluation-exercise h2 {
  color: #3b2f63;
  margin-bottom: 30px;
}

.exercise-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step h3 {
  margin-top: 0;
  color: #3b2f63;
}

.closing-note {
  margin-top: 30px;
  font-style: italic;
  color: #555;
}

/* Responsive horizontal layout */
@media (min-width: 768px) {
  .exercise-steps {
    flex-direction: row;
    justify-content: space-between;
  }
}

