/* styles.css */

/* Stile globale */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.navbar .nav-links li a {
    color: white;
    text-decoration: none;
}

.navbar .hamburger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.hero .btn {
    background-color: #ff5733;
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 2rem;
    text-align: center;
}

.about .team-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.about .team-member {
    text-align: center;
}

.about .team-member img {
    width: 150px;
    border-radius: 50%;
}

/* Services Section */
.services {
    background-color: #f1f1f1;
    padding: 2rem;
    text-align: center;
}

.services .service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.services .card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 200px;
}

.services .card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff5733;
}

/* Contact Section */
.contact {
    padding: 2rem;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact form label {
    display: block;
    margin: 1rem 0 0.5rem;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    background-color: #ff5733;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

footer .social-links li a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}
