/* ===== HERO (CLEAN + PREMIUM) ===== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left align = more premium */
    padding: 0 60px;
    color: white;
    overflow: hidden;

    background: url('../images/everest.jpeg') center/cover no-repeat;
}

/* DARK OVERLAY (MAIN FIX) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
background: linear-gradient(
    to right,
    rgba(0,0,0,0.6)
);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* TITLE */
.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;

    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* SUBTEXT */
.hero p {
    font-size: 1.2rem;
    opacity: 0.9;

    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ===== REMOVE OLD SLIDER COMPLETELY ===== */
/* (deleted .slider, .slider-container, .slide) */

/* ===== REMOVE OLD CUSTOMER SECTION (handled in theme.css) ===== */

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .hero {
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}