/* General page styling */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: #fffdf3;
  color: #333;
}

/* Section spacing */
section {
  padding: 70px 0;
}

/* Hero Section */
.hero-section {
  background-image: url("images/cleverquest.jpg"); /* optional image */
  background-size: cover;
  background-position: center;
  color: #fff9db;
  text-align: center;
  padding: 120px 20px;
  min-height: 50vh;
  position: relative;
}

/* Dark overlay for hero readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Pale yellow background sections */
.custom-bg {
  background-color: #fff9db;
}

/* Section headings */
h2 {
  font-weight: bold;
  margin-bottom: 25px;
  color: #6b4f1d; /* ochre tone */
}

/* Lists */
ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 10px;
}

/* Images */
img {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-secondary {
  background-color: #cfae70;
  border: none;
  color: #2c2c2c;
}

.btn-secondary:hover {
  background-color: #b8975f;
  color: #000;
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

.screenshot {
  width: 50%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.screenshot:hover {
  transform: scale(1.4);
}