@charset "UTF-8";

* {
    box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-image: url("../immagini/sfondo_erba_minigolfeden.jpg");
  background-repeat: repeat;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
               Helvetica, Arial, sans-serif;
}

/* Sfondo a tutta pagina */
#sfondo {
    margin: 0;
    padding: 0;
    height: 100vh;

    background-image: url('../immagini/progetto_Minigolf_Eden_Montesilvano_2.png');
    background-size: cover;              /* sempre cover */
    background-repeat: no-repeat;
    background-position: right center;   /* privilegia la parte destra */
    background-attachment: fixed;        /* opzionale */
}




/* Box testo in alto a sinistra, responsive */
.hero-box {
    position: fixed;              /* resta visibile anche scrollando */
    top: 20px;
    left: 20px;
    max-width: 420px;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.55);  /* semitrasparente */
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Titolo in evidenza */
.hero-box h1 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Testo descrittivo */
.hero-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

/* Adattamento mobile */
@media (max-width: 600px) {
    .hero-box {
        top: 12px;
        left: 12px;
        right: 12px;
        max-width: none;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .hero-box h1 {
        font-size: 1.2rem;
    }

    .hero-box p {
        font-size: 0.95rem;
    }
}
