:root {
    --teal-dark: #0f6b7b;
    --teal-mid: #1f8f9d;
    --teal-light: #39b3b8;
    --white: #ffffff;
    --light-grey: #f2f4f6;
    --text-dark: #12343b;
    --accent: #7cc7e0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
}

/* Header / Hero */
header {
    background: linear-gradient(
    135deg,
    var(--teal-dark),
    var(--teal-mid),
    var(--teal-light)
    );
    color: var(--white);
    padding: 40px 24px 110px;
    position: relative;
    overflow: hidden;
}

/* subtle animated gradient shimmer */
header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08),
    transparent 70%
    );
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

nav {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 90px;
}

.logo {
    font-family: "Grandstander", cursive;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 28px;
    font-weight: 500;
    opacity: 0.9;
}

nav a:hover {
    opacity: 1;
}

.hero {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: "Grandstander", cursive;
    font-size: 56px;
    font-weight: 800;
    max-width: 820px;
    margin: 0 auto 28px;
    line-height: 1.15;
    animation: fadeUp 0.9s ease-out both;
}

.hero-sub {
    font-size: 20px;
    max-width: 720px;
    margin: 0 auto 50px;
    opacity: 0.95;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.15s;
}

.scroll-cue {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    opacity: 0.7;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.3s;
}

.hero p {
    font-size: 22px;
    opacity: 0.95;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.15s;
}

@keyframes fadeUp {
    from {
    opacity: 0;
    transform: translateY(12px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 90px 24px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

section h2 {
    font-size: 36px;
    margin-bottom: 18px;
    text-align: center;
}

section > .container > p.intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
    font-size: 19px;
    color: #445;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

@media (max-width: 900px) {
    .services {
    grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(
    135deg,
    #ffffff,
    #f6f9fb
    );
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.service-card h3 {
    margin-top: 0;
    font-size: 26px;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 0;
}

/* Plugins */
.plugins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.plugin-card {
    border: 2px solid var(--accent);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
}

.plugin-card h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
}

.plugin-card .subheading {
    font-size: 18px;
    margin-top: 0px;
}

.plugin-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal-dark);
}

.plugin-link:hover {
  text-decoration: underline;
}


.placeholder {
    font-size: 15px;
    opacity: 0.75;
}

/* CTA */
.cta {
    background: linear-gradient(
    135deg,
    var(--teal-mid),
    var(--teal-light)
    );
    color: var(--white);
    text-align: center;
    border-radius: 18px;
    padding: 70px 36px;
}

.cta h2 {
    margin-top: 0;
    font-size: 34px;
}

.cta p {
    max-width: 620px;
    margin: 0 auto 36px;
    font-size: 18px;
}

.cta a {
    display: inline-block;
    background: var(--white);
    color: var(--teal-dark);
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    background: #0b4e5a;
    color: var(--white);
    padding: 36px 24px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

/* Service Bands */
.service-band {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 36px;
    padding: 48px;
    border-radius: 18px;
    margin-bottom: 40px;
}

.service-content h3 {
    margin-top: 0;
    font-size: 28px;
}

.service-content p {
    font-size: 17px;
    max-width: 720px;
}

.service-icon {
    font-size: 40px;
    line-height: 1;
    opacity: 0.9;
}

/* Subtle colour variations */
.band-review {
    background: linear-gradient(135deg, #f4f9fb, #ffffff);
}

.band-ai {
    background: linear-gradient(135deg, #eef7f8, #ffffff);
}

.band-briefs {
    background: linear-gradient(135deg, #f2f8f6, #ffffff);
}

.band-craft {
    background: linear-gradient(135deg, #f3f6fb, #ffffff);
}

/* Mobile */
@media (max-width: 768px) {
    header::after {
        display: none;
    }

    nav .links {
        display: none;
    }

    .hero h1 {
    font-size: 42px;
    }

    .hero-sub {
    font-size: 18px;
    }

    .service-band {
    grid-template-columns: 1fr;
    gap: 24px;
    }

    .service-icon {
    font-size: 34px;
    }
}

/* Events Section */
.events-section {
  background: linear-gradient(
    135deg,
    #eef6f7,
    #f9fbfc
  );
}

.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.event-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.06);
}

.event-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.event-meta {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 18px;
}

.event-card p {
  font-size: 16.5px;
}

.event-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal-dark);
}

.event-link:hover {
  text-decoration: underline;
}

.event-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  stroke: var(--teal-dark);
  stroke-width: 1.6;
  fill: none;
  opacity: 0.6;
}

/* Training Section */
.training {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.training-card {
  background: linear-gradient(135deg, #ffffff, #f7f9fb);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.05);
}

.training-card h3 {
  margin-top: 0;
  font-size: 22px;
}

.training-card p {
  font-size: 16.5px;
}

.training-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  stroke: var(--teal-dark);
  stroke-width: 1.6;
  fill: none;
  opacity: 0.6;
}

.training-note {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 16px;
  opacity: 0.75;
}

.training-cta {
  text-align: center;
  margin-top: 48px;
}

.training-button {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--teal-dark);
  background: linear-gradient(
    135deg,
    #ffffff,
    #eef6f7
  );
  border: 2px solid var(--accent);
  transition: all 0.25s ease;
}

.training-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
