/* =========================
   HERO SECTION
   ========================= */

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url("../images/aluminum-accessories/AluminumBanner1.png");
    /* you will replace */
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero__content {
    max-width: 700px;
    padding: 4rem 2rem;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}


/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn--primary {
    background-color: #e30613;
    color: #ffffff;
    border-color: #e30613;
}

.btn--outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #e30613;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__content {
        padding: 3rem 1.5rem;
    }
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}