/*=====================================================
HERO SECTION
======================================================*/

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top right,#7d001f 0%,transparent 35%),
        radial-gradient(circle at bottom left,#4b0013 0%,transparent 40%),
        linear-gradient(180deg,#070707 0%,#111111 55%,#33000f 100%);
    padding:140px 0 120px;
}

/* Decorative Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
    background-size:80px 80px;
    opacity:.5;
    pointer-events:none;
}

/* Container */

.hero-container{
    width:min(1320px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    position:relative;
    z-index:2;
}

/*=========================
LEFT CONTENT
==========================*/

.hero-top{
    max-width:620px;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    padding:10px 18px;
    border-radius:50px;
    color:#ffffff;
    font-size:.85rem;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.hero-top h1{
    font-family:"Sora",sans-serif;
    font-size:5.6rem;
    line-height:.95;
    font-weight:800;
    color:#fff;
    margin-bottom:30px;
}

.hero-top h1 span{
    display:inline-block;
    color:#111;
    background:#f4c430;
    padding:6px 20px;
    border-radius:8px;
    transform:rotate(-2deg);
}

.hero-top p{
    color:#cfcfcf;
    font-size:1.15rem;
    line-height:1.9;
    max-width:520px;
    margin-bottom:45px;
}

/*=========================
BUTTONS
==========================*/

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:17px 34px;
    border-radius:60px;
    font-weight:700;
    transition:.35s;
    text-decoration:none;
}

.btn-primary{
    background:#ff004f;
    color:#fff;
    box-shadow:0 15px 35px rgba(255,0,90,.25);
}

.btn-primary:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(255,0,90,.45);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(10px);
}

.btn-secondary:hover{
    background:#ffffff;
    color:#111;
}

/*=========================
RIGHT IMAGE
==========================*/

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.hero-image img{
    width:100%;
    max-width:640px;
    position:relative;
    z-index:2;
    animation:floatHero 6s ease-in-out infinite;
}

/* Glow */

.hero-glow{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(255,0,90,.55),
        transparent 70%);
    filter:blur(70px);
    z-index:1;
}

/* Floating Animation */

@keyframes floatHero{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0);
    }

}

/*=========================
SCROLL INDICATOR (Optional)
==========================*/

.hero::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:180px;

    background:linear-gradient(to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,.55));

}

/*=========================
TABLET
==========================*/

@media(max-width:992px){

.hero{

padding:120px 0 90px;

}

.hero-container{

grid-template-columns:1fr;

text-align:center;

gap:60px;

}

.hero-top{

margin:auto;

}

.hero-top h1{

font-size:4.2rem;

}

.hero-top p{

margin-left:auto;

margin-right:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-image img{

max-width:500px;

}

}

/*=========================
MOBILE
==========================*/

@media(max-width:768px){

.hero{

padding:100px 0 70px;

min-height:auto;

}

.hero-tag{

font-size:.72rem;

padding:8px 16px;

}

.hero-top h1{

font-size:3rem;

line-height:1.05;

}

.hero-top h1 span{

padding:4px 14px;

}

.hero-top p{

font-size:1rem;

line-height:1.8;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-secondary{

width:100%;

max-width:280px;

}

.hero-image img{

max-width:360px;

}

.hero-glow{

width:300px;

height:300px;

}

}