/* --- PAGE HERO --- */
.page-hero {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 15px; }
.page-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* --- GALLERIA --- */
.gallery-filters {
    justify-content: center;
    margin-bottom: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}
.gallery-img {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 8px; }
.gallery-overlay p { font-size: 0.9rem; opacity: 0.9; }

/* --- VIDEO TESTIMONIANZE --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}
.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.video-placeholder {
    height: 250px;
    background: #1f2937;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s;
}
.video-placeholder:hover { background: #374151; }
.play-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}
.video-info { padding: 25px; }
.video-info h3 { font-family: var(--font-heading); margin-bottom: 10px; color: var(--primary-color); }
.video-info p { color: var(--text-light); font-size: 0.95rem; }

/* --- STORIE --- */
.story-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 25px;
}
.story-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}
.story-card cite {
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
}

/* --- DOWNLOAD --- */
.download-list { display: flex; flex-direction: column; gap: 15px; }
.download-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.download-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}
.download-icon { font-size: 2rem; margin-right: 20px; }
.download-info { flex: 1; }
.download-info h4 { font-family: var(--font-heading); margin-bottom: 4px; }
.download-info span { font-size: 0.85rem; color: var(--text-light); }
.btn-download {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.btn-download:hover { background: #1d4ed8; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .download-item { flex-direction: column; text-align: center; gap: 15px; }
    .download-icon { margin-right: 0; }
}