/* style.css - Stili per il frontend */
/* simple-style.css */
.sf-parallax-simple {
    position: relative;
    width: 100%;
    padding-top: 40%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sf-parallax-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sf-parallax-button {
    display: inline-block;
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 1em 2em;
    font-size: clamp(0.8rem, 1.8vw, 1.4rem);
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sf-parallax-button:hover {
    background-color: black;
    color: white;
}

.sf-parallax-simple-preview {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .sf-parallax-simple {
        padding-top: 240px;
        background-attachment: scroll;
    }
}