/* BODY */
body {
    background: #e5f4ad; /* verde chiaro di sfondo pagina */
    font-family: 'Raleway', sans-serif;
}

/* HEADER CON FOTO */
.header-prodotti {
    background: url('../Foto/prodnew.jpg') center/cover no-repeat;
    padding: 120px 0;
    position: relative;
    text-align: center;
    color: white;
}

.header-prodotti .overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.45);
}

.header-prodotti h1 {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.header-prodotti p {
    position: relative;
    font-size: 20px;
}

/* TITOLI DI SEZIONE */
.section-title {
    text-align: center;
    margin: 60px 0 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-title p {
    color: #555;
}

/* --- Stile Body e Section --- */
body {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2d3e1f; /* verde scuro */
}

.section-title p {
    font-size: 16px;
    color: #555;
}

/* --- Griglia e Card --- */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 20px;
}

.product-card img {
    width: 100%;
    height: auto; /* mantiene proporzioni */
    display: block;
}

.product-card h4 {
    font-size: 20px;
    margin: 15px 10px 10px 10px;
    color: #2d3e1f;
}

.product-card p {
    font-size: 14px;
    margin: 0 15px 15px 15px;
    color: #555;
    line-height: 1.5;
}

/* --- Hover effetto leggero --- */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 2px solid #5a8f29; /* verde leggero */
}

/* --- Pulsante Scopri di più --- */
.product-card .btn-scopri {
    display: inline-block;
    padding: 8px 18px;
    margin-top: 10px;
    border: none;
    background-color: #5a8f29;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card .btn-scopri:hover {
    background-color: #45721f;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .product-card {
        margin-bottom: 20px;
    }
}

.product-card .extra-text {
    display: none;        /* nascosto di default */
    margin-top: 10px;
    color: #555;
}

.product-card.expanded .extra-text {
    display: block;       /* visibile quando la card ha la classe expanded */
}
