/* ==================================================
   SHADOW WOLVES MULTIGAMING
   LEGAL.CSS
   (Impressum & Datenschutz)
================================================== */


/* ==================================================
   LEGAL HERO
================================================== */

.legal-hero{

    position:relative;

    min-height:560px;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.legal-background{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(5,10,18,.82) 0%,
            rgba(5,10,18,.75) 35%,
            rgba(5,10,18,.55) 60%,
            rgba(5,10,18,.35) 100%
        ),
        url("../images/legal/legal-banner.png")
        center center / cover no-repeat;

    z-index:1;

}

.legal-content{

    position:relative;

    z-index:5;

    max-width:760px;

    padding-top:80px;

}

.legal-content h1{

    font-family:"Orbitron",sans-serif;

    font-size:clamp(3.2rem,6vw,5rem);

    color:#ffffff;

    margin:20px 0;

    line-height:1;

}

.legal-content p{

    max-width:650px;

    color:var(--text);

    font-size:1.1rem;

    line-height:1.8;

}

.legal-content .hero-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(0,174,239,.12);

    border:1px solid rgba(0,174,239,.30);

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.8rem;

    font-weight:600;

}


/* ==================================================
   HERO DECORATION
================================================== */

.legal-hero::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:180px;

    background:

        linear-gradient(

            transparent,

            rgba(5,10,18,.45),

            var(--background)

        );

    z-index:2;

}


/* ==================================================
   SECTION SPACING
================================================== */

.legal-section{

    position:relative;

    padding:110px 0;

    z-index:5;

}
/* ==================================================
   LEGAL CARD
================================================== */

.legal-card{

    position:relative;

    background:rgba(18,28,44,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:60px;

    overflow:hidden;

    box-shadow:

        0 20px 60px rgba(0,0,0,.35);

}

.legal-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:

        linear-gradient(

            90deg,

            var(--primary),

            transparent

        );

}


/* ==================================================
   TYPOGRAPHY
================================================== */

.legal-card h2{

    font-family:"Orbitron",sans-serif;

    color:var(--primary);

    font-size:2rem;

    margin:55px 0 22px;

}

.legal-card h2:first-child{

    margin-top:0;

}

.legal-card h3{

    color:#ffffff;

    font-size:1.25rem;

    margin-bottom:18px;

}

.legal-card p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:24px;

}

.legal-card strong{

    color:#ffffff;

    font-weight:600;

}

.legal-card a{

    color:var(--primary);

    transition:.3s ease;

}

.legal-card a:hover{

    color:#67D7FF;

}


/* ==================================================
   LISTS
================================================== */

.legal-card ul{

    margin:25px 0 35px 25px;

}

.legal-card li{

    margin-bottom:12px;

    color:var(--text-light);

    line-height:1.8;

}

.legal-card li::marker{

    color:var(--primary);

}


/* ==================================================
   LEGAL GRID
================================================== */

.legal-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin:40px 0;

}

.legal-box{

    padding:32px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:all .35s ease;

}

.legal-box:hover{

    transform:translateY(-6px);

    border-color:rgba(0,174,239,.45);

    box-shadow:

        0 18px 40px rgba(0,174,239,.16);

}

.legal-box h3{

    margin-bottom:16px;

    color:#ffffff;

}

.legal-box p{

    margin:0;

}


/* ==================================================
   DIVIDER
================================================== */

.legal-divider{

    width:100%;

    height:1px;

    margin:55px 0;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.15),

            transparent

        );

}
/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width:992px){

    .legal-hero{

        min-height:380px;

    }

    .legal-content{

        max-width:100%;

        padding-top:60px;

    }

    .legal-card{

        padding:45px;

    }

    .legal-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .legal-hero{

        min-height:340px;

        text-align:center;

    }

    .legal-content{

        margin:auto;

        padding-top:40px;

    }

    .legal-content p{

        margin:auto;

    }

    .legal-card{

        padding:35px 30px;

    }

    .legal-card h2{

        font-size:1.7rem;

    }

    .legal-card h3{

        font-size:1.15rem;

    }

}

@media (max-width:480px){

    .legal-hero{

        min-height:300px;

    }

    .legal-content h1{

        font-size:2.4rem;

    }

    .legal-content p{

        font-size:1rem;

    }

    .legal-card{

        padding:25px 20px;

        border-radius:18px;

    }

    .legal-card h2{

        font-size:1.45rem;

        margin:40px 0 18px;

    }

    .legal-card h3{

        font-size:1.05rem;

    }

    .legal-card p{

        font-size:.95rem;

        line-height:1.8;

    }

    .legal-card ul{

        padding-left:18px;

    }

    .legal-box{

        padding:22px;

    }

}

/* ==================================================
   SMALL IMPROVEMENTS
================================================== */

.legal-card{

    transition:

        transform .35s ease,

        border-color .35s ease,

        box-shadow .35s ease;

}

.legal-card:hover{

    border-color:rgba(0,174,239,.30);

    box-shadow:

        0 25px 70px rgba(0,0,0,.45);

}

.legal-box{

    transition:

        transform .35s ease,

        border-color .35s ease,

        box-shadow .35s ease;

}

.legal-box:hover{

    transform:translateY(-6px);

}

/* ==================================================
   SCROLL OFFSET
================================================== */

.legal-section{

    scroll-margin-top:120px;

}

/* ==================================================
   END OF FILE
================================================== */