/*
 * Styles structurels du plugin RvBy Site Extras.
 * Ne dépend d'aucun thème en particulier — les styles de design (couleurs,
 * polices, panneau translucide) sont dans une feuille de style à part
 * (rvby-reprise-visuelle.css), à adapter selon le thème final choisi.
 */

.rvby-fullscreen-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	/* object-fit: cover, contrairement à l'ancien site qui utilisait "fill"
	   et déformait légèrement l'image selon la taille d'écran. */
	object-fit: cover;
	object-position: center center;
	pointer-events: none;
}

.rvby-subtitle {
	display: block;
	font-size: 0.5em;
	font-weight: 400;
	opacity: 0.85;
	margin-top: 0.25em;
}

/* Fil d'Ariane simple sous le titre (page d'accueil). */
.rvby-breadcrumb {
	display: block;
	font-size: 0.8em;
	color: #999;
	margin: 0 0 24px;
}

.rvby-breadcrumb a {
	color: #999;
	text-decoration: none;
}

.rvby-breadcrumb a:hover {
	text-decoration: underline;
}

/* Widget "Chansons de l'album" : pochette + liste des chansons de l'album en cours. */
.rvby-album-cover-link {
	display: block;
	margin-bottom: 12px;
}

.rvby-album-cover {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.rvby-album-tracklist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rvby-album-tracklist li {
	padding: 6px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 0.9em;
}

.rvby-album-tracklist li:last-child {
	border-bottom: none;
}

.rvby-album-tracklist li.rvby-current-track {
	font-weight: 700;
}

.rvby-album-tracklist a {
	text-decoration: none;
}

.rvby-album-tracklist a:hover {
	text-decoration: underline;
}

/* Colonne latérale droite : un seul bloc gris uniforme (au lieu d'une boîte
   blanche par widget), coins arrondis sur les bords extérieurs uniquement,
   et un fin trait en relief entre chaque widget qu'elle contient. */
.inside-right-sidebar {
	background: #e3e3e0;
	border-radius: 10px;
	overflow: hidden;
}

#right-sidebar .widget {
	background: transparent;
	box-shadow: none;
	margin: 0;
}

#right-sidebar .widget + .widget {
	border-top: 1px solid rgba(0, 0, 0, 0.14);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Widget "Liste des albums" (page d'accueil uniquement) : une pochette + son
   année en dessous, du plus récent au plus ancien, séparés par un fin trait
   en relief (comme le reste de la colonne). */
.rvby-album-list-item {
	text-align: center;
	padding: 20px 0;
}

.rvby-album-list-item + .rvby-album-list-item {
	border-top: 1px solid rgba(0, 0, 0, 0.14);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.rvby-album-list-cover {
	display: block;
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 4px;
	margin: 0 auto;
}

.rvby-album-list-year {
	margin: 10px 0 0;
	font-size: 1em;
	font-weight: 600;
	color: #666;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.rvby-album-list-year a {
	color: #666;
	text-decoration: none;
}

.rvby-album-list-year a:hover {
	text-decoration: underline;
}
