/* =====================
   TEAM245 GLOBAL STYLE
===================== */

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:#0f172a;
  color:white;
}

/* NAVIGATION */
nav{
  background:#020617;
  padding:15px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav h1{
  margin:0;
  font-size:20px;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:20px;
}

nav a:hover{
  color:#ef4444;
}

/* HEADER */
header{
  max-width:900px;
  margin:auto;
  padding:60px 20px 20px;
  text-align:center;
}

header p{
  color:#cbd5e1;
  line-height:1.7;
}

/* SECTIONS */
section{
  max-width:1000px;
  margin:auto;
  padding:40px 20px;
}

/* CARDS */
.card{
  background:#020617;
  border:1px solid #111827;
  border-radius:16px;
  padding:28px;
  margin-bottom:24px;
}

.card p{
  color:#cbd5e1;
  line-height:1.7;
}

/* BUTTONS */
.button,
.btn{
  padding:14px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  background:#ef4444;
  color:white;
  box-shadow:0 0 18px rgba(239,68,68,.35);
}

/* PRIMARY BUTTON */
.button:hover,
.btn:hover{
  background:#dc2626;
}

/* SECONDARY BUTTON */
.btn-secondary{
  background:#334155;
  box-shadow:none;
  color:white;
}

.btn-secondary:hover{
  background:#475569;
  color:white;
}

.btn-ghost{
  background:transparent;
  border:1px solid #334155;
}

.btn-ghost{
  background:transparent;
  border:1px solid #334155;
  color:white;
}

.btn-ghost:hover{
  background:#334155;
  border-color:#334155;
  color:white;
}

/* GRID */
.grid{
  display:grid;
  gap:16px;
}

@media(min-width:850px){
  .grid{
    grid-template-columns:1fr 1fr;
  }
}

/* INFO BLOCK */
.info{
  background:#0b1222;
  border:1px solid #111827;
  border-radius:14px;
  padding:18px;
}

/* HERO */
.hero{
  height:80vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(rgba(0,0,0,.6),
  rgba(0,0,0,.85)),
  url("../images/hero.jpg") center/cover;
}

.hero h2{
  font-size:48px;
}

/* SPONSORS */
.sponsors{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  justify-content:center;
}

.sponsor{
  background:#020617;
  border:2px dashed #334155;
  padding:40px;
  border-radius:14px;
  color:#94a3b8;
  margin-top:30px;
}

/* TEAM */
.members{
  display:grid;
  gap:14px;
}

@media(min-width:900px){
  .members{
    grid-template-columns:repeat(3,1fr);
  }
}

.member{
  background:#020617;
  border:1px solid #111827;
  border-radius:16px;
  padding:16px;
  display:flex;
  gap:14px;
  align-items:center;
}

.avatar{
  width:80px;
  height:80px;
  border-radius:18px;
  overflow:hidden;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* FOOTER */
footer{
  background:#020617;
  text-align:center;
  padding:30px;
  margin-top:40px;
  color:#cbd5e1;
}

/* ===== Index alignment helpers ===== */

/* Centered section (titel + tekst + content) */
.section-center{
  text-align:center;
}
.section-center h2{
  margin-bottom:10px;
}
.section-center p{
  margin-left:auto;
  margin-right:auto;
  max-width:760px;
}

/* Hero buttons netjes naast/onder elkaar */
.hero-actions{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

/* Secondary button style (grijs/blauw) */
.btn-secondary{
  background:#334155;
  box-shadow:none;
}
.btn-secondary:hover{
  background:#1f2937;
}

/* TEAM ROLES */

.role-grid{
  display:grid;
  gap:14px;
  margin-top:20px;
}

@media(min-width:800px){
  .role-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

.role-card{
  background:#0b1222;
  border:1px solid #111827;
  border-radius:14px;
  padding:16px;
}

.role-card strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
}

.role-card span{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.6;
}

/* ROPARUN ROUTES */
.route-grid{
  display:grid;
  gap:16px;
  margin-top:18px;
}

@media(min-width:850px){
  .route-grid{
    grid-template-columns:1fr 1fr;
  }
}

.route-card{
  background:#0b1222;
  border:1px solid #111827;
  border-radius:14px;
  padding:18px;
}

.route-card h4{
  margin:0 0 10px 0;
}

.route-card p{
  margin:0;
  color:#cbd5e1;
  line-height:1.7;
}

.route-card:hover{
  border-color:#1f2937;
}

/* SPONSOR CTA BLOCK */
.sponsor-call{
  text-align:center;
}

.sponsor-call p{
  max-width:600px;
  margin:10px auto;
}

.sponsor-call .btn{
  margin-top:15px;
}

/* SPONSOR LEVELS */

.sponsor-levels{
  display:grid;
  gap:16px;
  margin-top:20px;
}

@media(min-width:850px){
  .sponsor-levels{
    grid-template-columns:repeat(2,1fr);
  }
}

.sponsor-level{
  background:#0b1222;
  border:1px solid #111827;
  border-radius:14px;
  padding:20px;
  transition:.2s;
}

.sponsor-level:hover{
  border-color:#ef4444;
  transform:translateY(-2px);
}

.sponsor-level h4{
  margin:0 0 8px 0;
}

.sponsor-level p{
  margin:0;
  color:#cbd5e1;
}