/**
 * Symposium 2026 – custom fonts and shared section styles
 * Fonts: Sacramento (presented), Khuja (title), Hertica (subtitle), Abhaya Libre (body)
 */

@font-face {
    font-family: "Sacramento";
    src: url("../assets/fonts/Sacramento.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Khuja Smooth Uppercase";
    src: url("../assets/fonts/KhujaSmoothUppercase.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hertica Smooth";
    src: url("../assets/fonts/HerticaSmooth.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Abhaya Libre";
    src: url("../assets/fonts/AbhayaLibre.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Font utility classes */
.symposium-font-presented {
    font-family: "Sacramento", cursive;
}
.symposium-font-title {
    font-family: "Khuja Smooth Uppercase", sans-serif;
}
.symposium-font-subtitle {
    font-family: "Hertica Smooth", sans-serif;
}
.symposium-font-body {
    font-family: "Abhaya Libre", serif;
}

/* Section spacing */
.symposium-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 768px) {
    .symposium-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Headshot cards (panelists + performers) */
.symposium-headshot-card {
    display: block;
    text-align: center;
    transition: opacity 0.2s ease;
}
.symposium-headshot-card:hover {
    opacity: 0.9;
}
.symposium-headshot-card img {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1.8rem;
}
.symposium-headshot-card .name {
    margin-top: 0.75rem;
}
.symposium-headshot-card .role {
    margin-top: 0.25rem;
}

/* Logo links (marketplace + sponsors) */
.symposium-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.2s ease;
}
.symposium-logo-link:hover {
    opacity: 0.85;
}
.symposium-logo-link img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
