/* ===============================
   General page style
================================ */

:root {
  --black: #1E1B18;
  --yellow: #FFD400;
  --green: #00A86B;
  --red: #E52421;
  --white: #FFFFFF;
  --cream: #f5efe6;
  --dark-green: #006B4F;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #faf8f2;
  color: #16324f;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ===============================
   Navigation bar
================================ */

.navbar {
  height: 120px;
  padding: 18px 50px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
    width: 180px;
    height: auto;
    display: block;
}
.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 42px;
}

.logo strong,
.footer-logo strong {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo span,
.footer-logo span {
  display: block;
  color: var(--cream);
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
}

.logo small,
.footer-logo small {
  display: block;
  font-size: 10px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 35px;
  font-weight: bold;
}

.nav-links a {
    color: var(--cream);          /* Normal colour */
    padding-bottom: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #d99a13;
  border-bottom: 3px solid #d99a13;
}

.nav-button {
  background: #d99a13;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
}

/* ===============================
   Hero banner
================================ */

.hero {
  min-height: 380px;
  background:
    linear-gradient(
      90deg,
      rgba(12, 45, 64, 0.85),
      rgba(12, 45, 64, 0.35)
    ),
    url("images/hero-banner.png");

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 70px;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  color: white;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 30px;
}

.hero h1 span {
  color: #f4b942;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: bold;
  color: white;
}

.button.teal {
  background: #036903;
}

.button.gold {
  background: #d99a13;
}

/* ===============================
   Why section
================================ */
.why-wrapper{
    background:#d99a13;
    padding:5px 8%;
}

.why-wrapper h2{
    text-align:center;
    color:black;
    font-size:48px;
    margin-bottom:5px;
}

.why-section {
  background: #d99a13;
  padding: 10px 2%;
  display: grid;
  grid-template-columns:repeat(4,1fr);
  align-items: center;
  gap: 15px;
}

.why-section h2 {
  font-size: 30px;
  color: whitesmoke;
  margin: 0;
}

.why-item {
    display: grid;
    grid-template-rows: 90px 100px 1fr;
    justify-items: center;
    align-items: start;
    text-align: center;
    padding: 35px;
    background: rgba(255, 255, 255, 0.219);
    border-radius: 20px;
}

.why-item:hover{
    transform:translateY(-8px);
    background:rgba(255, 255, 255, 0.377);
}
/* Why captions font colour */
.why-item h3{
    color:black;
    margin:5;
    font-size: 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.why-item p {
    color: white;      /* Why captions font colour */
    font-size: 18px;
    margin:0;
    line-height: 1.0;
}

.icon{
    width:90px;
    height:90px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    font-size:42px;
    background:#0F9AA8;
}

.gold-icon {
  background: #d99a13;
}

/* ===============================
   Collaboration section
================================ */

.collaboration {
  padding: 35px 70px;
  background: white;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: center;
}

.section-title h2 {
  color: black;
  font-size: 32px;
  margin-bottom: 8px;
}

.partner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.partner {
  max-width: 160px;
}

.partner-icon {
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom: 10px;
}
.partner-icon img{
    max-height:70px;
    width:auto;
    display:block;
}

.partner h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.partner p {
  font-size: 12px;
  margin: 0;
}

.arrow {
  color: #008891;
  font-size: 32px;
  font-weight: bold;
}

/* ===============================
   Cards
================================ */

.card-section {
  padding: 30px 70px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr;
  gap: 25px;
}

.large-card {
  background: #f5efe6;
  padding: 25px;
  border-radius: 12px;
}

.large-card h2 {
  color: black;
  margin-top: 0;
  font-size: 26px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header a {
  color: #008891;
  font-weight: bold;
  font-size: 14px;
}

.team-row {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
}

.person img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}

.person h3 {
  font-size: 15px;
  margin-bottom: 5px;
}

.person p {
  font-size: 13px;
}

.person a {
  color: #008891;
  font-weight: bold;
  font-size: 13px;
}

.community-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 25px;
  align-items: center;
}

.community-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.get-involved-card ul {
  list-style: none;
  padding-left: 0;
}

.get-involved-card li {
  margin-bottom: 10px;
}

.get-involved-card li::before {
  content: "●";
  color: #008891;
  margin-right: 10px;
}

/* ===============================
   Footer
================================ */

footer {
  background: #004653;
  color: white;
  padding: 40px 70px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

footer a {
  display: block;
  margin-bottom: 8px;
  color: white;
}

footer h3 {
  margin-top: 0;
}

footer p {
  margin-top: 12px;
}

/* ===============================
   Mobile responsive layout
================================ */

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 45px 25px;
  }

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

  .why-section,
  .collaboration,
  .card-section,
  footer {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .partner-row,
  .team-row {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .community-card {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   ABOUT PAGE - Header
====================================== */

.page-header {
    background: linear-gradient(
        rgba(20, 20, 20, 0.75),
        rgba(20, 20, 20, 0.75)
    ),
    url("images/about-banner.jpg");

    background-size: cover;
    background-position: center;

    min-height: 350px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 40px;
}

.page-header h1 {
    font-size: 54px;
    color: #FFD400;
    margin-bottom: 20px;
}

.page-header p {
    max-width: 850px;
    color: white;
    font-size: 22px;
    line-height: 1.7;
}

/* ======================================
   ABOUT PAGE - Main content
====================================== */

.about-section {
    background: goldenrod;
    width: 100%;
    padding: 80px 8%;
}

.about-content{
    width:90%;
    max-width:1300px;
    margin:0 auto;
}

/* ======================================
   ABOUT PAGE - Team list
====================================== */

.section-intro {
  max-width: 850px;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.team-location {
  color: #FFD400;
  background: #1E1B18;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  margin: 35px 0 25px;
  font-size: 20px;
}

.team-list {
  display: grid;
  gap: 22px;
  margin-bottom: 40px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 24px;
  background: white;
  border-left: 6px solid #00A86B;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.team-member img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #FFD400;
  flex-shrink: 0;
}

.team-details h3 {
  margin: 0 0 6px;
  color: #1E1B18;
  font-size: 22px;
}

.team-role {
  color: #E52421;
  font-weight: bold;
  margin: 0 0 10px;
}

.team-details p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

/* Mobile view */

@media (max-width: 700px) {
  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .team-member img {
    width: 130px;
    height: 130px;
  }
}

/*==========================================================
                RESEARCH PAGE
==========================================================*/

.research-infographic{
    width:100%;
    margin:0;
    padding:0;
}

/*==========================================================
TOP SECTION
==========================================================*/

.research-top{

    display:grid;

    grid-template-columns:30% 70%;

    min-height:600px;

}

.research-yellow{

    background:#F3BE17;

    padding:40px;

    color:#111;

}

.research-yellow h1{

    font-size:40px;

    text-transform:uppercase;

    line-height:1;

    margin-bottom:20px;

}

.lead-text{

    font-size:20px;

    font-weight:bold;

    margin-bottom:20px;

}

.research-point{

    display:flex;

    gap:10px;

    margin-bottom:5px;

    align-items:flex-start;

}

.research-point span{

    font-size:18px;

}

.research-point p{

    font-size:18px;

    line-height:1.0;

}

/*==========================================================
RIGHT PANEL
==========================================================*/

.research-numbers{

    background:#0D5738;

    color:white;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.circle-main{

    width:300px;

    height:300px;

    background:#111;

}

.circle-small{

    width:230px;

    height:230px;

    background:#0B8E5A;

}

.circle{

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:25px;

    border:6px solid #F3BE17;

}

.circle strong{

    font-size:80px;

    color:#F3BE17;

}

.circle span{

    font-size:34px;

    font-weight:bold;

    text-transform:uppercase;

}

.circle p{

    font-size:18px;

}

.circle-row{

    margin-top:50px;

    display:flex;

    gap:50px;

}

/*==========================================================
BLACK SECTION
==========================================================*/

.research-dark{

    background:#111;

    color:white;

    padding:80px;

}

.research-dark h2{

    color:#F3BE17;

    font-size:48px;

    margin-bottom:60px;

}

.process-row{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

}

.process-step{

    width:190px;

    text-align:center;

}

.step-number{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#F3BE17;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-weight:bold;

    font-size:24px;

}

.process-icon{

    font-size:70px;

    margin:25px 0;

}

.process-step h3{

    color:#F3BE17;

}

.process-arrow{

    font-size:50px;

    color:#00A86B;

    margin-top:80px;

}

/*==========================================================
WHITE SECTION
==========================================================*/

.research-light{

    background:white;

    padding:70px;

}

.three-column-section{

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    gap:45px;

}

.explain-card{

    padding:30px;

}

.explain-card h2{

    color:#0D5738;

    margin-bottom:25px;

}

.large-icon{

    font-size:120px;

    text-align:center;

    margin:30px;

}

.music-line{

    font-size:60px;

    text-align:center;

    color:#F3BE17;

    margin:40px;

}

.explain-card ul{

    padding-left:20px;

    line-height:1.8;

}

.helps-grid{

    display:grid;

    gap:30px;

}

.helps-grid div{

    text-align:center;

}

.helps-grid span{

    font-size:60px;

}

/*==========================================================
BOTTOM
==========================================================*/

.research-bottom{

    background:#111;

    color:white;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    padding:70px;

}

.research-bottom h2{

    color:#F3BE17;

    margin-bottom:30px;

}

.routes-graphic{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    gap:35px;

    margin-top:50px;

}

.route{

    width:110px;

    height:320px;

    border-radius:90px;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    color:white;

    font-weight:bold;

    padding-bottom:20px;

}

.route-green{

    background:#0B8E5A;

}

.route-yellow{

    background:#F3BE17;

    color:black;

}

.route-red{

    background:#C1272D;

}

.find-out{

    background:#1F1F1F;

    padding:40px;

    border-radius:20px;

}

.find-out li{

    margin-bottom:20px;

    font-size:22px;

}

.impact-panel{

    background:#0D5738;

    padding:40px;

    border-radius:20px;

}

.impact-mini-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

}

.impact-mini-grid span{

    font-size:50px;

}

/*==========================================================
FINAL STRIP
==========================================================*/

.research-quote{

    background:#F3BE17;

    color:#111;

    text-align:center;

    padding:35px;

    font-size:36px;

    font-weight:bold;

}

/* ======================================
   GET INVOLVED PAGE
====================================== */

.involved-page {
  background: #111;
  color: white;
}

.involved-hero {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.35)),
    url("images/get-involved-banner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px;
}

.involved-hero h1 {
  font-size: 70px;
  color: #FFD400;
  margin-bottom: 20px;
}

.involved-hero p {
  max-width: 650px;
  font-size: 26px;
  line-height: 1.5;
}

.involved-button {
  display: inline-block;
  background: #E52421;
  color: white;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 20px;
}

.involved-section {
  padding: 70px 80px;
}

.involved-section h2 {
  font-size: 42px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.yellow-block {
  background: #FFD400;
  color: #111;
}

.black-block {
  background: #111;
  color: white;
}

.yellow-block h2,
.black-block h2 {
  color: inherit;
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.involved-card {
  background: white;
  color: #111;
  padding: 30px;
  border-radius: 18px;
  border-left: 7px solid #00A86B;
}

.involved-icon {
  font-size: 46px;
  margin-bottom: 15px;
}

.involved-card h3 {
  color: #006B4F;
  font-size: 24px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.involved-step {
  border-top: 5px solid #FFD400;
  background: #1E1B18;
  padding: 30px;
  border-radius: 16px;
}

.involved-step span {
  background: #FFD400;
  color: #111;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.involved-step h3 {
  color: #FFD400;
}

.ppie-link-box {
  background: #006B4F;
  color: white;
}

.ppie-link-box h2 {
  color: #FFD400;
}

.text-link {
  color: #FFD400;
  font-weight: bold;
  font-size: 20px;
}

.form-section {
  background: #FAF8F2;
  color: #111;
}

.form-section h2 {
  color: #006B4F;
}

.interest-form {
  max-width: 700px;
  display: grid;
  gap: 15px;
}

.interest-form label {
  font-weight: bold;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.interest-form button {
  background: #E52421;
  color: white;
  border: none;
  padding: 16px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 900px) {
  .involved-hero,
  .involved-section {
    padding: 40px 25px;
  }

  .involved-hero h1 {
    font-size: 46px;
  }

  .involved-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   PROFILE FEATURE CARDS
====================================== */

.profile-feature {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  max-width: 950px;
  margin: 40px auto;
}

.profile-feature img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.profile-text {
  background: #1E1B18;
  color: white;
  padding: 35px 45px 35px 70px;
  border-radius: 6px;
  min-height: 230px;
}

.profile-text h3 {
  color: #FFD400;
  font-size: 30px;
  margin-top: 0;
}

.profile-role {
  color: #00A86B;
  font-weight: bold;
  margin-bottom: 18px;
}

.profile-text p {
  color: white;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .profile-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-feature img {
    margin: 0 auto -30px;
  }

  .profile-text {
    padding: 60px 25px 30px;
  }
}
/*==================================================
            PPIE PAGE
==================================================*/

.ppie-hero{

    height:450px;

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.45)),
    url("images/ppie-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:flex-end;

    padding:70px;

}

.ppie-hero-text{

    max-width:700px;

    color:white;

}

.breadcrumb{

    color:#FFD400;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:2px;

}

.ppie-hero h1{

    font-size:68px;

    color:#FFD400;

    margin:15px 0;

}

.ppie-hero p{

    font-size:24px;

    line-height:1.5;

}


/*==================================================
PAGE
==================================================*/

.ppie-page{

    max-width:1400px;

    margin:70px auto;

    display:grid;

    grid-template-columns:2fr 380px;

    gap:60px;

}


/*==================================================
INTRO
==================================================*/

.ppie-intro{

    grid-column:1/3;

    text-align:center;

    max-width:900px;

    margin:auto auto 60px;

}

.ppie-intro h2{

    font-size:42px;

    color:#006B4F;

}

.ppie-intro p{

    font-size:22px;

    line-height:1.8;

}


/*==================================================
BLOG POSTS
==================================================*/

.ppie-post-card{

    display:grid;

    grid-template-columns:45% 55%;

    background:white;

    margin-bottom:50px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.ppie-post-card:hover{

    transform:translateY(-8px);

}

.ppie-post-image{

    overflow:hidden;

}

.ppie-post-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.ppie-post-content{

    padding:45px;

}

.ppie-date{

    color:#D99A13;

    font-weight:bold;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:10px;

}

.ppie-post-content h2{

    color:#111;

    font-size:34px;

    margin-top:0;

}

.ppie-post-content p{

    line-height:1.8;

    font-size:18px;

}

.ppie-post-content a{

    color:#006B4F;

    font-weight:bold;

}


/*==================================================
SIDEBAR
==================================================*/

.ppie-sidebar{

    position:sticky;

    top:40px;

    height:fit-content;

}

.ppie-sidebar-box{

    background:#F7F3EB;

    padding:35px;

    border-radius:18px;

    margin-bottom:30px;

}

.ppie-sidebar-box h3{

    color:#006B4F;

    margin-top:0;

}

.ppie-sidebar-box.dark{

    background:#111;

    color:white;

}

.ppie-sidebar-box.dark h3{

    color:#FFD400;

}

.ppie-sidebar-box ul{

    padding-left:18px;

}

.ppie-sidebar-box li{

    margin-bottom:12px;

}

.ppie-sidebar-box a{

    color:#006B4F;

    font-weight:bold;

}


/*==================================================
QUOTE SECTION
==================================================*/

.ppie-quote{

    margin-top:80px;

    padding:80px;

    text-align:center;

    background:#006B4F;

    border-radius:20px;

    color:white;

}

.ppie-quote h2{

    color:#FFD400;

    font-size:40px;

}

.ppie-quote p{

    font-size:24px;

    max-width:800px;

    margin:auto;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1000px){

.ppie-page{

grid-template-columns:1fr;

}

.ppie-sidebar{

position:relative;

}

.ppie-post-card{

grid-template-columns:1fr;

}

.ppie-post-image img{

height:300px;

}

}