/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;

    background-image: url("Assets/index_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
}

/* CONTENT WRAPPER */
.hero-content {
    max-width: 650px;
    margin-top: 60px;
}

/* TITLE */
.hero-title {
    color: white;
    font-size: 7rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

/* SUBTITLE */
.hero-text {
    color: #f1f1f1;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 500px;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #075136;
    color: white;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #06452d;
    color: white;
}

/* TABLET */
@media (max-width: 992px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-text {
        font-size: 1.05rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-overlay {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 40px;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 4.5rem);
        margin-bottom: 12px;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn {
        padding: 11px 26px;
        font-size: 0.9rem;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }
}