body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: black;
    color: #ecf0f1;
}

.image-container {
    text-align: center;
    margin-top: 10vh; /* Sposto l'immagine più in basso */
    margin-bottom: 50px;
}

.image-container img {
    max-width: 400px; /* Ingrandisco ulteriormente l'immagine */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

header {
    text-align: center;
    margin-top: 0; /* Resetto il margine superiore dell'header */
    margin-bottom: 100px;
    padding: 30px 0;
    border-bottom: 3px solid #2c3e50;
}

.spacer {
    height: 270vh; /* Spacer di 270vh */
}

h1 {
    font-size: 7.5rem; /* Mantengo la dimensione del font per maggiore visibilità */
    color: #f8f9fa;
    font-weight: bold;
    letter-spacing: 1px;
}

.hotel {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
    background-color: black; /* Sfondo nero per la sezione hotel */
    margin-top: 1000px; /* Mantengo la sezione hotel molto più in basso */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Sections */
.intro {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.hotel {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

.hotel:last-of-type {
    border-bottom: none;
}

/* Headings */
h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 20px;
}

/* Hotel sections */
.hotel-section {
    margin-bottom: 20px;
}

.hotel-section p {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 15px;
}

/* Why choose section */
.why-choose {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.why-choose h2 {
    border-bottom: 2px solid #e74c3c;
}

.why-choose p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.copyright {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #34495e;
}

.copyright p {
    font-size: 1rem;
    font-weight: bold;
}

.disclaimer h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.disclaimer p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    main {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .intro p,
    .why-choose p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    main {
        padding: 15px;
    }
    
    footer {
        padding: 20px;
    }
}

