/*
  CEE Website Stylesheet
  This stylesheet defines the look and feel of the Circular Economy Enterprise
  (CEE) website. Colours and spacing are chosen to reflect a clean, modern,
  sustainability‑focused aesthetic. Feel free to adjust variables or add
  component‑specific rules as the site evolves.
*/

:root {
  --primary: #0b6623;     /* Dark green representing growth and stability */
  --secondary: #5bb12f;   /* Light green for accents and callouts */
  --accent: #0077b6;      /* Blue accent used for buttons and links */
  --text: #333333;        /* Default text colour */
  --bg-light: #f5f5f5;    /* Light background for contrast */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background-color: var(--bg-light);
  line-height: 1.5;
}

header {
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.5rem;
  margin: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.65);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #005f8a;
}

section {
  padding: 3rem 2rem;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-content ul {
  padding-left: 1.5rem;
}

.section-content li {
  margin-bottom: 0.5rem;
}

.cta-section {
  background-color: var(--secondary);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.cta-section a {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}

.cta-section a:hover {
  background-color: #094e1c;
}

footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}