body{

font-family: Arial, Helvetica, sans-serif;
background:#f4f4f4;
margin:0;
color:#222;

}

.header{

background:white;
border-bottom:1px solid #ddd;
padding:20px 40px;

}

.logo{

font-size:28px;
font-weight:bold;
color:#2c6fb7;

}

.subtitle{

font-size:14px;
color:#666;
margin-top:4px;

}

.menu{

margin-top:15px;

}

.menu a{

text-decoration:none;
margin-right:20px;
color:#333;
font-size:14px;

}

.menu a:hover{

text-decoration:underline;

}

.container{

max-width:1200px;
margin:auto;
padding:20px;

}

/* catalogo griglia */

.grid{

display:grid;
grid-template-columns:repeat(auto-fill,250px);
gap:30px;

}

/* scheda oggetto */

.card{

background:white;
border:1px solid #ddd;
border-radius:4px;
padding:15px;
text-align:center;
transition:0.2s;

}

.card:hover{

box-shadow:0 4px 12px rgba(0,0,0,0.1);

}

.card img{

width:100%;
height:160px;
object-fit:cover;
border-bottom:1px solid #eee;
margin-bottom:10px;

}

.card_title{

font-weight:bold;
font-size:16px;

}

.card_desc{

font-size:14px;
color:#555;
margin-top:4px;

}

.card_year{

font-size:13px;
color:#888;
margin-top:4px;

}

/* tabelle (per parti vecchie del sito) */

table{

border-collapse:collapse;
background:white;

}

td,th{

padding:6px 12px;
border:1px solid #ccc;

}

/* galleria foto oggetto */

.foto_grid{

display:flex;
flex-wrap:wrap;
gap:20px;

}

.foto_grid img{

width:200px;
border:1px solid #ccc;
padding:4px;
background:white;

}

.submenu{

margin-top:10px;
font-size:14px;

}

.submenu a{

margin-right:10px;
text-decoration:none;
color:#333;

}
