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

/* Desktop Default */
.hero {
    min-height: 85vh;
    position: relative;
    background: url("../images/hero-banner4.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero > * {
    position: relative;
    z-index: 2;
}


/* HERO CONTENT */
.hero-content {
    max-width: 900px;
    width: 100%;
}

/* MAIN TITLE */
.hero h1 {
    font-size: 100px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.1;
}

/* SUB TITLE */
.hero h2 {
    font-size: 38px;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* TRUSTED LINE */
.hero-subtitle {
    font-size: 36px;
    color: white;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 25px;
    animation: floatSubtitle 4s ease-in-out infinite,
               glowSubtitle 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatSubtitle {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* Glow Animation */
@keyframes glowSubtitle {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255,255,255,0.3);
    }
    50% {
        text-shadow: 0 0 18px rgba(255,255,255,0.8);
    }
}

/* LOCATIONS */
.hero-locations {
    font-size: 32px;
    letter-spacing: 2px;
    color: white;
    margin-top: 40px;
    font-weight: bold;
}


/* =========================
   Tablet (992px)
========================= */

@media (max-width: 992px) {

    .hero {
        min-height: 75vh;
        height: auto;
        
    }

    .hero h1 {
        font-size: 100px;
        margin-top: -90px;
        line-height: 1.5;
    }

    .hero h2 {
        font-size: 50px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 45px;
        line-height: 1.8;
    }

    .hero-locations {
        font-size: 34px;
        white-space: nowrap;
        
    }
}
/* =========================
   Mobile (768px)
========================= */

@media (max-width: 768px) {

    .hero {
        min-height: 80vh;
        height: auto;
    }

    .hero h1 {
        font-size: 35px;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 21px;
        line-height: 1.2;
        
    }

    .hero-subtitle {
        font-size: 18px;
        white-space: nowrap;
        line-height: 1.2;
        
        
    }

    .hero-locations {
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 4px;
}
}
