.s-banner {
    background-image: url(images/banner.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

.s-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 51, 102, 0.85) 0%,
            rgba(0, 85, 170, 0.75) 50%,
            rgba(255, 102, 0, 0.3) 100%);
    z-index: 1;
}

.s-banner::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBanner 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatBanner {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

.banner-text {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    max-width: 650px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    animation: slideInLeft 1s ease-out;
    margin: 0 10rem;
}

.banner-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--orange) 0%, var(--dark-orange) 100%);
    border-radius: 24px 0 0 24px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-text h1 {
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.orange-text {
    color: var(--orange);
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(255, 102, 0, 0.5);
    animation: fadeInDown 1.2s ease-out 0.3s both;
}

.white-text {
    color: var(--white);
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1.2s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

.banner-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.banner-button:hover::before {
    width: 400px;
    height: 400px;
}

.banner-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5);
}

.banner-button:active {
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 992px) {
    .s-banner {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .banner-text {
        padding: 2.5rem;
        max-width: 550px;
    }

    .orange-text {
        font-size: 2rem;
    }

    .white-text {
        font-size: 1.8rem;
    }

    .banner-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .s-banner {
        min-height: 65vh;
        padding: 1rem 0.5rem;
        align-items: flex-start;
        padding-top: 3rem;
    }

    .banner-text {
        padding: 1.8rem 1.5rem;
        max-width: 95%;
        margin: 15rem 0 auto;
        border-radius: 20px;
    }

    .banner-text::before {
        width: 4px;
    }

    .banner-text h1 {
        margin-bottom: 1.5rem;
    }

    .orange-text {
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .white-text {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .banner-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        margin-top: 1.2rem;
    }
}