body {
    margin: 0;
    font-family: 'Arial Black', sans-serif;
    background: #1A1A1A;
    color: white;
    text-align: center;
    overflow-x: hidden;
}

.hero {
  background: url('../images/hero-bg.jpeg')
        center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

/* ---------------- TEXT ---------------- */

.company-name {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: #F7C325;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    color: #F7C325;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 20px;
    font-weight: 300;
}

.description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

.contact-info p {
    margin: 5px 0;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* ---------------- BUTTONS ---------------- */

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    background: #F7C325;
    color: #1A1A1A;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.btn:hover {
    background: #d4a61f;
}

/* ---------------- FOOTER ---------------- */

footer {
    background: #111;
    padding: 15px;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    margin-top: 0;
}

/* ---------------- MOBILE OPTIMIZATION ---------------- */

@media (max-width: 600px) {
    .hero {
        padding: 40px 20px;
        min-height: 100vh;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}