/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 :root{
    --beeld-300: #FFD3AE;
    --beeld-700: #EB622D;
    --dienst-300: #FFD3AE;
    --dienst-700: #EB622D;
    --socials-300: #ABD3ED;
    --socials-700: #006FBB;
    --websites-300: #B9DEDB;
    --websites-700: #008F8B;
    --events-300: #FFD5D1;
    --events-700: #EA3757;
    --branding-300: #BECCF3;
    --branding-700: #4F57A3;

    --grey-800: #222222;
}

/* Team Fader Shortcode Styles */
.team-fader-container {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

.team-fader-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-template-rows: 1fr;
    gap: 2rem;
    align-items: center;
}

.team-fader-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.team-fader-functie {
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--grey-800);
    font-weight: 900;
}

.team-fader-naam {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.team-fader-content-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--grey-800);
    margin: 0;
    font-weight: 300;
}

.team-fader-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
}

.team-fader-button {
    line-height: 1.8em;
    border-radius: 2px;
    padding: 10px 20px;
}

.team-fader-button-primary {
    font-weight: 900;
    background-color: var(--beeld-700);
    color: #FFFFFF;
}

.team-fader-button-secondary {
    font-weight: 500;
    background-color: #FFFFFF;
    color: var(--grey-800);
}

.team-fader-image-wrapper {
    height: 100%;
    width: 100%;
    border-radius: 4px;
}

.team-fader-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120%;
}

@media only screen and (max-width: 1300px) {
    .team-fader-image {
        height: 110%;
    }
}

@media only screen and (max-width: 1100px) {
    .team-fader-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }
    
    .team-fader-content {
        padding: 1.5rem;
    }
    
    .team-fader-image-wrapper {
        height: 700px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .team-fader-image {
        position: relative;
        height: 100%;
        width: 70%;
        object-fit: cover;
        object-position: center;
        border-radius: 4px;
    }
    
    .team-fader-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .team-fader-button {
        text-align: center;
    }
}

@media only screen and (max-width: 980px) {
    .team-fader-image {
        width: 70%;
        border-radius: 0px;
    }

    .team-fader-container {
        border-radius: 0px;
    }
}

@media only screen and (max-width: 750px) {
    .team-fader-image-wrapper {
        height: 800px;
    }

    .team-fader-image {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .team-fader-content {
        padding: 1rem;
    }
    
    .team-fader-image-wrapper {
        height: 500px;
    }
}

.team-fader-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.team-fader-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.team-fader-dot:hover {
    opacity: 0.8;
}

/* Form icons */
input#nf-field-68, input#nf-field-69, input#nf-field-70, select#nf-field-71 {
    padding-left: 50px;
    background-repeat: no-repeat;
    background-position: 16px 47%;
    border: 1px solid #EEEEEE;
    background-color: #EEEEEE;
}

input#nf-field-68 {
    background-image: url("/wp-content/uploads/2025/09/form-naam-icon.png");
}

input#nf-field-69 {
    background-image: url("/wp-content/uploads/2025/09/form-mail-icon.png");
}

input#nf-field-70 {
    background-image: url("/wp-content/uploads/2025/09/form-telefoon-icon.png");
}

select#nf-field-71 {
    background-image: url("/wp-content/uploads/2025/09/form-bier-icon.png");
}