/* css/components.css */

/* Buttons */
.hero-cta {
    margin-top: -15rem;
}

.hero-cta img {
    max-width: 250px;
    transition: transform 0.3s ease;
}

.hero-cta:hover img {
    transform: scale(1.05);
}

/* Fixed Social Sidebar */
.fixed-social-sidebar {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1001;
}

.fixed-social-sidebar a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.fixed-social-sidebar a:hover img {
    transform: scale(1.1);
}

/* Judge Mosaic */
.judge-mosaic {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.judge-card {
    text-align: center;
    color: var(--text-light);
}

.judge-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    transition: transform 0.3s ease;
}

.judge-card:hover img {
    transform: scale(1.05);
}

.judge-card h4 {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

/* Partner Grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.partner-grid img {
    max-width: 150px;
    justify-self: center;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-grid img:hover {
    filter: grayscale(0%);
}