/* ================================
   HERO SECTION – NEW LANDING PAGE
================================ */

body .hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url("/images/manufactor-embd3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography */
.hero-content h1 {
    font-family: 'HelveticaNeue-Bold', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: lowercase;
    margin-bottom: 20px;
}

.hero-content h1 span {
    display: block;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 400;
    opacity: 0.85;
}

.hero-content p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: #eaeaea;
    margin-bottom: 40px;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-actions a {
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Primary */
.hero-actions .btn-primary {
    font-family: 'HelveticaNeue-Bold', sans-serif;
    padding: 14px 34px;
    background: #ffffff;
    color: #000;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary:hover {
    background: #d4af37;
    color: #000;
}

/* Secondary */
.hero-actions .btn-secondary {
    font-family: 'Helvetica Neue', sans-serif;
    padding: 14px 34px;
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-actions .btn-secondary:hover {
    background: #ffffff;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: fit-content;
    }
}
