* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
header {
    background: #000;
    padding: 15px 0;
}

.logo {
    height: 60px;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ff6600;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #fff;
}

.cta {
    padding: 12px 25px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* INTRO */
.intro {
    padding: 60px 0;
    text-align: center;
}

/* SERVICES */
.services {
    padding: 60px 0;
}

.grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.card {
    flex: 1;
    background: #111;
    padding: 20px;
    border-radius: 8px;
}

/* IMAGE */
.image-section img {
    width: 100%;
    display: block;
}

/* CONTATTI */
.contatti {
    padding: 60px 0;
    text-align: center;
}

.email {
    color: #ff6600;
    font-size: 1.2rem;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
}

.carousel-section {
    background: #000;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}