/* Hero Section Styles */
#hero-section {
    background: url(../img/X-jures-hero-Section-pc.webp);
    min-height: 95vh;
    display: flex;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 570px;
    letter-spacing: -0.02em;
    padding-bottom: 40px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #E6B75A 0%, #C69D4F 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(230, 183, 90, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 183, 90, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    #hero-section {
        padding-top: 80px;
        text-align: center;
        background: url(../img/X-jures-hero-Section-tablet-cel.webp);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;

    }


    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 20rem;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    #hero-section::after {
        width: 200px;
        height: 200px;
        right: 5%;
        top: 15%;
    }

    #hero-section::before {
        width: 60%;
    }
}

@media screen and (max-width: 480px) {
    #hero-section {
        padding-top: 70px;
        min-height: 90vh;
    }

    .hero-container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 20rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.75rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    #hero-section::after {
        width: 150px;
        height: 150px;
        right: -10%;
        top: 10%;
    }

    #hero-section::before {
        width: 80%;
        opacity: 0.3;
    }
}

@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 11px 22px;
    }
}