@import url("https://use.typekit.net/gxy7kst.css");

/* <weight>: from 100 to 900 */
.placeholderClassName {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* TYPOGRAPHY 
font-family: source-serif-pro, serif;

**regular**
font-weight: 400;
font-style: normal;

**italic**
font-weight: 400;
font-style: italic;

**semi-bold**
font-weight: 600;
font-style: normal;

**bold**
font-weight: 700;
font-style: normal;

font-family: inter-24pt, sans-serif;

**light italic**
font-weight: 300;
font-style: italic;

**regular**
font-weight: 400;
font-style: normal;

**italic**
font-weight: 400;
font-style: italic;

**bold**
font-weight: 700;
font-style: normal;
*/

h2 {
    font-family: source-serif-pro, serif;
    font-weight: 600;
    font-style: normal;
    font-size: 3.25em;
    line-height: 1.1em;
    letter-spacing: 0.01em;
    margin-bottom: 0.2em;
}
h3 {
    font-family: inter-24pt, sans-serif;
    font-weight: 400;
    font-style: normal;
}
p {
    font-family: inter-24pt, sans-serif;
    font-weight: 350;
    font-style: normal;
    font-size: 1em;
    line-height: 1.3em;
    letter-spacing: 0.01em;
}


/* VARIABLES */
:root {
    --orange_text: #D06509;
    --gray_text: #333333;
}

/* BUTTONS */
.btn-svg-arrow {
  background-image: url("../graphics/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 35px;
  transition: background-position 0.4s ease;
}

button.readmore {
    background-color: var(--gray_text);;
    color: white;
    font-family: inter-24pt, sans-serif;
    border-radius: 10px;
    padding: 15px 20px 15px 40px;
    border: none;
    font-size: 0.9em;
    transition: background-color 0.4s ease;
}

button.readmore:hover {
    background-color: var(--orange_text);
}

button.readmore:hover .btn-svg-arrow {
    background-position: right 5px center;
}

button.donate_btn {
    background-color: var(--gray_text);;
    color: white;
    font-family: inter-24pt, sans-serif;
    border-radius: 10px;
    padding: 25px 30px 25px 50px;
    border: none;
    font-size: 1.1em;
    transition: background-color 0.4s ease;
}

button.donate_btn:hover {
    background-color: var(--orange_text);
}

button.donate_btn:hover .btn-svg-arrow {
    background-position: right 5px center;
}

/* GLOBALS */
html, body {
    margin: 0;
    padding: 0;
    background-color: black;
}
#wrapper {
    margin: 0 auto;
    max-width: 1800px;
    background-color: white;
    min-height: 100vh;
    position: relative;
}


/* HEADER*/
header {
    padding: 1em;
}
header img {
    min-width: 150px;
}

header > a {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}
header nav ul {
    list-style: none;
    margin: 1em auto;
    width: 250px;
    text-align: center;
}
header nav ul li {
    margin: 0 0 0.9em 0;
}
header nav a:link {
    font-family: inter-24pt, sans-serif;
    font-optical-sizing: auto;
    font-weight: 550;
    font-style: normal;
    text-decoration: none;
    color: #000;
    font-size: 1.4em;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}
header nav a:visited {
    color: #000;
}
header nav a:hover {
    color: var(--orange_text);
}

a.back_btn:link {
    display: inline-block;
    margin-bottom: 2em;
    font-family: inter-24pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    color: black;
    font-size: 1.2em;
}
a.back_btn:visited {
    color: black;
}
a.back_btn:hover {
    color: var(--orange_text);
}

a.back_btn span {
    display: inline-block;
    margin-right: .5em;
    position: relative;
    top: -1px;
    transition: all 0.3s ease;
}
a.back_btn:hover span {
    transform: translateX(-5px);
}

.focusSub a.back_btn:link {
    margin-bottom: 0;
}

/* HOME PAGE */
.teaser_about {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 2rem;
    margin: 4em;
}
.teaser_about img {
    width: 100%;
    max-width: 450px;
}
.teaser_about p {
    font-family: inter-24pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1.1em;
    letter-spacing: 0.01em;
    margin: 0 0 1em 0;
}

.slogan_bar  {
    background-color: var(--orange_text);
    color: white;
    text-align: center;
    padding: 2em 0;
}
.slogan_bar h2 {
    font-family: source-serif-pro, serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2.33em;
}

.donate {
    padding: 4em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.donate h2 {
    font-family: source-serif-pro, serif;
    font-weight: 600;
    font-style: normal;
    font-size: 4em;
    margin-bottom: 0.5em;
}
.donate p {
    font-family: inter-24pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1.1em;
    letter-spacing: 0.01em;
    margin: 0 0 2em 0;
}
/* ABOUT PAGE */
.about .hero {
    background-image: url("../graphics/about_banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5em 0;
}
.about .hero h2 {
    color: white;
    text-align: center;
    font-size: clamp(4em, 8vw, 6em);
    font-weight: 550;
}
.about .who_we_are {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 2rem;
    margin: 4em;
}
.about .who_we_are img {
    width: 100%;
    max-width: 450px;
}
.about .who_we_are p {
    font-family: inter-24pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1.1em;
    letter-spacing: 0.01em;
    margin: 0 0 1em 0;
}
.about .our_mission {
    background-image: url("../graphics/our_mission.webp");
    background-size: cover;
    background-position: center;
    padding: 3em 4em;
}
.about .our_mission h2 {
    color: white;
    font-size: 3em;
}
.about .our_mission h3 {
    color: white;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0 0 .66em 0;
}
.about .our_mission p {
    color: white;
    font-size: 1em;
    font-weight: 300;
}
.about .objectives h2 {
    text-align: center;
    margin: 2em 0;
}
.about .objectives > div {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 2rem;
    margin: 4em;
}

.about .objective_card {
    max-width: 450px;
    margin: 0 0 3em 0;
}
.about .objective_card h3 {
    font-family: source-serif-pro, serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.5em;
    letter-spacing: 0.01em;
    margin: 1em 0;
}
.about .structure {
    margin: 4em;
}
.about .structure > div {
    border: 10px solid var(--orange_text);
    padding: 6em 3em;
    border-radius: 20px;
}
.about .structure h2 {
    margin: .66em 0 .5em 0;
}

.about .members {
    margin: 0 4em;
    text-align: center;
}
.about .members h2 {
    margin: 2em 0;
}
.about .member_card {
    margin: 0 0 4em 0;
}
.about .member_card img {
    max-width: 250px;
}

.about .member_card h3 {
    font-family: source-serif-pro, serif;
    font-weight: 400;
    font-style: normal;
    margin: 1em 0 0 0;
    font-size: 1.6em;
}

.about .members p {
    margin: .5em 0 2em 0;
}

.pubs .hero {
    background-image: url("../graphics/publications_banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5em 0;
}
.focus .hero {
    background-image: url("../graphics/focus_banner_main.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5em 0;
}
.focus .hero h2 {
    color: white;
    text-align: center;
    font-size: clamp(4em, 8vw, 6em);
    font-weight: 550;
}

.pubs .hero h2 {
    color: white;
    text-align: center;
    font-size: clamp(4em, 8vw, 6em);
    font-weight: 550;
}

.pubs section {
    margin: 4em;
}
.pubs section > h2 {
    text-align: center;
}
.pubs section > p {
    text-align: center;
    margin: 1em auto;
    max-width: 600px;
}
.pubs article {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: start;
    gap: 2rem;
    margin: 4em auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 3em;
    max-width: 300px;
}
.pubs article h3 {
    font-family: source-serif-pro, serif;
    font-weight: 400;
    font-style: normal;
    margin:0;
    font-size: 1.6em;
}

.pubs article .description {
    font-family: inter-24pt, sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1em;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    margin: 1em 0;
}

.focus article {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: start;
    gap: 2rem;
    margin: 4em auto;
    max-width: 400px;
}
.focus article p {
    margin: 1em 0;
}
.focus article button {
    margin: 1.5em 0;
}

.focusSub .hero > h2 {
    color: white;
    text-align: center;
    font-size: clamp(4em, 8vw, 6em);
    font-weight: 550;
}

.focusSub section {
    max-width: 1300px;
    margin: 4em auto;
}
.focusSub section p {
    margin:1em 0;
}
.focusSub section img + p {
    margin: 2em 0 1em 0;
}
.focus_bull_creek .hero {
    background-image: url("../graphics/focus_banner_bull.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6em 0;
}
.focus_grand .hero {
    background-image: url("../graphics/focus_banner_grand.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5em 0;
}
.focus_private .hero {
    background-image: url("../graphics/focus_banner_private.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5em 0;
}
.focus_uofu .hero {
    background-image: url("../graphics/focus_banner_main.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5em 0;
}
.focus_suu .hero {
    background-image: url("../graphics/focus_banner_suu.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5em 0;
}

.contact .hero {
    background-image: url("../graphics/contact_banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5em 0;
}
.contact .hero > h2 {
    color: white;
    text-align: center;
    font-size: clamp(4em, 8vw, 6em);
    font-weight: 550;
}
.contact section {
    margin: 4em;
}
.contact footer {
    position: absolute;
    bottom: 0;
    width: 100%;    
}

/* MEDIA QUERIES - largest screens *********************************/


@media screen and (min-width: 1000px) {
    /* HEADER*/
    header {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        margin: 0 4em;
        padding: 1em 0;
    }
    header img {
        min-width: 150px;
    }
    header > a {
        display: static;
        max-width: none;
        margin: none;
    }
    header nav ul {
        display: grid;
        grid-auto-flow: column;
        justify-content: end;
        gap: 2rem;
        list-style: none;
        width: auto;
    }
    header nav ul li {
        margin: 0;
    }
    header nav a:link {
        font-family: inter-24pt, sans-serif;
        font-optical-sizing: auto;
        font-weight: 550;
        font-style: normal;
        text-decoration: none;
        color: #000;
        font-size: 1.4em;
        letter-spacing: 0.01em;
        transition: color 0.3s ease;
    }
    header  a:visited {
        color: #000;
    }
    header nav a:hover {
        color: var(--orange_text);
    }

    /* HOME PAGE */
    .teaser_about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-items: end;
        gap: 2rem;
        margin: 4em;
    }
    .teaser_about img {
        max-width: none;
    }
    .teaser_about p {
        font-family: inter-24pt, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.1em;
        line-height: 1.1em;
        letter-spacing: 0.01em;
        margin: 0 0 1em 0;
    }

    .slogan_bar  {
        background-color: var(--orange_text);
        color: white;
        text-align: center;
        padding: 2em 0;
    }
    .slogan_bar h2 {
        font-family: source-serif-pro, serif;
        font-weight: 600;
        font-style: normal;
        font-size: 2.33em;
    }

    .donate {
        padding: 4em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    .donate h2 {
        font-family: source-serif-pro, serif;
        font-weight: 600;
        font-style: normal;
        font-size: 4em;
        margin-bottom: 0.5em;
    }
    .donate p {
        font-family: inter-24pt, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.1em;
        line-height: 1.1em;
        letter-spacing: 0.01em;
        margin: 0 0 2em 0;
    }

    /* ABOUT  PAGE */

    .about .who_we_are {
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
        justify-items: center;
        gap: 2rem;
        margin: 4em;
    }
    .about .who_we_are > :nth-child(odd) {
        justify-self: end;
        align-self: start;
    }

    .about .our_mission div {
        max-width: 1100px;
        margin: 0 auto;
    }

    .about .objectives > div {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
        justify-items: center;
        gap: 4em;
        margin: 0 4em;
    }
    .about .objective_card {
        max-width: none;
        margin: 0;
    }

    .about .members > div {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
        justify-items: center;
        gap: 4em;
    }

    .pubs section > p {
        max-width: 900px;
    }
    .pubs article {
        grid-template-columns: 325px auto 200px;
        align-items: center;
        justify-items: start;
        gap: 2rem;
        margin: 4em auto;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        padding: 3em;
        max-width: none;
    }
    .pubs article > a {
        justify-self: end;
    }


    .focus article {
        grid-template-columns: 450px minmax(400px, 1000px);
        margin: 4em;
        max-width: none;
        justify-content: center;
    }
    .focus article p {
        margin: 1em 0;
    }
    .focus article button {
        margin: 1.5em 0;
    }

}

/* FOOTER */
footer {
    background-image: url("../graphics/Footer.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 4em 0;
    gap: 2em;
}
footer img {
    width: 150px;
}
footer > *:nth-child(odd) {
  justify-self: end;
}

footer > *:nth-child(even) {
  justify-self: start;
}
footer ul li {
    margin: 0 0 0.5em 0;;
}

footer nav a:link {
    font-family: inter-24pt, sans-serif;
    font-weight: 550;
    font-style: normal;
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

footer nav a:visited {
    color: #fff;
}
footer nav a:hover {
    color: black;
}

p.notice {
    width: 210px;
    font-family: inter-24pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 0.8em;
    line-height: 1.2em;
    letter-spacing: 0.01em;
    color: white;
    margin: 1.5em 0 0 0;
}

/* ============================================================
   CAROUSEL STYLES
   ============================================================ */

/* ============================================================
   CAROUSEL STYLES
   ============================================================ */

/* ── Outer container ──────────────────────────────────────── */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;          /* clips the off-screen slides   */
  background: #111;          /* fallback while images load    */
  user-select: none;
}

/* ── Track wrapper (clips) & track (holds all slides) ─────── */
.carousel__track-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel__track {
  display: flex;             /* slides sit side by side        */
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

/* ── Individual slide ─────────────────────────────────────── */
.carousel__slide {
  flex: 0 0 100%;            /* each slide = full carousel width */
  width: 100%;
  height: 560px;             /* default desktop height           */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/* ── Dark overlay for text legibility ─────────────────────── */
.carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.70) 100%
  );
  display: flex;
  align-items: flex-end;     /* content sits toward the bottom */
}

/* ── Text content block ───────────────────────────────────── */
.carousel__content {
  padding: 0 0 5em 8em;
  max-width: 720px;
}

.carousel__heading {
    color: white;
    font-family: source-serif-pro, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.carousel__subtext {
  color: rgba(255, 255, 255, 0.88);
  font-family: inter-24pt, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  font-weight: 300;
}

/* ── Carousel button — white/black, overrides base .readmore ─ */
button.readmore.carousel__btn {
  background-color: #ffffff;
  color: #111111;
}

button.readmore.carousel__btn:hover {
  background-color: var(--orange_text);
  color: #ffffff;
}

/* Dark arrow in normal state, white arrow on hover            */
button.readmore.carousel__btn .btn-svg-arrow.carousel__arrow {
  background-image: url("../graphics/arrow_dark.svg");
}

button.readmore.carousel__btn:hover .btn-svg-arrow.carousel__arrow {
  background-image: url("../graphics/arrow.svg");
}

/* ── Prev / Next nav buttons (no background, no border) ─── */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 10;
}

.carousel__nav--prev { left: 1rem; }
.carousel__nav--next { right: 1rem; }

/* ── CSS chevron — two-sided border box rotated 45deg ────── */
.carousel__chevron {
  display: block;
  width: 18px;               /* adjust to change chevron size  */
  height: 18px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transition: all 0.3s ease, transform 0.3s ease;
  opacity: 0.5;
}

/* Prev: pointing left */
.carousel__nav--prev .carousel__chevron {
  transform: rotate(-135deg);
  margin-left: 6px;
}

/* Next: pointing right */
.carousel__nav--next .carousel__chevron {
  transform: rotate(45deg);
  margin-right: 6px;
}

/* Hover: color shifts to orange, slight scale */
.carousel__nav:hover .carousel__chevron {
  border-color: var(--orange_text);
  opacity: 1;
}

.carousel__nav--prev:hover .carousel__chevron {
  transform: rotate(-135deg) scale(1.15);
}

.carousel__nav--next:hover .carousel__chevron {
  transform: rotate(45deg) scale(1.15);
}

/* ── Dot indicators ───────────────────────────────────────── */
.carousel__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel__dot.active {
  background: #D06509;
  transform: scale(1.25);
}

.carousel__dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.85);
}

/* ── Progress bar (optional auto-advance indicator) ──────── */
.carousel__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--orange_text);
  z-index: 10;
  transition: width linear;   /* duration set by JS            */
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 900px) {
  .carousel__slide {
    height: 460px;
  }

  .carousel__content {
    padding: 2rem 2rem 3rem;
    max-width: 560px;
  }
}

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */
@media (max-width: 600px) {
  .carousel__slide {
    height: 380px;
  }

  .carousel__content {
    padding: 1.25rem 1.25rem 3rem;
    max-width: 100%;
  }

  .carousel__nav {
    width: 36px;
    height: 36px;
  }

  .carousel__chevron {
    width: 14px;
    height: 14px;
  }

  .carousel__nav--prev { left: 0.5rem; }
  .carousel__nav--next { right: 0.5rem; }
}

/* ============================================================
   ACCESSIBILITY — respect reduced motion preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .carousel__track {
    transition: none;
  }
  .carousel__progress {
    display: none;
  }
}