﻿.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 8%;
    background: radial-gradient(circle at right,#70001b55 0%,transparent 45%), radial-gradient(circle at left,#38000d33 0%,transparent 40%), #050505;
    overflow: hidden;
}

.hero-left {
    z-index: 5;
}

.hero-brand {
    width: 560px;
    max-width: 100%;
    margin-bottom: 40px;
}



.hero-text {
    max-width: 480px;
    color: #d4d4d4;
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 45px;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 20px;
    border-radius: 12px;
}

.hero-right {
    position: relative;
    height: 750px;
}

.shoe {
    position: absolute;
    transition: .4s;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,.45));
}

    .shoe:hover {
        transform: scale(1.06);
    }

.shoe1 {
    width: 10000px;
    top: 150px;
    right: 80px;
    transform: rotate(-5deg);
}

.shoe2 {
    width: 330px;
    left: 0;
    top: 180px;
    transform: rotate(5deg);
}

.shoe3 {
    width: 300px;
   right: -140px;
    bottom: 200px;
    transform: rotate(-12deg);
}

.shoe4 {
    width: 340px;
    left: 200px;
    bottom: 0;
    transform: rotate(0deg);
}

.hero-right::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: #8b001f;
    border-radius: 50%;
    filter: blur(170px);
    opacity: .25;
    right: 80px;
    top: 50px;
}

.shoe {
    z-index: 2;
}
.premium-logo {
    height: 58px;
    width: auto;
}

.premium-navbar {
    height: 100px;
}

/* ===========================
   HERO RESPONSIVE
=========================== */

@media (max-width:992px) {

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 30px 60px;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        height: 420px;
        margin-bottom: 40px;
    }

    .hero-brand {
        width: 320px;
        margin: auto auto 30px;
    }

    .hero-text {
        margin: auto auto 35px;
        font-size: 18px;
    }
}

/* TELEFON */

@media (max-width:768px) {

    .hero-section {
        padding: 110px 20px 40px;
    }

    .hero-right {
        height: 280px;
    }

    .hero-brand {
        width: 230px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
        font-size: 18px;
    }

    /* Ayakkabılar */

    .shoe1 {
        width: 220px;
        right: 20px;
        top: 20px;
    }

    .shoe2 {
        width: 170px;
        left: 0;
        top: 80px;
    }

    .shoe3 {
        width: 150px;
        right: -20px;
        bottom: 30px;
    }

    .shoe4 {
        width: 170px;
        left: 60px;
        bottom: 0;
    }

    .hero-right::before {
        width: 260px;
        height: 260px;
        filter: blur(90px);
        right: 20px;
        top: 20px;
    }
}

@media(max-width:768px) {

    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
        min-height: auto;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        height: auto;
        margin-bottom: 40px;
    }

    .hero-brand {
        width: 260px;
        margin: auto;
    }

    .hero-text {
        font-size: 18px;
        max-width: 100%;
        margin: 30px auto;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .shoe1 {
        position: relative;
        width: 95%;
        top: 0;
        right: 0;
        transform: none;
    }

    .hero-right::before {
        display: none;
    }
}