:root {
    --accent: #552583; /* Lakers Purple */
    --bg: #000000;
}

html {
    scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Sidebar for Social Images */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-140%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 100;
}

.social-sidebar img {
    width: 32px;
    height: 32px;
    transition: 0.3s ease;
}

/* Purple Filter (Converts Black/White PNG to Purple #552583) */
.purple-icon {
    filter: invert(19%) sepia(50%) saturate(4155%) hue-rotate(253deg) brightness(91%) contrast(92%);
}

.social-sidebar a:hover .purple-icon {
    filter: brightness(1.5);
    transform: scale(1.1);
}

/* Background Video Setup */
.video-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.overlay-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent, black);
}

/********** Navigation & Hero **********/
nav { padding: 2rem 5% 0 5%; position: relative; z-index: 10; }
.logo { font-family: 'Outfit'; font-weight: 800; font-size: 1.5rem; text-align: left; }
.logo span { color: var(--accent); }

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
}

.badge {
    background: rgba(85, 37, 131, 0.2);
    border: 1px solid var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    width: fit-content;
}

h1 {
    font-family: 'Outfit';
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 2rem;
}

.accent-text {
    background: linear-gradient(to right, white, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* opacity: 0.8; */
}

.quick-stats { display: flex; gap: 40px; margin-bottom: 3rem; }
.label { display: block; font-size: 0.7rem; text-transform: uppercase; color: rgb(227, 227, 227); margin-bottom: 5px; }
.value { font-size: 1.2rem; font-weight: bold; }

.cta-group .btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}

.primary { background: var(--accent); color: rgb(255, 255, 255); }
.secondary { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; }

/*honors, #media, #contact {
    scroll-margin-top: 0px; 
}*/

/* Honors Section */
.honors { padding: 150px 15%; background: black; position: relative; z-index: 10; }
.media { padding: 10px 15%; background: black; position: relative; z-index: 10; }
.contact { padding: 250px 15%; background: black; position: relative; z-index: 10; }
.timeline { border-left: 1px solid var(--accent); padding-left: 30px; margin-top: 40px; }
.period { margin-bottom: 50px; }
.year { color: var(--accent); font-weight: bold; }
.year1 { color: #006747; font-weight: bold; }
.prosper-green {color: #006747; font-weight: bold;}
ul { list-style: none; margin-top: 15px; }
li { margin-bottom: 10px; color: rgba(255,255,255,0.7); }
li::before { content: "🏆"; margin-right: 10px; }
/* This targets the icon generator and removes it */
.no-icons li::before, 
.no-icons li::after {content: none !important;}



div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  height: 250px; /* Adjust this to your preferred size */
  width: auto;   /* Maintains the correct aspect ratio */
  padding: 10px;
  object-fit: cover; /* Optional: ensures the image fills its space cleanly */
}