/*
		Custom stylesheet for Indico Conference
		(v3.3.4 – LPF10 version: logo + title + subtitle + full banner)
*/

/* ----------- Header: title and logo ----------- */

.confTitleBox {
		background: #1a64a0; /* fallback color */
		border-top: 3px solid #234173;
		border-bottom: 3px solid #234173;
		text-align: center;
		padding: 20px 0;
}

.confTitle {
		width: 950px;
		max-width: 95%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
}

/* Flex row for logo + title */
.confTitleRow {
		display: flex;
		align-items: center; /* vertical alignment of logo and text */
		justify-content: center;
		gap: 15px; /* space between logo and text */
		flex-wrap: wrap; /* wraps on smaller screens */
}

/* Logo adjustments */
.confLogoBox {
		flex-shrink: 0;
}

.confLogoBox img {
		max-height: 80px;
		width: auto;
		filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

/* Title + subtitle container */
.confTitleText {
		text-align: left;
		max-width: 750px;
}

/* Title text */
.conference-title-link {
		font-size: 28pt;
		font-weight: bold;
		color: white;
		text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
		line-height: 1.5;
		margin: 0;
}

/* Subtitle */
.conf-subtitle {
		font-size: 16pt;
		font-weight: 300;
		color: #f0f0f0;
		margin-top: 5px;
		font-style: italic;
		text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ----------- Banner below title ----------- */
.confTitle img.banner {
		width: 100%;
		height: auto;
		display: block;
		margin: 15px 0;
		border-bottom: 4px solid #234173;
}

/* ----------- Subtitle section: date, location ----------- */
.confSubTitleBox {
		background: #e9f0f8;
		border-bottom: 1px solid #c2d6e7;
		border-top: 1px solid #c2d6e7;
		padding: 0.8rem 0;
		text-align: center;
}

.confSubTitleContent {
		width: 950px;
		max-width: 95%;
		margin: 0 auto;
		font-size: 13pt;
		color: #1a3d66;
		font-weight: 500;
}

/* ----------- Main layout ----------- */
#confSectionsBox {
		width: 950px;
		max-width: 95%;
		margin: 30px auto;
}

.confBodyBox {
		margin-left: 230px;
}

/* ----------- Left menu ----------- */
.conf_leftMenu {
		float: left;
		width: 200px;
}

#outer {
		border-radius: 6px;
		border: 1px solid #ccc;
		background: #fafafa;
		box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#outer li a {
		font-family: Arial, sans-serif;
		font-size: 10.5pt;
		padding: 8px 12px;
		display: block;
		transition: background 0.2s;
}

#outer li a:hover {
		background: #dbe9f6;
		color: #003366;
}

.menuConfTitle a {
		color: #275c86;
}

.menuConfTitle.selected > a,
.menuConfMiddleCell.selected > a {
		color: #bd891a;
		background: #dadada;
		border-bottom: 1px solid #d0d0d0;
		border-top: 1px solid #d0d0d0;
}

/* ----------- Responsive Design ----------- */
@media (max-width: 1024px) {
		.conference-title-link {
				font-size: 22pt;
		}
		.confLogoBox img {
				max-height: 70px;
		}
}

@media (max-width: 768px) {
		.confTitleRow {
				flex-direction: column; /* stack logo above title */
				align-items: center;
		}
		.confTitleText {
				text-align: center;
		}
		.conference-title-link {
				font-size: 20pt;
				line-height: 1.3;
		}
		.conf-subtitle {
				font-size: 14pt;
		}
		.confSubTitleContent {
				font-size: 12pt;
		}
		.confBodyBox {
				margin-left: 0;
		}
}

@media (max-width: 480px) {
		.conference-title-link {
				font-size: 18pt;
		}
		.conf-subtitle {
				font-size: 13pt;
		}
}