/* CSS spécifique à la page Exposition Chanvr'Art */

/* Hero section */
.exposition-hero {
	background: linear-gradient(135deg, #2d5016 0%, #4a7729 100%);
	padding: 6rem 2rem 3rem;
	text-align: center;
	color: white;
	position: relative;
}

.exposition-hero .hero-content {
	max-width: 1200px;
	margin: 0 auto;
}

.exposition-hero h1 {
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.exposition-hero .subtitle {
	font-family: var(--font-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	opacity: 0.95;
	font-weight: 400;
}

.exposition-hero .hero-edition {
	font-size: 1rem;
	margin-top: 1.5rem;
	padding: 0.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	display: inline-block;
	backdrop-filter: blur(10px);
}

/* Container principal avec bande latérale */
.exposition-content {
	display: flex;
	min-height: 100vh;
	background: url('/images/all-hemp-hero-background.jpg') center/cover;
	position: relative;
	padding-top: 5.3rem;
}

.exposition-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.96);
	z-index: 1;
}

/* Bande latérale verte */
.exposition-sidebar {
	width: 120px;
	background:
		linear-gradient(to bottom, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.5)),
		url('/images/all-hemp-hero-background.jpg') center/cover;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	z-index: 10;
	padding-top: 8rem;
}

.exposition-sidebar .sidebar-text {
	writing-mode: sideways-lr;
	text-orientation: mixed;
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 8px;
	font-family: var(--font-heading);
	margin-bottom: 2rem;
	color: white;
}

.exposition-sidebar .sidebar-year {
	font-size: 2rem;
	font-weight: bold;
	font-family: var(--font-heading);
	color: white;
}

/* Contenu principal */
.exposition-main {
	flex: 1;
	padding: 3rem 4rem 4rem 4rem;
	background: white;
	position: relative;
	z-index: 2;
	margin-left: 120px;
	width: calc(100% - 120px);
}

/* Introduction */
.exposition-intro {
	margin-bottom: 4rem;
	text-align: center;
}

.exposition-intro .logo-all-hemp {
	width: 200px;
	height: auto;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.intro-text {
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.8;
	font-size: 1.1rem;
	color: #333;
}

.intro-text p {
	margin-bottom: 1.2rem;
}

.intro-text .bonne-visite {
	font-weight: 600;
	font-size: 1.3rem;
	color: #2d5016;
	margin-top: 2rem;
	font-style: italic;
}

/* Titre des artistes */
.artistes-titre {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
	border-top: 2px solid #e0e0e0;
	border-bottom: 2px solid #e0e0e0;
}

.artistes-titre h2 {
	font-size: 2.5rem;
	color: #2d5016;
	margin-bottom: 0.5rem;
	font-weight: 300;
	letter-spacing: 2px;
}

.artistes-note {
	font-size: 1.1rem;
	color: #666;
	font-style: italic;
}

/* Grille des artistes */
.artistes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}

/* Carte artiste */
.artiste-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	border: 1px solid #f0f0f0;
}

.artiste-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15);
}

/* Photo artiste */
.artiste-photo {
	width: 100%;
	height: 320px;
	overflow: hidden;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	position: relative;
}

.artiste-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.artiste-card:hover .artiste-photo img {
	transform: scale(1.08);
}

/* Info artiste */
.artiste-info {
	padding: 1.8rem;
}

.artiste-info h3 {
	font-size: 1.5rem;
	color: #2d5016;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.artiste-role {
	font-size: 0.95rem;
	color: #666;
	font-style: italic;
	margin-bottom: 1.2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e8e8e8;
}

/* Info œuvre */
.oeuvre-info {
	margin-top: 1rem;
	padding-top: 0.8rem;
}

.oeuvre-info.oeuvre-supplementaire {
	border-top: 1px dashed #e0e0e0;
	margin-top: 1rem;
}

.oeuvre-titre {
	font-size: 1.05rem;
	color: #333;
	font-weight: 600;
	margin-bottom: 0.3rem;
	font-style: italic;
}

.oeuvre-details {
	font-size: 0.9rem;
	color: #777;
	margin-bottom: 0.3rem;
}

.oeuvre-materiau {
	font-size: 0.9rem;
	color: #4a7729;
	font-weight: 500;
}

/* Appel à l'action */
.exposition-cta {
	background: linear-gradient(135deg, #2d5016 0%, #4a7729 100%);
	color: white;
	padding: 3rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(45, 80, 22, 0.25);
	margin-top: 4rem;
}

.exposition-cta h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 300;
	letter-spacing: 1px;
}

.exposition-cta p {
	font-size: 1.15rem;
	margin-bottom: 0.8rem;
	opacity: 0.95;
}

.cta-dates {
	font-size: 1.4rem !important;
	font-weight: 600 !important;
	margin-top: 1.5rem !important;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
	.exposition-main {
		padding: 2rem 3rem;
	}

	.artistes-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
	}
}

@media (max-width: 864px) {
	.exposition-content {
		flex-direction: column;
		padding-top: 2.8rem;
	}

	.exposition-sidebar {
		width: 100%;
		height: 80px;
		flex-direction: row;
		justify-content: space-between;
		padding: 0 2rem;
		position: relative;
		left: auto;
		top: auto;
		height: auto;
		padding-top: 0;
	}

	.exposition-sidebar .sidebar-text {
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		font-size: 1.5rem;
		letter-spacing: 2px;
		margin-bottom: 0;
	}

	.exposition-sidebar .sidebar-year {
		font-size: 2rem;
	}

	.exposition-main {
		max-width: 100%;
		width: 100%;
		margin-left: 0;
		padding: 2rem 1.5rem;
	}

	.exposition-hero h1 {
		font-size: 3rem;
		letter-spacing: 0.05em;
	}

	.exposition-hero .subtitle {
		font-size: 1.2rem;
	}

	.artistes-titre h2 {
		font-size: 2rem;
	}

	.artistes-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.artiste-photo {
		height: 280px;
	}

	.exposition-cta {
		padding: 2rem 1.5rem;
	}

	.exposition-cta h3 {
		font-size: 1.6rem;
	}

	.cta-dates {
		font-size: 1.2rem !important;
	}
}

@media (max-width: 480px) {
	.exposition-main {
		padding: 1.5rem 1rem;
	}

	.exposition-hero h1 {
		font-size: 2.5rem;
	}

	.exposition-hero .subtitle {
		font-size: 1rem;
	}

	.exposition-intro .logo-all-hemp {
		width: 150px;
	}

	.intro-text {
		font-size: 1rem;
	}

	.artistes-titre h2 {
		font-size: 1.6rem;
	}

	.artiste-info {
		padding: 1.5rem;
	}

	.artiste-info h3 {
		font-size: 1.3rem;
	}
}
