/* Stili di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #f4f4f4;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('./IMG_7930.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 10px;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay p {
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5rem;
    background: #fff;
    color: #333;
}

.about-content {
    display: flex;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.text {
    flex: 1;
}

.text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.gallery {
    flex: 1;
    position: relative;
    height: 300px;
    overflow: hidden;
    margin: 1rem;
    margin-left: 3rem;
}

.gallery img {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Info Section */
.info-section {
    padding: 2rem;
    text-align: center;
    background: #333;
    color: #fff;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-section p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #000;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Responsività */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery {
        width: 100%;
    }
}