/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 80px 100px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
    font-family: 'DM Sans', sans-serif;
}

.hero-content .btn-primary-custom {
    font-size: 16px;
    padding: 16px 44px;
    background: var(--white-color);
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

.hero-content .btn-primary-custom:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 123, 229, 0.3);
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 60px 80px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 0 40px 70px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .hero-content .btn-primary-custom {
        padding: 14px 36px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 30px 60px;
        max-width: 700px;
    }

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-content .btn-primary-custom {
        padding: 13px 32px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 20px 50px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-content .btn-primary-custom {
        padding: 12px 28px;
        font-size: 14px;
    }
}