* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.hero-section {
    background-image: url('https://abkant.ro/images/Scule%20abkant%20SM%20TECH%20SRL.jpg'); /* Inlocuiește cu URL-ul imaginii de fundal */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* overlay semitransparent */
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    max-width: 800px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #ff5722; /* Portocaliu deschis */
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e64a19; /* Culoare la hover */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .description {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}
