/* ============================================================
   Agenda / Concerts — reproduces the Word (.docx) design in HTML
   Add these rules to style-concert.css on the server.
   Sizes are in pt to match the document exactly:
     title 20pt · venue 14pt · everything else 12pt
   ============================================================ */

#agenda {
	max-width: 740px;          /* same width as the old PNG */
	margin: 0 auto;
	text-align: left;
	font-family: "Times New Roman", Times, serif;  /* docx body font */
}

#agenda p {
	margin: 0 0 2px 0;
	line-height: 1.2;
	font-weight: bold;          /* every line in the docx is bold */
}

/* Title — uses the site's decorative font (Dancing Script) */
#agenda .agenda-title {
	font-family: 'Dancing Script', "Times New Roman", serif;
	font-size: 20pt;
	font-weight: 700;
	color: #000000;
	margin: 0 0 18px 0;
}

#agenda .agenda-event {
	margin: 0 0 20px 0;         /* blank line between concerts */
}

#agenda .agenda-venue {        /* GRAMAT, SEVRES, PARIS 17e ... */
	font-size: 14pt;
	color: #800080;
}

#agenda .agenda-date {         /* Samedi 3 Mai 2025 ... */
	font-size: 12pt;
	color: #0000FF;
}

#agenda .agenda-desc {         /* programme / oeuvres lines */
	font-size: 12pt;
	color: #800000;
}

#agenda .agenda-info {         /* reservation / metro / phone */
	font-size: 12pt;
	color: #222222;
}

#agenda .agenda-info a {
	color: #222222;
	text-decoration: underline;
}
