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

.hero-section {
    position: relative;

    width: 100%;
    min-height: 85vh;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 80px;

    background-image: url('/wp-content/uploads/2026/06/2-tesla-model-3-standard-driving.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;

    /* cinematic base grading */
    filter: contrast(1.08) saturate(1.05) brightness(1.02);
}

/* CINEMATIC HERO OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.55) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.45) 100%
        );
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px);
    opacity: 0.25;
}


/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    text-align: left;
}

/* TITLE */
.hero-content h1 {
    margin: 0 0 24px;

    font-size: 2.625rem;
    line-height: 1.05;
    font-weight: 800;

    color: rgba(255, 255, 255, 0.92);

    text-shadow:
        0 2px 8px rgba(0,0,0,0.35);
}

/* BUTTON */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-transform: uppercase;
    text-decoration: none;

    background-color: rgb(230, 171, 64);
    color: #fff;

    font-weight: 600;

    border: 1px solid rgb(230, 171, 64);
    border-radius: 5px;

    padding: 12px 18px;

    letter-spacing: 0.5px;

    transition: all 0.25s ease;
}

.hero-btn:hover {
    background-color: transparent;
    border-color: rgb(230, 171, 64);
    color: #fff;

    transform: translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .hero-section {

        min-height: 65vh;

        padding: 40px 20px;

        justify-content: center;
    }

    .hero-content {

        max-width: 100%;
        text-align: center;
    }

    .hero-btn {
      margin-top: 120px;
      width: 50%;
      padding: 5px;
    }

    .hero-content h1 {
    margin-top: 50px;

    font-size: 1.5rem;
    line-height: 1.05;
    font-weight: 800;

}


}