@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img,
video{

    max-width:100%;

    height:auto;

}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter;

    background:
    radial-gradient(
        circle at 20% 20%,
        rgba(168,85,247,.15),
        transparent 30%
    ),

    radial-gradient(
        circle at 80% 50%,
        rgba(168,85,247,.1),
        transparent 35%
    ),

    #090014;

}
#hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:
        90px
        80px
        30px
        80px;
}
nav{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

    backdrop-filter:blur(20px);

    background:rgba(255,255,255,0.03);

    border-bottom:1px solid rgba(255,255,255,0.05);

    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:600;
    color:#fafafa;
}

.nav-links{
    display:flex;
    gap:40px;

    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    opacity:.8;
    transition:.3s;
}

.nav-links a:hover{
    opacity:1;
}
.hero-container{

    width:100%;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-left{

padding-right:60px;

}
.hero-left h1{
    color:#fafafa;

    font-size:95px;

    font-weight:800;

    line-height:.9;

    margin:15px 0;

    text-shadow:
    0 0 30px rgba(255,255,255,.05);

}

.hero-left h2{

    font-weight:300;

    color:#c084fc;

    margin-bottom:30px;

}

.description{

    color:
    rgba(255,255,255,.7);

    font-size:20px;

    line-height:1.6;

}

.image-card{

    padding:20px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 0 80px rgba(168,85,247,.25);

    width:460px;

    margin:auto;

    transform:rotate(-3deg);

    transition:.5s;

    animation:float 6s ease-in-out infinite;

}
@keyframes float{

0%{
transform:rotate(-3deg) translateY(0px);
}

50%{
transform:rotate(-3deg) translateY(-12px);
}

100%{
transform:rotate(-3deg) translateY(0px);
}

}
.image-card img{

    width:100%;

    border-radius:20px;

    display:block;

    transition:.5s;

}
.image-card:hover{

    transform:
    rotate(0deg)
    translateY(-10px);

}
.image-card:hover img{

    transform:scale(1.03);

}

button{

    color:#fafafa;

    background:transparent;

    border:1px solid #a855f7;

    padding:18px 42px;

    border-radius:50px;

    transition:.4s;

    margin-top:30px;

}

button:hover{

background:#a855f7;

transform:translateY(-3px);

box-shadow:
0 0 30px rgba(168,85,247,.4);

}
nav{

backdrop-filter:blur(30px);

background:rgba(10,10,20,.35);

border-bottom:1px solid rgba(255,255,255,.06);

}
body::before{

    content:"";

    position:fixed;

    width:700px;
    height:700px;

    background:
    radial-gradient(
        circle,
        rgba(168,85,247,.22),
        transparent 70%
    );

    top:-250px;
    right:-200px;

    filter:blur(120px);

    pointer-events:none;

}

body::after{

    content:"";

    position:fixed;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        circle,
        rgba(168,85,247,.12),
        transparent 70%
    );

    bottom:-250px;
    left:-150px;

    filter:blur(120px);

    pointer-events:none;

}
#stars{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-2;
}
#about{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:120px 8%;

}

.about-card{

    width:100%;

    max-width:1000px;

    padding:70px;

    border-radius:35px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

}
.about-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 50px rgba(168,85,247,.15);

}
.section-tag{

    color:#c084fc;

    font-size:18px;

    margin-bottom:20px;

}

.about-card h2{

    font-size:60px;

    color:#fafafa;

    margin-bottom:35px;

    line-height:1.1;

}

.about-text{

    color:rgba(255,255,255,.7);

    font-size:22px;

    line-height:1.8;

    max-width:700px;

}

#presence{

    min-height:100vh;

    padding:120px 8%;

}

.social-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(250px,1fr)
    );

    gap:25px;

}

.social-card{

    position:relative;

    overflow:hidden;

    text-decoration:none;

    color:white;

    padding:35px;

    border-radius:25px;

    background:
    rgba(255,255,255,.04);

    backdrop-filter:
    blur(20px);

    border:
    1px solid
    rgba(255,255,255,.05);

    transition:.4s;

}

.social-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.social-card p{

    color:
    rgba(255,255,255,.6);

}

.social-card:hover{

    box-shadow:
    0 0 40px
    rgba(168,85,247,.2);

    border:
    1px solid
    rgba(168,85,247,.3);

    transform:
    translateY(-8px)
    scale(1.02);

}
.social-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        transparent,
        rgba(168,85,247,.08),
        transparent
    );

    transform:
    translateX(-100%);

    transition:.6s;

}

.social-card:hover::before{

    transform:
    translateX(100%);

}

#gallery{

    padding:100px 0;
    padding-top:120px;

    overflow:hidden;

}
#gallery .section-tag{

    padding-left:8%;

    color:#c084fc;

    font-size:20px;

    margin-bottom:35px;

}
.gallery-header{

    text-align:center;

    margin-bottom:60px;

}

.gallery-header p{

    color:#c084fc;

    font-size:18px;

    margin-bottom:15px;

}

.gallery-header h2{

    font-size:72px;

    color:#fafafa;

    margin-bottom:20px;

}

.gallery-header span{

    color:rgba(255,255,255,.65);

    font-size:22px;

}
#gallery h2{

    font-size:60px;

    margin-left:8%;

    margin-bottom:60px;

}

.gallery-slider{

    overflow:hidden;

    width:100%;

}

.gallery-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:
    scrollGallery
    35s
    linear
    infinite;

}

.gallery-item{

    position:relative;

    width:200px;

    height:320px;

    flex-shrink:0;

    border-radius:25px;

    overflow:hidden;

    border-radius:30px;

    background:
    rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:1px solid
    rgba(255,255,255,.06);

}
.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        to top,
        rgba(0,0,0,.3),
        transparent 40%
    );

}
.gallery-item img,
.gallery-item video{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img,
.gallery-item:hover video{

    transform:scale(1.05);
    transition:.4s;

}

@keyframes scrollGallery{

    from{

        transform:
        translateX(0);

    }

    to{

        transform:
        translateX(-50%);

    }

}

footer{

    padding:100px 20px;

    text-align:center;

}

footer h3{

    color:#fafafa;

    margin-bottom:20px;

}

footer p{

    color:
    rgba(255,255,255,.5);

}
/* MOBILE */

@media screen and (max-width:768px){

    nav{

        padding:20px;

    }

    .nav-links{

        display:none;

    }

    .logo{

        font-size:22px;

    }

    #hero{

        padding:90px 20px 40px 20px;

    }

    .hero-container{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;

    }

    .hero-left{

        order:1;

        padding-right:0;

    }

    .hero-right{

        order:2;

    }

    .hero-left h1{

        font-size:58px;

        line-height:.9;

    }

    .hero-left h2{

        font-size:24px;

    }

    .description{

        font-size:17px;

        margin:auto;

    }

    .image-card{

        width:75%;
        max-width:260px;

        margin-top:30px;

    }

    #about{

        padding:80px 20px;

    }

    .about-card{

        padding:30px;

    }

    .about-card h2{

        font-size:32px;

    }

    .about-text{

        font-size:16px;

        line-height:1.7;

    }

    #presence{

        padding:80px 20px;

    }

    .social-grid{

        grid-template-columns:1fr 1fr;

        gap:15px;

    }

    .social-card{

        padding:20px;

        aspect-ratio:1/1;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        text-align:center;

    }

    .social-card h3{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:15px;

        font-size:20px;

        margin-bottom:10px;

    }

    .social-card h3 i{

        font-size:40px;

        color:#fafafa;

        text-shadow:
        0 0 20px rgba(168,85,247,.5);

    }

    .social-card p{

        font-size:14px;

        margin-top:12px;

    }



    #gallery{

        padding:80px 0;

    }

    #gallery .section-tag{

        padding-left:20px;
        padding-top:20px;

    }

    #gallery h2{

        margin-left:20px;

        font-size:38px;

    }

    .gallery-item{

        width:130px;
        height:220px;

    }

    .gallery-track{

        gap:18px;

        animation:
        scrollGallery
        22s
        linear
        infinite;

    }

    footer{

        padding:70px 20px;

    }

    body{

        overflow-x:hidden;

    }

}
