/*
====================================================

Shadow-Wolves.FM
team.css
Version 2.0

====================================================
*/


/* ==========================================
   Hero
========================================== */

.hero{

    position:relative;

    display:flex;

    align-items:center;

    min-height:70vh;

    padding-top:var(--header-height);

    background:
        linear-gradient(
            rgba(11,16,22,.75),
            rgba(11,16,22,.92)
        ),
        url("../images/hero.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(

            circle,

            transparent 10%,

            rgba(11,16,22,.18) 55%,

            rgba(11,16,22,.70) 100%

        );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:760px;

}

.hero-eyebrow{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--primary);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:.2rem;

    text-transform:uppercase;

}

.hero h1{

    margin-bottom:1rem;

    line-height:.95;

    text-transform:uppercase;

}

.hero h1 span{

    display:block;

    color:var(--primary);

}

.hero-lead{

    margin-bottom:1rem;

    color:#ffffff;

    font-size:1.35rem;

    font-weight:500;

}

.hero p{

    max-width:700px;

    margin-bottom:2rem;

    color:var(--text-light);

    font-size:1.1rem;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:1rem;

}
/* ==========================================
   Team
========================================== */

#team{

    background:var(--background);

}


/* ==========================================
   Team Grid
========================================== */

.team-grid{

    display:flex;

    flex-direction:column;

    gap:3rem;

}


/* ==========================================
   Team Card
========================================== */

.team-card{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:3rem;

    align-items:center;

    padding:2.5rem;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    transition:var(--transition);

}

.team-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    background:var(--surface-hover);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}


/* ==========================================
   Reverse Layout
========================================== */

.team-card.reverse{

    grid-template-columns:1fr 380px;

}

.team-card.reverse .team-image{

    order:2;

}

.team-card.reverse .team-content{

    order:1;

}


/* ==========================================
   Team Image
========================================== */

.team-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.team-image img{

    width:100%;

    border-radius:18px;

    border:1px solid var(--border);

    transition:var(--transition);

}

.team-card:hover .team-image img{

    transform:scale(1.02);

}


/* ==========================================
   Team Content
========================================== */

.team-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.team-badge{

    display:inline-block;

    width:max-content;

    margin-bottom:1rem;

    padding:.45rem 1rem;

    border-radius:999px;

    background:rgba(61,184,255,.10);

    border:1px solid rgba(61,184,255,.20);

    color:var(--primary);

    font-size:.85rem;

    font-weight:600;

    letter-spacing:.05rem;

}

.team-content h3{

    margin-bottom:1rem;

    font-size:2rem;

    color:#ffffff;

}

.team-content p{

    color:var(--text-light);

    line-height:1.9;

}
/* ==========================================
   Show Preview
========================================== */

.show-preview{

    margin-top:2rem;

}

.show-preview img{

    width:100%;

    max-width:420px;

    border-radius:16px;

    border:1px solid var(--border);

    transition:var(--transition);

}

.show-preview img:hover{

    transform:scale(1.02);

    border-color:var(--primary);

    box-shadow:0 15px 35px rgba(61,184,255,.20);

}


/* ==========================================
   Join Team
========================================== */

.join-team{

    background:var(--background-light);

}

.join-team .card{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.join-team h2{

    margin-bottom:1rem;

}

.join-team p{

    max-width:700px;

    margin:0 auto 1rem;

    color:var(--text-light);

}

.join-team .hero-buttons{

    justify-content:center;

    margin-top:2rem;

}


/* ==========================================
   Hover Animation
========================================== */

.team-card{

    overflow:hidden;

    position:relative;

}

.team-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:var(--transition);

}

.team-card:hover::before{

    transform:scaleX(1);

}
/* ==========================================
   Responsive Design
========================================== */

@media (max-width:992px){

    .team-card,

    .team-card.reverse{

        grid-template-columns:1fr;

        text-align:center;

        gap:2rem;

    }

    .team-card.reverse .team-image,

    .team-card.reverse .team-content{

        order:unset;

    }

    .team-image{

        max-width:420px;

        margin:0 auto;

    }

    .team-content{

        align-items:center;

    }

    .show-preview img{

        margin:0 auto;

    }

}


@media (max-width:768px){

    .hero{

        min-height:60vh;

        text-align:center;

    }

    .hero-content{

        max-width:100%;

        margin:0 auto;

    }

    .hero-buttons{

        justify-content:center;

        flex-direction:column;

        align-items:center;

    }

    .team-card{

        padding:2rem;

    }

    .team-content h3{

        font-size:1.7rem;

    }

    .team-badge{

        margin-left:auto;

        margin-right:auto;

    }

}


@media (max-width:480px){

    .team-card{

        padding:1.5rem;

    }

    .team-content h3{

        font-size:1.5rem;

    }

    .team-content p{

        font-size:1rem;

    }

    .show-preview img{

        max-width:100%;

    }

    .join-team .card{

        padding:2rem 1.5rem;

    }

}
/* ==========================================
   Animationen
========================================== */

.team-card{

    opacity:0;

    transform:translateY(30px);

    animation:fadeUp .7s ease forwards;

}

.team-card:nth-child(1){

    animation-delay:.1s;

}

.team-card:nth-child(2){

    animation-delay:.25s;

}

.team-card:nth-child(3){

    animation-delay:.4s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ==========================================
   Utility
========================================== */

.team-content strong{

    color:#ffffff;

}

.team-content a{

    color:var(--primary);

    transition:var(--transition);

}

.team-content a:hover{

    color:#ffffff;

}

.team-image img{

    user-select:none;

    -webkit-user-drag:none;

}


/* ==========================================
   Print
========================================== */

@media print{

    .header,

    .footer,

    .hero-buttons{

        display:none;

    }

    .team-card{

        box-shadow:none;

        border:1px solid #999;

        break-inside:avoid;

    }

}


/* ==========================================
   End of File

   Shadow-Wolves.FM
   team.css
   Version 2.0

========================================== */