body {
    background-color: #0a0a0a;
    color: #f8f9fa;

    --highlight: #831eff;
    --link-col: rgb(239, 123, 125);
}

a {
    color: var(--link-col);
    text-decoration: none;
}

.half-page-section {
    /*min-height: 50vh;*/
    display: flex;
    align-items: center;
}

.half-page-section h2 {
    font-size: 2.5rem;
}

.half-page-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.card {
    background-color: black;
    color: #f8f9fa;
    border: 1px solid #2c2f33;
}

header,
footer {
    background-color: black;
    color: #f8f9fa;
}

.hero h1 {
    font-weight: bold;
    font-size: 50px;
}

.header-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.header-logo {
    height: 5em;
    max-width: 100%;
    margin: 1em;
    max-height: 5em;
}

footer {
    border-top: 1px solid #333;
}

.workshop-header {
    font-weight: 600;
}

.workshop-title {
    color: var(--highlight);
}

.workshop-description {
    color: white;
}

.workshop-bio {
    color: #888;
}

.workshop-image {
    width: 10em;
}

.workshop-right,
.flex-grow {
    flex-grow: 1;
}

.section-heading {
    padding-top: 2em;
    padding-bottom: 0.5em;
    text-align: center;
}

/* image gallery style */
.image-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    justify-content: center;
    padding: 4px;
}

.box {
    flex-basis: 25%;
    width: 100%;
    padding: 10px;
    margin: 2px;
}

.img-gallery {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    border-radius: var(--bs-border-radius);

    &:hover {
        transform: scale(1.15);
        border-radius: 0% !important;
    }
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 0;
}

.hero::before {
    content: "";
    background: url("img/bg2_progressive.jpg") no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    position: absolute;
}

@media (max-width: 1000px) {
    .hero::before {
        filter: brightness(0.5);
    }

    .header-logo {
        width: 100%;
        height: auto;
        max-height: 3em;
    }

    .hero-content {
        margin-bottom: 0 !important;
    }
}

/* Optional: dark overlay for better contrast */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 7em;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

.svg-shadow {
    -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.9));
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.9));
    /* Similar syntax to box-shadow */
}

.sponsor-logo {
    max-height: 8rem;
}

.sponsor-logo-container {
    text-align: center;
    padding: 2rem;
}

.align-text-center {
    text-align: center;
}
