:root{
  --bg:#0f1115; --card:#111827; --text:#e6eef8; --muted:#9fb0c8;
  --accent:#fbbf24; --wrap:1100px;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
.wrap{max-width:var(--wrap);margin:0 auto;padding:28px}
h1,h2,h3,h4{color:var(--accent);margin-top:0}
a{color:var(--accent);text-decoration:none}
ul{padding-left:20px}

.image-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Adjust spacing between images as needed */
  padding: 10px;
}

.image-banner img {
  height: 150px; /* Adjust the desired fixed height of the images */
  width: auto;
  object-fit: contain;
  flex-grow: 1;
}

/* Hero banner */
.hero{
  background-size:cover;
  background-position:center;
  height:320px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
}
.hero .overlay{
  background:rgba(0,0,0,0.45);
  padding:40px;
  text-align:center;
  border-radius:10px;
}
.hero h1{font-size:54px;margin:0 0 8px;font-weight:700;letter-spacing:1px}

/* Cards */
.card{
  background:rgba(255,255,255,0.05);
  padding:24px;
  border-radius:14px;
  margin:20px 0;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

/* Flex layout for about */
.flex{display:flex;flex-wrap:wrap;align-items:center;gap:24px}
.flex .text{flex:1 1 60%}
.flex .photo{flex:1 1 35%;text-align:center}
.flex img{max-width:100%;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,0.4)}

/* Footer */
.site-footer{padding:24px 0;text-align:center;color:var(--muted);border-top:1px solid rgba(255,255,255,0.1)}
.site-footer .berklee{height:36px;vertical-align:middle;margin-bottom:8px}
