
p {
	color:#000000;
	font-size:18px;
	line-height: 1.8;
	margin-top:15px;
	margin-bottom:15px;
}
a {
	color:#333333;
	txt-decoration:underlined;
	font-size:18px;
	line-height: 1.8;
	margin-top:15px;
	margin-bottom:15px;
}

/* Share Button & Menu Styles */
/* Share Button & Menu Styles */
.share-container {
	position: relative;
	z-index:9999;
	display: inline-block;
}

.share-button {
	 background: linear-gradient(135deg, #dc3545 0%, #721c24 100%);
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.share-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.share-button svg {
	stroke: white;
}

.share-menu {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	min-width: 250px;
	z-index: 9999;
	overflow: hidden;
	animation: slideDown 0.3s ease;
}

.share-menu.active {
	display: block;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.share-menu-header {
	padding: 16px;
	 background: linear-gradient(135deg, #dc3545 0%, #721c24 100%);
	color: white;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
}

.share-option {
	width: 100%;
	padding: 14px 20px;
	border: none;
	background: white;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: background 0.2s ease;
	font-size: 15px;
	color: #333;
	text-align: left;
}

.share-option:hover {
	background: #f7f7f7;
}

.share-option svg {
	flex-shrink: 0;
}

.share-option span {
	flex: 1;
}



/* Toast notification - classe spécifique pour éviter les conflits */
.share-toast-notification {
	position: fixed !important;
	bottom: 30px !important;
	left: 50% !important;
	transform: translateX(-50%) translateY(100px) !important;
	background: #333 !important;
	color: white !important;
	padding: 16px 24px !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
	z-index: 10000 !important;
	opacity: 0 !important;
	transition: all 0.3s ease !important;
	font-size: 14px !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	width: auto !important;
	max-width: 400px !important;
	min-width: 250px !important;
	height: auto !important;
	margin: 0 !important;
}

.share-toast-notification.show {
	opacity: 1 !important;
	transform: translateX(-50%) translateY(0) !important;
}

.share-toast-notification.success {
	background: #10b981 !important;
}

.share-toast-notification svg {
	flex-shrink: 0;
	width: 20px !important;
	height: 20px !important;
}

.share-toast-notification span {
	flex: 1;
	white-space: nowrap;
}

/* Conteneur gris clair navigatioon bas */
.rounded-nav-container {
	background-color: #f5f5f5;
	border-radius: 1rem;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	width: 100%;
}

/* Conteneur pour images verticales */
.vertical-image-container {
	background-color: #f5f5f5;
	border-radius: 1rem;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	width: 100%;
}

.vertical-image-container img {
	max-height: 600px;
	width: auto !important;
	max-width: 100%;
	object-fit: contain;
}

/* Wrapper pour contenir l'image verticale */
.image-container-wrapper {
	width: 100%;
	margin-bottom: 30px;
}

/* Style pour les images cliquables */
.clickable-image {
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-image:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	overflow: auto;
}

.lightbox-content {
	position: relative;
	margin: auto;
	padding: 20px;
	max-width: 90%;
	max-height: 90%;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-content img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 85vh;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 40px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10000;
	background-color: rgba(0,0,0,0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.lightbox-close:hover {
	background-color: rgba(0,0,0,0.8);
}

/* Flèches de navigation lightbox */
.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10000;
	background-color: rgba(0,0,0,0.5);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	transition: background-color 0.3s ease;
}

.lightbox-nav:hover {
	background-color: rgba(0,0,0,0.8);
}

.lightbox-prev {
	left: 40px;
}

.lightbox-next {
	right: 40px;
}

.lightbox-nav.disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.lightbox-nav.disabled:hover {
	background-color: rgba(0,0,0,0.5);
}

/* Amélioration pour photo unique en pleine largeur */
.single-photo-full {
	width: 100% !important;
	margin-bottom: 30px;
}

/* Bannière d'incitation au téléchargement de l'appli */
.app-download-banner {
	 background: linear-gradient(135deg, #dc3545 0%, #721c24 100%);
	border-radius: 16px;
	padding: 30px;
	margin: 50px 0;
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
	position: relative;
	overflow: hidden;
}

.app-download-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.app-download-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.app-banner-text {
	flex: 1;
	color: white;
}

.app-banner-text h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: white;
}

.app-banner-text p {
	font-size: 16px;
	margin: 0 0 20px 0;
	opacity: 0.95;
	color: white !important;
	line-height: 1.5;
}

.app-banner-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.app-store-btn {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 12px 24px;
	border-radius: 12px;
	color: white;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 14px;
}

.app-store-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	color: white;
	text-decoration: none;
}

.app-store-btn svg {
	width: 24px;
	height: 24px;
}

.app-banner-icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
}

/* Responsive */
@media (max-width: 768px) {
	.app-download-banner {
		padding: 25px 20px;
		margin: 30px 0;
	}
	
	.app-download-banner-content {
		flex-direction: column;
		text-align: center;
	}
	
	.app-banner-text h3 {
		font-size: 20px;
	}
	
	.app-banner-text p {
		font-size: 14px;
	}
	
	.app-banner-buttons {
		justify-content: center;
	}
	
	.app-banner-icon {
		width: 60px;
		height: 60px;
		font-size: 30px;
	}
}

/* pour la colonne droite les dossiers */
/* Sidebar des dossiers magazine */
.magazine-sidebar {
	background: #f8f9fa;
	border-radius: 16px;
	padding: 25px;
	margin-top:30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 20px;
}

.magazine-sidebar h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 20px 0;
	color: #2c3e50;
	padding-bottom: 15px;
	border-bottom: 2px solid #e0e0e0;
}

.magazine-theme-item {
	background: white;
	border-radius: 12px;
	margin-bottom: 15px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.magazine-theme-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	text-decoration: none;
}

.magazine-theme-cover {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.magazine-theme-cover::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.magazine-theme-title {
	position: absolute;
	top: 20px;
	left: 15px;
	right: 15px;
	color: white;
	font-size: 25px;
	font-weight: 600;
	z-index: 1;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	line-height: 1.3;
}

.magazine-theme-info {
	padding: 12px 15px;
	background: white;
}

.magazine-theme-subtitle {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.4;
}

.magazine-theme-order {
	display: inline-block;
	background: linear-gradient(135deg, #dc3545 0%, #721c24 100%);
	color: white;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 6px;
	margin-top: 5px;
}

.see-all-themes {
	display: block;
	text-align: center;
	padding: 12px;
	background: linear-gradient(135deg, #dc3545 0%, #721c24 100%);
	color: white;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 15px;
	transition: all 0.3s ease;
}

.see-all-themes:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
	color: white;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
	.magazine-sidebar {
		margin-top: 30px;
		position: relative;
		top: 0;
	}
}


/* BOUTONS COMPLEMENTAIRES PAGEPROFILE */
/* Boutons d'action de la sidebar */
.action-buttons-container {
	background: #f8f9fa;
	border-radius: 16px;
	padding: 20px;
	margin-top: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.whiteblock {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 18px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	color: #2c3e50;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	margin-bottom: 12px;
}

.whiteblock:last-child {
	margin-bottom: 0;
}

.whiteblock:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
}

.whiteblock:hover .action-icon {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.action-icon {
	width: 42px;
	height: 42px;
	min-width: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #dc3545 0%, #721c24 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0px solid rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
	padding: 8px;
}

.action-icon img {
	max-width: 22px;
	max-height: 22px;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: brightness(0) invert(1); /* Rend les icônes blanches */
}

.whiteblock:hover .action-icon img {
	filter: brightness(0) invert(1);
	transform: scale(1.1);
}

.action-text {
	flex: 1;
	letter-spacing: 0.5px;
}

/* Variantes de couleurs pour chaque bouton (optionnel) */
.whiteblock.favorite:hover {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.whiteblock.player:hover {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.whiteblock.location:hover {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Animation au chargement */
@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.whiteblock:nth-child(1) {
	animation: slideInRight 0.4s ease-out 0.1s both;
}

.whiteblock:nth-child(2) {
	animation: slideInRight 0.4s ease-out 0.2s both;
}

.whiteblock:nth-child(3) {
	animation: slideInRight 0.4s ease-out 0.3s both;
}

/* Responsive */
@media (max-width: 991px) {
	.action-buttons-container {
		margin-top: 20px;
	}
	
	.whiteblock {
		font-size: 13px;
		padding: 12px 15px;
	}
	
	.action-icon {
		width: 38px;
		height: 38px;
		min-width: 38px;
	}
}
