/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('bg.jpg'); /* Inserisci il percorso dell'immagine qui */
    background-size: cover;
    background-position: center; /* Punto di focus regolabile */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* Sfondo semitrasparente */
}

.title {
    font-size: 4rem;
    color: white;
    text-align: center;
}

.white-text {
    color: white;
}

.yellow-text {
    color: #FFD700; /* Colore giallo */
}

.subtitle {
    font-size: 1.5rem;
    color: white;
    margin-top: 20px;
}

.contact-btn {
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #FFD700; /* Colore giallo */
    color: white;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #e6c200;
}
