:root {
  --brand-dark: #1a1a1a;
  --brand-red: #a6192e;
  --brand-green: #5cb85c;
  --text-light: #f5f5f5;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}
a { color: var(--brand-red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

header.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
header.site-header .logo img { max-height: 80px; }

.hero {
  position: relative;
  background-image: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(58,16,21,0.65) 55%, rgba(166,25,46,0.55) 100%), url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
  padding: 90px 20px;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h4 {
  letter-spacing: 3px;
  color: #ffb3ae;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.hero-content p {
  font-size: 1.25rem;
  margin: 0 0 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.btn {
  display: inline-block;
  background: var(--brand-green);
  color: #fff;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 600;
}
.btn:hover {
  background: #4a9d4a;
  text-decoration: none;
}

section.profile {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
section.profile h1 {
  border-bottom: 3px solid var(--brand-red);
  display: inline-block;
  padding-bottom: 6px;
}
section.profile ol {
  padding-left: 20px;
}

.programmes {
  background: #f7f7f7;
  padding: 40px 20px;
}
.programmes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}
.programme-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.programme-card img {
  height: 90px;
  width: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
}
.programme-card h2 {
  font-size: 1.15rem;
  margin: 10px 0;
}

.sponsor-strip {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}
.sponsor-strip img {
  margin: 0 auto;
  max-width: 320px;
}

footer.site-footer {
  background: var(--brand-dark);
  color: var(--text-light);
  padding: 40px 20px 25px;
  text-align: center;
}
footer.site-footer p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #ccc;
}
