/*=========================================================
  RYVOX PREMIUM LINK PAGE
  style.css - DEEL 1
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#050505;

    color:#ffffff;

    overflow-x:hidden;

    min-height:100vh;

    position:relative;

}

/*=====================================
BACKGROUND
=====================================*/

.background-glow{

    position:fixed;

    inset:0;

    z-index:-3;

    background:

    radial-gradient(circle at top,
    rgba(201,157,59,.20) 0%,
    rgba(0,0,0,0) 55%),

    radial-gradient(circle at bottom,
    rgba(201,157,59,.08) 0%,
    rgba(0,0,0,0) 60%),

    #050505;

}

/*=====================================
ANIMATED GOLD LINES
=====================================*/

.background-lines{

    position:fixed;

    inset:0;

    z-index:-2;

    overflow:hidden;

}

.background-lines::before{

    content:"";

    position:absolute;

    width:180%;

    height:180%;

    left:-40%;

    top:-30%;

    background:

    repeating-radial-gradient(

        circle,

        rgba(201,157,59,.07) 0px,

        rgba(201,157,59,.07) 2px,

        transparent 2px,

        transparent 95px

    );

    transform:rotate(-12deg);

    animation:rotateLines 40s linear infinite;

    opacity:.10;

}

.background-lines::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        130deg,

        transparent 0%,

        rgba(201,157,59,.05) 45%,

        transparent 65%

    );

    animation:goldMove 12s ease-in-out infinite;

}

/*=====================================
MAIN CONTAINER
=====================================*/

.container{

    width:min(94%,520px);

    margin:auto;

    padding-top:60px;

    padding-bottom:60px;

}

/*=====================================
HERO
=====================================*/

.hero{

    text-align:center;

    animation:fadeUp .8s ease;

}

.logo{

    width:270px;

    max-width:80%;

    display:block;

    margin:auto;

    margin-bottom:28px;

    filter:

    drop-shadow(0 0 20px rgba(201,157,59,.18));

}

h1{

    font-size:42px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:10px;

}

.subtitle{

    color:#C99D3B;

    font-size:20px;

    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}

/*=====================================
PRODUCT
=====================================*/

.product{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:-10px;

    margin-bottom:25px;

}

.pump-image{

    width:125%;

    max-width:none;

    margin-left:-35px;

    margin-top:-10px;	

    animation:floatPump 5s ease-in-out infinite;

    filter:

    drop-shadow(0 60px 70px rgba(0,0,0,.75))

    drop-shadow(0 0 45px rgba(201,157,59,.20));

}

/*=====================================
LINK SECTION
=====================================*/

.links{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:55px;

}
/*=====================================
LINK BUTTONS
style.css - DEEL 2
=====================================*/

.link-card{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-decoration:none;

    color:#ffffff;

    padding:18px 22px;

    border-radius:18px;

    border:1px solid rgba(201,157,59,.35);

    background:

    linear-gradient(

        180deg,

        rgba(30,30,30,.92),

        rgba(10,10,10,.98)

    );

    backdrop-filter:blur(12px);

    overflow:hidden;

    transition:

        transform .35s,

        border-color .35s,

        box-shadow .35s,

        background .35s;

}

/* gouden sweep */

.link-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-150%;

    width:60%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,215,120,.18),

        transparent

    );

    transition:.8s;

}

.link-card:hover::before{

    left:170%;

}

.link-card:hover{

    transform:translateY(-4px);

    border-color:#D7AF55;

    box-shadow:

        0 0 0 1px rgba(215,175,85,.15),

        0 12px 30px rgba(0,0,0,.45),

        0 0 28px rgba(201,157,59,.25);

}

.link-card:active{

    transform:scale(.985);

}

.left{

    display:flex;

    align-items:center;

    gap:12px;

    z-index:2;

}

.icon{

    width:46px;

    height:46px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    color:#D4AA4A;

    border:1px solid rgba(212,170,74,.25);

    background:

    linear-gradient(

        180deg,

        rgba(212,170,74,.10),

        rgba(212,170,74,.03)

    );

    transition:.35s;

}

.text{

    font-size:20px;

    font-weight:600;

    letter-spacing:.3px;

}

.arrow{

    font-size:28px;

    color:#D4AA4A;

    transition:.35s;

    z-index:2;

}

.link-card:hover .arrow{

    transform:translateX(8px);

}

.link-card:hover .icon{

    background:

    linear-gradient(

        180deg,

        rgba(212,170,74,.20),

        rgba(212,170,74,.05)

    );

    box-shadow:

        0 0 18px rgba(212,170,74,.20);

}

/*=====================================
FEATURES
=====================================*/

.features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:25px;

    margin-bottom:55px;

}

.feature{

    text-align:center;

    padding:18px 10px;

    border-top:1px solid rgba(201,157,59,.18);

}

.feature-title{

    display:block;

    color:#C99D3B;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:10px;

}

.feature-value{

    display:block;

    font-size:19px;

    font-weight:700;

}

/*=====================================
FOOTER
=====================================*/

footer{

    text-align:center;

    padding-top:18px;

    border-top:1px solid rgba(201,157,59,.15);

}

.mail{

    display:inline-block;

    color:#D4AA4A;

    text-decoration:none;

    font-size:18px;

    margin-bottom:14px;

    transition:.3s;

}

.mail:hover{

    color:#FFD77A;

    text-shadow:

        0 0 12px rgba(212,170,74,.35);

}

footer p{

    color:#888;

    font-size:14px;

}
/*=====================================
ANIMATIONS
style.css - DEEL 3
=====================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes floatPump{

    0%{

        transform:
        translateY(0px)
        rotate(0deg);

    }

    25%{

        transform:
        translateY(-6px)
        rotate(.4deg);

    }

    50%{

        transform:
        translateY(-12px)
        rotate(0deg);

    }

    75%{

        transform:
        translateY(-6px)
        rotate(-.4deg);

    }

    100%{

        transform:
        translateY(0px)
        rotate(0deg);

    }

}

@keyframes rotateLines{

    from{

        transform:
        rotate(-12deg)
        scale(1);

    }

    to{

        transform:
        rotate(348deg)
        scale(1);

    }

}

@keyframes goldMove{

    0%{

        transform:
        translateX(-25%);

        opacity:.15;

    }

    50%{

        transform:
        translateX(15%);

        opacity:.28;

    }

    100%{

        transform:
        translateX(-25%);

        opacity:.15;

    }

}

/*=====================================
PAGE LOAD
=====================================*/

.logo{

    animation:

    fadeUp .8s ease both;

}

h1{

    animation:

    fadeUp .9s ease .10s both;

}

.subtitle{

    animation:

    fadeUp .9s ease .20s both;

}

.product{

    animation:

    fadeUp 1s ease .30s both;

}

.link-card:nth-child(1){

    animation:

    fadeUp .7s ease .45s both;

}

.link-card:nth-child(2){

    animation:

    fadeUp .7s ease .55s both;

}

.link-card:nth-child(3){

    animation:

    fadeUp .7s ease .65s both;

}

.link-card:nth-child(4){

    animation:

    fadeUp .7s ease .75s both;

}

.link-card:nth-child(5){

    animation:

    fadeUp .7s ease .85s both;

}

.features{

    animation:

    fadeUp .9s ease 1s both;

}

footer{

    animation:

    fadeUp .9s ease 1.1s both;

}

/*=====================================
SCROLLBAR
=====================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#090909;

}

::-webkit-scrollbar-thumb{

    background:#4b3a18;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#c99d3b;

}

/*=====================================
TEXT SELECTION
=====================================*/

::selection{

    background:#c99d3b;

    color:#000;

}

/*=====================================
PREMIUM GLOW
=====================================*/

.logo:hover{

    filter:

    drop-shadow(0 0 18px rgba(201,157,59,.40))

    drop-shadow(0 0 55px rgba(201,157,59,.18));

    transition:.4s;

}

.pump-image:hover{

    transform:

    scale(1.02);

    transition:.4s;

}

/*=====================================
SMALL GOLD PARTICLES
=====================================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    background-image:

    radial-gradient(circle,
    rgba(212,170,74,.35) 1px,
    transparent 1px);

    background-size:

    180px 180px;

    opacity:.06;

    animation:

    goldMove 20s linear infinite;

}
/*=====================================
RESPONSIVE
style.css - DEEL 4 (LAATSTE)
=====================================*/

@media (max-width:768px){

    .container{

        width:min(94%,650px);

        padding-top:40px;

        padding-bottom:50px;

    }

    .logo{

        width:220px;

    }

    h1{

        font-size:42px;

        letter-spacing:-1.5px;

    }

    .subtitle{

        font-size:16px;

        margin-bottom:30px;

    }

    .pump-image{

        max-width:320px;

    }

    .link-card{

        width:100%;

        padding:18px 20px;

        border-radius:18px;

    }

    .icon{

        width:42px;

        height:42px;

        font-size:20px;

    }

    .text{

        font-size:18px;

    }

    .arrow{

        font-size:24px;

    }

}

@media (max-width:480px){

    body{

        font-size:15px;

    }

    .container{

        width:92%;

    }

    .logo{

        width:180px;

        margin-bottom:24px;

    }

    h1{

        font-size:34px;

        line-height:1.1;

    }

    .subtitle{

        font-size:14px;

        letter-spacing:1.5px;

        margin-bottom:24px;

    }

    .pump-image{

        max-width:260px;

    }

    .links{

        gap:14px;

    }

    .link-card{

        padding:17px;

    }

    .left{

        gap:14px;

    }

    .icon{

        width:40px;

        height:40px;

        border-radius:12px;

    }

    .text{

        font-size:17px;

    }

    .features{

        grid-template-columns:1fr;

        gap:12px;

        margin-bottom:40px;

    }

    .feature{

        padding:14px;

    }

    .mail{

        font-size:16px;

    }

}

@media (min-width:1200px){

    .container{

        max-width:560px;

    }

    .pump-image{

        max-width:420px;

    }

}

/*=====================================
REDUCE MOTION
=====================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}
.hero,
.links,
.features,
footer{

    opacity:0;

    transform:translateY(40px);

}

.visible{

    opacity:1;

    transform:translateY(0);

    transition:

    opacity .8s ease,

    transform .8s ease;

}
.icon img{

    width:22px;

    height:22px;

    object-fit:contain;

    filter:

    brightness(0)

    saturate(100%)

    invert(74%)

    sepia(52%)

    saturate(503%)

    hue-rotate(7deg)

    brightness(95%)

    contrast(92%);

}
