:root {
    --color-dark-blue: #243177;
    --color-ribbon: #ff1c6b;
    --color-cyan: #01cfd2;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    /* color: #000; */
    overflow-x: hidden;
}

/* NAVBAR */
.custom-navbar {
    background-color: var(--color-dark-blue);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    z-index: 50;
}

.hamburger {
    width: 22px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
}

.fob-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-ribbon);
    width: 40px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.fob-ribbon span {
    font-weight: 900;
    font-size: 16px;
    line-height: 1.15;
    color: #000;
}

.btn-login {
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.2s;
}

.btn-login:hover {
    background-color: #fff;
    color: var(--color-dark-blue);
    text-decoration: none;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 480px;
    background: linear-gradient(105deg, #432168 0%, #7e1e83 20%, #d60098 50%, #ff1c6b 75%, #ff4b44 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.latmg-logo {
    margin-right: 8px;
    margin-top: -2px;
}

.latmg-text {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.brand-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 15px;
}

.la-times-text {
    font-family: 'UnifrakturMaguntia', cursive;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    margin-top: 4px;
}

.fob-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 58px;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 2px;
}

.fob-of {
    font-size: 26px;
    font-weight: 800;
    margin-top: 6px;
}

.usc-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.date-text {
    font-weight: 800;
    font-size: 44px;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

/* ANNOUNCEMENT BANNER */
.announcement-banner {
    background-color: var(--color-dark-blue);
    color: #fff;
    text-align: center;
    padding: 24px 0;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
}

/* MAILING LIST SECTION */
.mailing-list-section {
    background-color: var(--color-cyan);
    padding: 70px 20px;
    text-align: center;
}

.mailing-title {
    font-weight: 800;
    font-size: 24px;
    color: #000;
    margin-bottom: 30px;
}

.mailing-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mailing-input {
    width: 100%;
    max-width: 360px;
    padding: 16px 22px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    background-color: #fff;
}

.mailing-input::placeholder {
    color: #777;
}

.mailing-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.mailing-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 16px 36px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Manrope', sans-serif;
}

.mailing-btn:hover {
    background-color: #333;
}

.mailing-disclaimer {
    max-width: 700px;
    margin: 0 auto;
    font-size: 11.5px;
    line-height: 1.5;
    color: #000;
    text-align: left;
    font-weight: 500;
}

.mailing-disclaimer strong {
    font-weight: 800;
}

@media (max-width: 768px) {
    .fob-title {
        font-size: 36px;
    }

    .fob-of {
        font-size: 18px;
    }

    .date-text {
        font-size: 32px;
    }

    .la-times-text {
        font-size: 24px;
    }

    .mailing-form {
        flex-direction: column;
        align-items: center;
    }

    .mailing-btn {
        width: 100%;
        max-width: 360px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.get-involved-wrapper {
    background-color: #f7f4f9;
    padding: 90px 0;
}

.custom-container {
    max-width: 1300px;
}

.section-title {
    font-weight: 800;
    font-size: 34px;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.card-media {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.card-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-title-block {
    padding: 15px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.bg-pink {
    background-color: #f32486;
}

.bg-cyan {
    background-color: #00c6d7;
}

.bg-orange {
    background-color: #f6a500;
}

.bg-lime {
    background-color: #d5f247;
}

.card-text-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-text {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    padding: 0 5px;
}

.btn-black {
    background-color: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.btn-black:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.festival-container {
    width: 100%;
    overflow-x: hidden;
}

/* Intro Section Styles */
.festival-intro {
    background-color: #e8f8fa;
    padding: 85px 0 75px;
}

.main-heading {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.stats-container {
    margin-bottom: 45px;
}

.stat-text {
    font-size: 26px;
    font-weight: 700;
    color: #123777;
    line-height: 1.2;
}

.stat-divider {
    font-size: 22px;
    font-weight: 400;
    color: #123777;
    margin: 0 16px;
    opacity: 0.9;
}

.intro-paragraph {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    font-weight: 400;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-underline {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
}

/* Panels Section Styles */
.panels-section {
    padding: 85px 0;
    background: linear-gradient(90deg, #0b808e 0%, #214b8b 35%, #7928c9 75%, #9536e2 100%);
    overflow: hidden;
}

/* Complex background textures */
.background-effects {
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.effect-smoke {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12) 0%, transparent 65%);
}

.effect-smoke-left {
    top: -20%;
    left: -10%;
    width: 50%;
    height: 140%;
}

.effect-smoke-center {
    bottom: -30%;
    left: 30%;
    width: 40%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
}

.effect-ring {
    position: absolute;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.effect-ring-1 {
    top: 20%;
    right: 28%;
    width: 45px;
    height: 45px;
}

.effect-blob {
    position: absolute;
    border-radius: 50%;
}

.effect-blob-1 {
    bottom: 25%;
    right: 12%;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.06);
}

.effect-blob-2 {
    top: 60%;
    right: 40%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
}

.content-wrapper {
    z-index: 2;
}

.panels-heading {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0px;
}


.video-grid-section {
    padding: 80px 0;
    background-color: #ffffff
}

.custom-container {
    max-width: 1320px
}

.video-card {
    display: flex;
    flex-direction: column;
    cursor: pointer
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease
}

.video-card:hover .video-thumbnail {
    opacity: 0.9
}

.video-title {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.4;
    letter-spacing: -0.2px
}

@media (min-width:992px) {
    .col-md-4 {
        padding-left: 24px;
        padding-right: 24px
    }

    .row {
        margin-left: -24px;
        margin-right: -24px
    }
}


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700;800&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.sponsors-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.main-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #000000;
    letter-spacing: -0.3px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000000;
    letter-spacing: -0.2px;
}

.presenting-section {
    margin-bottom: 80px;
}

.presenting-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.associate-section {
    margin-bottom: 100px;
}

.associate-row-1 {
    margin-bottom: 60px !important;
}

.sponsor-logo {
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.sponsor-logo:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800&family=Playfair+Display:wght@400;700&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sponsors-section {
    padding-top: 80px;
    padding-bottom: 120px;
    background-color: #ffffff;
}

.foundation-logo {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 130px;
    color: #111111;
}

.sponsors-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 90px;
    color: #000000;
    letter-spacing: -0.5px;
}

.sponsors-grid {
    row-gap: 80px;
}

.sponsor-item {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.sponsor-item img {
    max-height: 90px;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    mix-blend-mode: multiply;
}

/* Ensure circular placeholders stay perfectly round */
.sponsor-item img.rounded-circle {
    max-width: 90px;
    max-height: 90px;
    aspect-ratio: 1/1;
    object-fit: cover;
    mix-blend-mode: normal;
}

.sponsor-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .sponsors-grid {
        row-gap: 50px;
    }
    .sponsors-title {
        font-size: 26px;
        margin-bottom: 60px;
    }
    .foundation-logo {
        margin-bottom: 80px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800&family=UnifrakturMaguntia&display=swap');

body {
  /* background-color: #000000; */
  margin: 0;
  padding: 0;
}

.la-times-footer {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  padding-top: 80px;
  padding-bottom: 50px;
}

.custom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.la-logo {
  font-family: 'UnifrakturMaguntia', serif;
  font-size: 42px;
  margin-bottom: 70px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.california-times-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.california-times-wrap .small-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.california-times-wrap .cal-times {
  font-family: 'UnifrakturMaguntia', serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.footer-col-1-link {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.footer-col-1-link:hover {
  color: #cccccc;
  text-decoration: none;
}

.follow-us {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
  margin-top: 35px;
  letter-spacing: 0.3px;
}

.social-icons {
  display: flex;
  gap: 22px;
  align-items: center;
}

.social-icons a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 26px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #cccccc;
  text-decoration: underline;
}

.footer-divider {
  border-top: 1px solid #333333;
  margin-top: 65px;
  margin-bottom: 30px;
  width: 100%;
}

.copyright {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* Desktop Tweaks */
@media (min-width: 992px) {
  .footer-col {
    padding-left: 20px;
  }
}


.top-gradient-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #9C27B0 0%, #E91E63 35%, #FF9800 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.volunteer-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.roles-intro {
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 400;
}

.roles-list {
    padding-left: 20px;
    margin-bottom: 40px;
}

.roles-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 8px;
}

.roles-list li:last-child {
    margin-bottom: 0;
}

.roles-list li::marker {
    color: #000000;
    font-size: 16px;
}

.roles-list strong {
    font-weight: 700;
}

.btn-register {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn-register:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #222222;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Custom scrollbar to match image details */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.article-wrapper {
    max-width: 900px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 2.2rem;
    letter-spacing: 0.1px;
}

.article-content p:last-of-type {
    margin-bottom: 1.2rem;
}

.section-divider {
    border: none;
    border-top: 2px solid #000000;
    margin-top: 0;
    margin-bottom: 1.2rem;
    opacity: 1;
}

.more-sessions-heading {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.2px;
}

.related-sessions {
    margin-top: 1rem;
}

.session-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 15px;
}

.session-thumbnail {
    width: 145px;
    height: 82px;
    object-fit: cover;
    flex-shrink: 0;
}

.session-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    margin-top: -2px;
}
