/* General Styles */
/* ===================================================== */
/*  GLOBAL BASE STYLES                                    */
/* ===================================================== */

body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend Deca', sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Shared Headings */
h1 {
    font-weight: 500;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    font-weight: 500;
}

/* ===================================================== */
/*   🔵 SECTION 2 — NEW HERO + VALUES + SLIDER            */
/* ===================================================== */

/* Full-width hero container */
.hero-group {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    padding: 0 2vw;
    box-sizing: border-box;
}

.hero-group .group-figure {
    margin: 3rem;
}

/* Large hero image */
.hero-group .group-picture {
    width: 100%;
    max-width: none;
    height: clamp(790px, 28vh, 750px);
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 80px;
    border: none;
    outline: none;
    box-shadow: none;
}

/* Tagline */
.hero-tagline {
    padding-left: 2vw;
    margin: 1.5rem 0 0;
}

.hero-tagline-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    line-height: 0.95;
    font-size: 70px;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    text-align: left;
}

/* Description under tagline */
.hero-description {
    color: #888;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.7;
    margin: 0.75rem 0 0;
    padding-left: 2vw;
    max-width: 90ch;
    text-align: left;
}

/* Values heading */
.hero-values {
    color: #fff;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin: 6rem 0 0;
    padding-left: 2vw;
    text-align: left;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
    margin: 2rem 0 0;
    padding: 0 2vw;
}

.value-card {
    text-align: left;
}

.value-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0.5rem;
}

/* Color accents */
.values-grid .value-card:nth-child(1) .value-title { color: #36C3FF; }
.values-grid .value-card:nth-child(2) .value-title { color: #34D399; }
.values-grid .value-card:nth-child(3) .value-title { color: #FF69B4; }

.value-desc {
    color: #888;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
}

/* Responsive values grid */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================== */
/*   🔵 SECTION 2 — WHERE WE GO (LOGO SLIDER)             */
/* ===================================================== */

.where-we-go {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  padding: 60px 2vw 40px;
  box-sizing: border-box;
  text-align: center;
}

.where-we-go h2 {
    color: #36C3FF;
    font-size: 2.5rem;
}

.where-we-go .subtitle {
    color: #bbb;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Slider layout */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  align-items: center;
  gap: 40px;
  will-change: transform;
  transform: translateX(0); /* JS controls scrolling */
  animation: none !important; /* disable any CSS animation */
}

.slide-track > * {
    flex: 0 0 auto; /* prevent shrinking */
}

/* Logo boxes */
.logo-box {
    background: #2b2a2a;
    padding: 20px 30px;
    border-radius: 15px;
    width: clamp(160px, 16vw, 220px);
    height: clamp(110px, 12vw, 160px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 clamp(160px, 16vw, 220px);
}

/* Logo sizing */
.logo-box img { 
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1.1) !important;
}


@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move by half (because we duplicate once) */
}

/* Responsive hero */
@media (max-width: 600px) {
    .hero-group { padding: 0 4vw; }
    .hero-group .group-picture {
        border-radius: 16px;
        height: clamp(140px, 26vh, 300px);
        object-fit: cover;
    }
}

/* ===================================================== */
/*   🔵 SECTION 1 — LEADERSHIP / DIRECTORS / DEVELOPERS   */
/* ===================================================== */

.founders-section {
    margin-top: 5rem;
    text-align: center;
}

.founders-section h2{
    margin-bottom: 40px;
}

.founders-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin: 20px 20px -10px;
}

.profile {
    width: 220px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Headshot cards */
.profile img {
    width: 200px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    outline: 4px solid #fff;
}

.profile img[alt="Timothy Nguyen"] {
    
    object-position: center 0%;
}

.profile p {
    margin-top: 10px;
    font-size: 20px;
    text-align: center;
}

.profile span {
    font-size: 20px;
    color: #fff;
    display: block;
}

/* Directors */
.directors-section,
.developers-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.directors-section .profiles-container,
.developers-section .profiles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.developers-section .members-grid {
    width: min(100%, 1000px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2.5rem;
    text-align: left;
    transform: translateX(100px);
}

.developers-section .members-grid p {
    margin: 0;
    color: #9a9a9a;
    font-size: 1.05rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .developers-section .members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .developers-section .members-grid {
        grid-template-columns: 1fr;
        transform: none;
    }
}

/* ===================================================== */
/*   🔵 ALUMNI ACCORDION                                  */
/* ===================================================== */

.alumni-section {
    margin-top: 100px;
    padding: 0 20px;
    text-align: center;
}

.alumni-section h2 {
    text-align: left;
    color: #fff;
    font-size: 2rem;
}

.alumni-accordion {
    background: #000;
    border-top: 1px solid #222;
    border-radius: 10px;
}

.alumni-year {
    border-bottom: 1px solid #222;
}

.year-toggle {
    background: none;
    color: #fff;
    font-size: 1.6rem;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: none;
    font-family: 'Lexend Deca';
}

.year-toggle:hover {
    color: #36C3FF;
}

.year-toggle.active {
    color: #36C3FF;
}

.year-content {
    display: none;
    padding: 40px 0;
    border-top: 1px solid #222;
}

.year-content .profiles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.year-subsection .profiles-container + .profiles-container {
    margin-top: 40px;
}

.year-subsection {
    margin-bottom: 2.5rem;
    text-align: center;
}

.year-subsection h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* ===================================================== */
/*   END                                                  */
/* ===================================================== */

