header {
  height: 100vh; /* Full viewport height */
  width: 100%;   /* Full width */
}

.studio-x-annual-report {
  font-family: 'Magallanes', sans-serif;
  font-weight: bold;
  font-size: 1.75rem;
  color: white;
  text-align: center;

  margin-top: clamp(4vh, 10vh, 20vh);
  margin-bottom: clamp(1rem, 4vh, 6vh);
  margin-left: auto;
  margin-right: auto;
}

.container-narrow {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;  /* full width on small screens */
}

@media (min-width: 768px) {
  .container-narrow {
    max-width: 1200px;  /* narrower on tablets and up */
  }
}

.bg-dark {
  background-color: #222222;
  color: #ffffff; /* optional: set text color to white for contrast */
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

h2 {
  font-family: 'Magallanes', sans-serif;
  font-weight: bold;
  font-size: clamp(1rem, 5vw, 3rem);
  color: white;
  text-align: center;
  margin: 0;
}

.section-description {
  font-family: 'Proxima Nova', sans-serif;
  width: 100%;
  max-width: 900px;
  text-align: center;
  font-weight: normal;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: white;
  margin: 0 auto 2rem auto;
}

h3 {
  font-family: 'Magallanes', sans-serif;
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-family: 'Magallanes', sans-serif;
  font-weight: bold;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: white;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: white;
  margin-bottom: 2.5rem;
}

.text-dark {
  color: #222222;
}

.section-header-glass.purple {
  --gradient-color1: #5a28cd;
  --gradient-color2: #ff00b4;
  --text-color: #ffffff;
}

.section-header-glass.pink {
  --gradient-color1: #ff00b4;
  --gradient-color2: #ff8c00;
  --text-color: #ffffff;
}

.section-header-glass.orange {
  --gradient-color1: #ff6b6b;
  --gradient-color2: #faff00;
  --text-color: #222222;
}

.section-header-glass.yellow {
  --gradient-color1: #faff00;
  --gradient-color2: #00ff96;
  --text-color: #222222;
}

.section-header-glass.green {
  --gradient-color1: #00ff96;
  --gradient-color2: #00b9e6;
  --text-color: #222222;
}

.section-header-glass.blue {
  --gradient-color1: #00b9e6;
  --gradient-color2: #5a28cd;
  --text-color: #ffffff;
}

.section-header-glass {
  --gradient-color1: #7f5af0;
  --gradient-color2: #ff00b4;
  --text-color: #222222;

  position: relative;
  border-radius: 30px;
  padding: 3rem 2rem;
  max-width: 100vw; 
  margin: 0 auto 4rem auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  background-image: linear-gradient(
    135deg,
    var(--gradient-color1) 0%,
    var(--gradient-color2) 50%,
    var(--gradient-color1) 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-header-glass.tall {
  min-height: 300px;               /* Minimum height */
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;         /* Vertically center */
  align-items: center;
  text-align: center;
  height: auto;                    /* Allow height to grow */
}

.section-header-glass.only-title {
  display: flex;
  flex-direction: column;
  justify-content: center;         /* Vertically center */
  align-items: center;
  text-align: center;
  min-height: 150px;               /* Minimum height */
  padding: 2rem 2rem;              /* Comfortable padding */
  height: auto;                    /* Allow height to grow */
}

.section-header-glass.only-title h2 {
  margin: 0;
}

.section-header-glass h2 {
  overflow: visible;        /* Allow text to overflow if needed */
  font-family: 'Magallanes', sans-serif;
  font-weight: bold;
  font-size: clamp(1.5rem, 4vw, 4rem); /* Responsive font size */
  max-width: 100%;          /* Stay inside container */
  margin: 0 auto;
  line-height: 1.1;
  color: var(--text-color, #222222);
}

/* Responsive description below (optional) */
.section-header-glass .section-description {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--text-color, #222222);
  margin: 1rem auto 0 auto;
  max-width: 600px;
  line-height: 1.4;
}

@media (prefers-reduced-motion: no-preference) {
  .section-header-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section-header-glass h2,
.section-header-glass .section-description {
  color: var(--text-color);
}

.section-header-glass h2 {
  font-family: 'Magallanes', sans-serif;
  font-weight: bold;
  font-size: clamp(3rem, 6vw, 6rem);
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-header-glass .section-description {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-style: italic;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .section-header-glass {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }
  .section-header-glass h2 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 1rem;
  }
  .section-header-glass .section-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
    max-width: 100%;
  }
}

.dotted-link {
  color: #00b9e6;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px; /* space for underline */
  
  border-bottom: none; /* remove static dotted border */
  
  background-image: radial-gradient(circle, #00b9e6 1.5px, transparent 1.5px);
  background-size: 6px 4px;
  background-repeat: repeat-x;
  background-position: 0 100%; /* align dots at bottom */
  background-origin: padding-box;
  transition: color 0.2s ease, background-image 0.2s ease;
}

/* Hover: darker color + moving dots animation */
.dotted-link:hover {
  color: #ff00b4;
  background-image: radial-gradient(circle, #ff00b4 1.5px, transparent 1.5px);
  animation: move-dots 0.4s linear infinite;
}

/* Animate the background position to move dots */
@keyframes move-dots {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 6px 100%;
  }
}

.role {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: white;
  margin: -.5rem auto 0 auto;
  white-space: nowrap;
}

.number {
  font-family: 'Magallanes', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: white;
  margin: none;
}

.hero {
  position: relative;
  background: url('../images/hero/rainbow-momentum.png') repeat-x center center;
  background-size:auto 100vh;
  background-position: 0 0; /* Will be overridden */
  color: white;
  padding-top: 1rem;
  padding-bottom: 5rem;
  text-align: center;

  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-name: none;

  min-height: 100vh; /* Ensure the hero section fills the viewport */
}

@keyframes slideGradient {
  0% {
    background-position-x: 100%;
  }
  100% {
    background-position-x: 0;
  }
}

.hero-logo {
  width: 350px;
  height: auto;
  margin: .5rem auto 1rem auto;
  display: block;
}

.face {
  width: 80vw;
  max-width: 800px;
  height: auto;
  margin: 0 auto 3rem auto;

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

.hero-headset {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

.mouth-container {
  width: 40%;
  max-width: 300px;
  margin: -10px auto 10px auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

svg.mouth{
  width: 100%;
  height: auto;
  display: block;
}

.mouth path,
.mouth circle {
  stroke: white;
  stroke-width: 10;
  fill: none;
  transition: opacity 0.3s ease;
  stroke-linecap: round;
}

.smile {
  opacity: 1;
}

.ooo {
  opacity: 0;
}

.face:hover .smile {
  opacity: 0;
}

.face:hover .ooo {
  opacity: 1;
}

.annual-report {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 1.5rem;
  color: white;
  text-align: center;
}

.miles-quote {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: normal;
  font-size: 1rem;
  color: white;
  text-align: center;
  padding-top: 1.5rem;
}









/* Proxima Nova font family fallback */
.custom-navbar {
  font-family: 'Proxima Nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Make .hero the positioning context */
.hero {
   position: relative;
  background: url('../images/hero/rainbow-momentum.png') repeat-x center center;
  background-size: auto 100vh;
  background-position: 0 0;
  color: white;
  padding-top: 1rem;
  padding-bottom: 5rem; /* keep space for nav */

  min-height: 100vh;

  /* Add these for centering */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */

  text-align: center;

  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-name: none;
}

/* Lock navbar to bottom of hero */
.hero .custom-navbar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;

  /* Visual style */
  backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* Ensure box-sizing is consistent */
*, *::before, *::after {
  box-sizing: border-box;
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  .face {
    width: auto;
    max-width: none;
    height: 60vh;
    max-height: 60vh;
    margin: 0 auto 2rem auto;
    overflow: hidden;
  }

  .studio-x-annual-report {
font-size: clamp(0.8rem, 3vw, 1.5rem);
    line-height: 1.2;
    text-align: center;  }

  .hero-headset {
    max-height: 40vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mouth-container {
    max-height: 8vh;
    width: 40%;
  }

  svg.mouth {
    height: 100%;
    width: 100%;
  }
}


/* Landscape orientation tweaks for small screens */
@media (orientation: landscape) and (max-width: 768px) {
  .hero {
    padding-top: 0.5rem !important;       /* reduce top padding */
    padding-bottom: 3rem !important;      /* reduce bottom padding */
    overflow-y: auto;                      /* allow vertical scroll if needed */
  }

  .face {
    margin-bottom: 1rem !important;       /* reduce bottom margin */
    width: 90vw !important;                /* slightly smaller width */
  }

  h1.studio-x-annual-report {
    font-size: 1.5rem !important;          /* smaller font size */
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;      /* smaller margin */
  }
}


/* Center nav container */
.custom-navbar .container {
  display: flex !important;
  justify-content: center !important;
}

/* Center collapse contents */
.custom-navbar .navbar-collapse {
  justify-content: center !important;
}

/* Keep nav items on one line */
.custom-navbar .navbar-nav {
  white-space: nowrap;
  gap: 1rem;
  display: flex;
  flex-wrap: nowrap;
}

/* Nav link styles */
.custom-navbar .nav-link {
  color: white !important;
  background-color: transparent !important;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

/* Hover/focus: solid white bg, blue text, semi-bold */
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
  background-color: white !important;
  color: #00b9e6 !important;
  text-decoration: none;
  outline: none;
}

/* Toggler styles for mobile */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  outline-color: white !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); /* optional for a soft white glow */
}

/* Mobile responsive styles */
@media (max-width: 1000px) {
  /* Existing collapse styles */
  .navbar-expand-md .navbar-collapse {
    display: none !important;
  }

  .navbar-expand-md .navbar-toggler {
    display: block !important;
  }

  .navbar-expand-md.collapsing,
  .navbar-expand-md .collapse.show {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: column !important;
    width: 100%;
    gap: 0.5rem;
  }

  .navbar-expand-md .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }

  .hero .custom-navbar .container {
    flex-direction: column !important;
    align-items: center;
  }

  .hero .custom-navbar .navbar-toggler {
    align-self: center;
    margin-bottom: 0.5rem;
  }

  .hero .custom-navbar .navbar-collapse {
    width: 100%;
  }

  /* Base text color black when menu open */
  .hero .custom-navbar .collapse.show .nav-link {
    color: white !important;
    background-color: transparent !important;
  }

  /* On hover/focus: blue text and white background */
  .hero .custom-navbar .collapse.show .nav-link:hover,
  .hero .custom-navbar .collapse.show .nav-link:focus {
    background-color: white !important;
    color: #00b9e6 !important;
  }
}

/* Fixed top navbar when pinned */
.fixed-top-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1050;

  backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}

/* Constrain container inside fixed navbar */
.fixed-top-navbar > .container {
  max-width: 1140px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Add margin to next element to avoid jump when fixed */
.fixed-top-navbar + * {
  margin-top: 56px;
}

/* Fix collapse menu inside fixed navbar with padding & blur */
.fixed-top-navbar .collapse.show {
  position: absolute !important;
  top: 56px !important; /* Just below navbar */
  left: 0;
  right: 0;
  padding: 0.75rem 1rem; /* Add padding around entire menu */

  backdrop-filter: blur(50px); /* Blur background like navbar */
  background-color: rgba(34, 34, 34, 0.90);
  -webkit-backdrop-filter: blur(50px);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: none !important;
  overflow: visible !important;
  z-index: 1060;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100%;
  /* Removed border-radius */
}

/* Nav links inside fixed navbar collapse with margin & padding */
.fixed-top-navbar .nav-link {
  width: 100%;
  padding: 0.75rem 1.25rem; /* a bit more padding */
  margin-bottom: 0.5rem; /* space between buttons */
  border-radius: 8px;
  text-align: center;
  background-color: transparent !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Remove margin after last nav item */
.fixed-top-navbar .nav-link:last-child {
  margin-bottom: 0;
}

/* Hover/focus styles consistent with your original */
.fixed-top-navbar .nav-link:hover,
.fixed-top-navbar .nav-link:focus {
  background-color: white !important;
  color: #00b9e6 !important;
  text-decoration: none;
  outline: none;
}

/* Padding to body when fixed navbar menu open to prevent jump */
body.fixed-navbar-open {
  padding-top: 56px;
}




.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background 0.3s ease;
}

.back-to-top:hover {
  color: #00b9e6;
  background: white;
}

.headshot-wrapper {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: none; /*5px solid #ff00b4; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.headshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-style {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px; /* same rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* subtle shadow */
  object-fit: cover;
  margin: 1.5rem auto 4rem auto;
}

.img-style-voices {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 30px; /* same rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* subtle shadow */
  object-fit: cover;
  margin: 1.5rem auto 4rem auto;
}

.img-style-trophy {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 30px; /* same rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* subtle shadow */
  object-fit: cover;
  margin: 1.5rem auto 4rem auto;
}

.custom-bullets {
  list-style-type: disc;
  padding-left: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  max-width: 1000px;
}

.custom-bullets li {
  margin-bottom: 12px; /* Adds vertical space between bullets */
}

.custom-bullets em {
  font-style: italic;
  font-weight: bold;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto; /* centers the container */
    border-radius: 30px;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px; /* apply rounding to the iframe itself */
  }

.solid-outline {
  border: 5px solid var(--accent-1);
}

.section-purple {
  --accent-1: #5a28cd;
}

.section-pink {
  --accent-1: #ff00b4;
}

.section-orange {
  --accent-1: #ff8c00;
}

.section-yellow {
  --accent-1: #faff00;
}

.section-green {
  --accent-1: #00ff96;
}

.section-blue {
  --accent-1: #00b9e6;
}


/* === Responsive Carousel Container === */
.carousel-container {
  max-width: 100%;
  width: 100%;
  margin: 1.5rem auto 4rem auto;
}

/* === Wrapper handles border radius and shadow === */
.carousel-wrapper {
  border-radius: 30px;
  box-shadow:
  0 4px 10px rgba(0, 0, 0, 0.1); ;
  overflow: visible;
  position: relative;
}

/* === Inner Carousel Area === */
.carousel-inner {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.carousel-inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

/* === Progress Dots (Indicators) === */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 10;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  background-color: white;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
  flex-shrink: 0;
}

.carousel-indicators .active {
  opacity: 1;
}

/* === Navigation Arrows === */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
  transition: filter 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.8));
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 35px 35px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}

.card {
  border-radius: 20px;
  overflow: hidden;
}

.photo-box {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-color: #adb5bd;
}

.photo-link {
  display: block;
  text-decoration: none;
}

.bg-highlight-1 {
  background-image: url('../images/research/faculty-highlight-1.png');
}

.bg-highlight-2 {
  background-image: url('../images/research/faculty-highlight-2.jpg');
}

.bg-highlight-3 {
  background-image: url('../images/research/faculty-highlight-3.jpg');
}

.bg-highlight-4 {
  background-image: url('../images/research/faculty-highlight-4.png');
}

.bg-highlight-5 {
  background-image: url('../images/teaching/Teaching-8.jpg');
}

.bg-highlight-6 {
  background-image: url('../images/teaching/Teaching-9.png');
}

.bg-highlight-7 {
  background-image: url('../images/teaching/Teaching-10.jpg');
}

.bg-highlight-8 {
  background-image: url('../images/community-engagement/heartbeats.jpg');
}

.bg-highlight-9 {
  background-image: url('../images/community-engagement/women-in-gaming.jpg');
}

.bg-highlight-10 {
  background-image: url('../images/student-leadership/miles-sl.jpg');
}

.bg-highlight-11 {
  background-image: url('../images/student-leadership/liz-miles-sl.jpg');
}

.bg-highlight-1111 {
  background-image: url('../images/student-leadership/libby.png');
}

.bg-highlight-12 {
  background-image: url('../images/student-leadership/liv.png');
}

.bg-highlight-13 {
  background-image: url('../images/student-leadership/spencer.png');
}

.bg-highlight-14 {
  background-image: url('../images/student-leadership/sarah.png');
  background-size: contain; /* Show the whole image */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #121212; /* Dark background behind image */
}

.bg-highlight-15 {
  background-image: url('../images/student-leadership/hammer.jpg');
}

.bg-highlight-16 {
  background-image: url('../images/student-leadership/bug.png');
  background-size: contain; /* Show the whole image */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #121212; /* Dark background behind image */
}

.bg-highlight-17 {
  background-image: url('../images/student-leadership/earl.png');
}

.bg-highlight-18 {
  background-image: url('../images/inside-studio-x/joe.jpg');
}

.bg-highlight-19 {
  background-image: url('../images/inside-studio-x/yvie.jpg');
}

.bg-highlight-20 {
  background-image: url('../');
}

.bg-highlight-21 {
  background-image: url('../');
}

.bg-highlight-22 {
  background-image: url('../');
}

.banner-img {
  object-fit: cover;
  height: auto;
  max-height: 400px; /* Adjust as needed */
}

/* Exciting stats section styles */
.stats-row {
  margin-top: 3rem;
  margin-bottom: 3rem;
  row-gap: 2rem;
}

.stat-block {
  background: rgba(227, 235, 237, 0.05);
  border: 3px solid #ff8c00;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-sizing: border-box;
  width: calc((100% / 6) - 2rem);
  margin: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-block:hover,
.stat-block:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #ff8c00;
  background: rgba(0, 185, 230, 0.07);
}

/* Big number style */
.stat-block .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

/* Description style */
.stat-block p {
  font-size: 0.95rem;
  color: white;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .stat-block {
    width: calc((100% / 3) - 2rem); /* 3 per row on medium screens */
  }
}

@media (max-width: 600px) {
  .stat-block {
    width: calc((100% / 2) - 2rem); /* 2 per row on small screens */
  }
}

@media (max-width: 400px) {
  .stat-block {
    width: calc(100% - 2rem); /* full width on very small screens */
  }
}

/* Responsive tweak for smaller screens
@media (max-width: 768px) {
  .stat-block .number {
    font-size: 2rem;
  }

  .stat-block p {
    font-size: 0.9rem;
  }
}
*/


/* Footer base */
.footer {
  background-color: #111;
  color: white;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Call to Action */
.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
}

.footer-email {
  font-weight: 500;
}

/* Logos */
.footer-logo {
  max-width: clamp(150px, 30vw, 300px);
  width: auto;
  object-fit: contain;
}

/* Trio section: logos + social */
.footer-trio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem; /* increased gap for better spacing */
  flex-wrap: nowrap; /* keep on one line */
  text-align: center;
}

/* Center logos vertically and fix width for equal spacing */
.footer-logo-wrapper {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;        /* let it grow naturally */
  max-width: 200px;   /* limit max width */
  margin: 0 auto;     /* center horizontally */
}


/* Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* spacing between icons */
  flex: 0 0 auto;
}

.footer-social a {
  font-size: 1.6rem;
  color: #00b9e6;
  transition: color 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  color: #ff00b4;
}

/* Credits */
.footer-credits {
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.5;
  max-width: 960px;
  margin: 0 auto;
}

/* Negative space */
.footer-spacer {
  height: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-heading {
    font-size: 1.5rem;
  }

  .footer-description {
    font-size: 0.95rem;
  }

  .footer-logo {
  max-height: none; /* remove max-height restriction */
  width: 100%;      /* fill wrapper width */
  height: auto;     /* keep aspect ratio */
  display: block;
}


  .footer-social a {
    font-size: 1.4rem;
  }

  /* Stack trio vertically on small screens */
  .footer-trio {
    flex-direction: column;
    gap: 2rem;
  }

  /* Remove fixed width on logos for mobile */
  .footer-logo-wrapper {
    width: auto;
  }
}
