/* --- HERO SECTION --- */
.hero {
	height: 72vh;
	min-height: 480px;
	max-height: 720px;
	background: linear-gradient(to right, rgba(42, 28, 24, 0.9), rgba(42, 28, 24, 0.4)),
				url('https://images.unsplash.com/photo-1531123897727-8f129e1bfd8c?auto=format&fit=crop&w=1920&q=80');
	background-attachment: fixed;
	background-position: center top;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5vw;
	position: relative;
	color: var(--white);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to top, var(--dark-brown), transparent);
}

.hero-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
	z-index: 2;
}

.hero-content {
	max-width: 600px;
	flex: 1;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.book-bounce {
	height: auto;
	width: 100%;
	max-width: 380px;
	animation: floatBounce 4s ease-in-out infinite;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
	cursor: pointer;
	transition: transform 0.3s ease;
}

.book-bounce:hover {
	transform: scale(1.05);
}

@keyframes floatBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.hero h4 {
	color: var(--primary-orange);
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
	font-size: 0.95rem;
	font-weight: 600;
}

.hero h1 {
	font-size: 3.8rem;
	margin-bottom: 22px;
	line-height: 1.1;
	text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero p {
	font-size: 1.2rem;
	font-weight: 300;
	max-width: 650px;
	color: rgba(255, 255, 255, 0.9);
}

/* --- SUCCESS BANNER --- */
.success-banner {
	background-color: var(--white);
	color: var(--text-dark);
	padding: 85px 5vw;
	position: relative;
	z-index: 5;
	box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.banner-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}

.banner-left {
	display: flex;
	align-items: center;
	gap: 45px;
}

.banner-book-img {
	width: 140px;
	height: auto;
	box-shadow: none !important;
	filter: none !important;
	transition: transform 0.4s ease;
}

.success-banner:hover .banner-book-img {
	transform: translateY(-8px) scale(1.08);
	box-shadow: none !important;
	filter: none !important;
}

.banner-tag {
	color: var(--primary-orange);
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-weight: 600;
	display: block;
	margin-bottom: 10px;
}

.banner-text h3 {
	font-size: 2.6rem;
	margin-bottom: 12px;
	font-family: 'Playfair Display', serif;
	color: var(--text-dark);
}

.banner-text p {
	color: var(--text-light);
	font-size: 1.15rem;
	font-weight: 400;
	max-width: 650px;
}

.banner-action {
	display: flex;
	gap: 15px;
	align-items: center;
}

.banner-btn {
	border-color: var(--primary-orange);
	color: var(--primary-orange);
	padding: 14px 35px;
	font-size: 0.95rem;
	white-space: nowrap;
}

.banner-btn:hover {
	color: var(--white);
	background-color: var(--primary-orange);
}

/* --- SECTIONS COMMON --- */
section {
	padding: 100px 5vw;
}

.section-header {
	text-align: center;
	margin-bottom: 70px;
}

.section-header h2 {
	font-size: 3rem;
	color: var(--text-dark);
	position: relative;
	display: inline-block;
}

.section-header h2::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background: var(--primary-orange);
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.section-header p {
	margin-top: 25px;
	color: var(--text-light);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* --- DOCUMENTAIRE --- */
.documentary {
	background-color: var(--dark-brown);
	color: var(--white);
	padding-top: 50px;
}

.documentary .section-header h2 {
	color: var(--white);
}

.doc-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr;
	gap: 40px;
	max-width: 1300px;
	margin: 0 auto;
	align-items: start;
}

.video-wrapper {
	position: relative;
	border-radius: var(--radius);
	padding: 10px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	width: 100%;
	max-width: 100%;
}

.video-player {
	position: relative;
	border-radius: calc(var(--radius) - 5px);
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 — sabit oran, fullscreen sonrası büyümez */
	background: #000;
}

.video-player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	border: 0;
	display: block;
}

.playlist {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--radius);
	padding: 30px;
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
}

.playlist h3 {
	margin-bottom: 25px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.playlist h3 span {
	font-size: 0.8rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 4px 10px;
	border-radius: 20px;
	font-weight: 400;
}

.playlist-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-grow: 1;
	max-height: 420px;
	overflow-y: auto;
	padding-right: 4px;
}

.playlist-item {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 10px;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s ease-out, color 0.15s ease-out;
	border-radius: 8px;
}

.playlist-item:hover,
.playlist-item.active {
	background: rgba(255, 106, 0, 0.15);
	color: var(--primary-orange);
}

.playlist-thumb {
	position: relative;
	flex-shrink: 0;
	width: 96px;
	height: 54px;
	border-radius: 6px;
	overflow: hidden;
	background: #111;
}

.playlist-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.playlist-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.playlist-title {
	font-weight: 500;
	font-size: 0.95rem;
	line-height: 1.35;
}

.playlist-duration {
	opacity: 0.6;
	font-size: 0.85rem;
}

.doc-playlist-cta {
	margin-top: 24px;
	display: inline-block;
	text-align: center;
	width: 100%;
	border-color: rgba(255,255,255,0.35);
	color: #fff;
	box-sizing: border-box;
}

/* --- EXPOSITIONS --- */
.expositions {
	background-color: var(--light-bg);
	padding-bottom: 60px;
}

.expo-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.expo-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
}

.expo-row:nth-child(even) {
	direction: rtl;
}

.expo-row:nth-child(even) .expo-content {
	direction: ltr;
}

.expo-image-box {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	height: 450px;
}

.expo-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.expo-row:hover .expo-image-box img {
	transform: scale(1.05);
}

.expo-content {
	padding: 20px;
}

.expo-tag {
	display: inline-block;
	background: rgba(255, 106, 0, 0.1);
	color: var(--primary-orange);
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.expo-content h3 {
	font-size: 2.5rem;
	color: var(--text-dark);
	margin-bottom: 20px;
	line-height: 1.2;
}

.expo-content p {
	color: var(--text-light);
	font-size: 1.1rem;
	margin-bottom: 35px;
	line-height: 1.7;
}

.expo-content .btn-outline {
	margin-right: 20px;
	margin-bottom: 12px;
}

.expo-content .discover-link {
	display: inline-block;
	color: var(--primary-orange);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	border-bottom: 1px solid transparent;
	transition: var(--fast-transition);
}

.expo-content .discover-link:hover {
	border-bottom-color: var(--primary-orange);
}

/* --- GALLERY STRIP --- */
.expo-strip-container {
	margin-top: 100px;
	text-align: center;
}

.expo-strip {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.expo-strip img {
	width: calc(25% - 20px);
	min-width: 220px;
	height: 220px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	transition: var(--transition);
	cursor: pointer;
}

.expo-strip img:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.strip-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	color: var(--text-dark);
	margin-top: 20px;
}

/* --- NOTRE HISTOIRE TEASER --- */
.histoire-teaser {
	background: linear-gradient(160deg, var(--gray-bg) 0%, var(--light-bg) 55%, #fff 100%);
	padding: 90px 5vw;
	text-align: center;
}

.histoire-teaser-inner {
	max-width: 820px;
	margin: 0 auto;
}

.histoire-eyebrow {
	display: block;
	color: var(--primary-orange);
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
	margin-bottom: 16px;
}

.histoire-teaser h2 {
	font-size: clamp(2.2rem, 4vw, 3rem);
	color: var(--text-dark);
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	padding-bottom: 18px;
}

.histoire-teaser h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: var(--primary-orange);
	border-radius: 2px;
}

.histoire-teaser p {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.75;
	margin: 0 auto 18px;
	max-width: 720px;
}

.histoire-teaser p:last-of-type {
	margin-bottom: 36px;
}

.histoire-teaser .btn-outline {
	padding: 14px 36px;
}

.discover-more {
	text-align: center;
	margin-top: 40px;
}

.discover-more a {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	color: var(--primary-orange);
	font-style: italic;
	position: relative;
}

.discover-more a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--primary-orange);
	bottom: -5px;
	left: 0;
	transform: scaleX(1);
	transform-origin: right;
	transition: transform 0.4s ease;
}

.discover-more a:hover::after {
	transform: scaleX(0);
	transform-origin: left;
}

/* --- CONTACT --- */
.contact-section {
	background-color: var(--gray-bg);
	padding: 100px 5vw;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto;
	background: var(--white);
	padding: 60px;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.contact-form h3,
.contact-info h3 {
	font-size: 2.2rem;
	margin-bottom: 40px;
	color: var(--text-dark);
	font-family: 'Playfair Display', serif;
}

form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

input,
textarea {
	width: 100%;
	padding: 18px 20px;
	background: var(--light-bg);
	border: 1px solid rgba(0,0,0,0.1);
	color: var(--text-dark);
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: var(--transition);
}

input:focus,
textarea:focus {
	outline: none;
	border-color: var(--primary-orange);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

button[type="submit"] {
	background: var(--primary-orange);
	color: var(--white);
	border: none;
	padding: 18px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	border-radius: 12px;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1px;
}

button[type="submit"]:hover {
	background: var(--primary-hover);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

.person {
	margin-bottom: 40px;
	padding-left: 20px;
	border-left: 3px solid var(--primary-orange);
}

.person h4 {
	font-family: 'Inter', sans-serif;
	font-size: 1.3rem;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.person p {
	color: var(--text-light);
	margin-bottom: 8px;
	font-size: 1.05rem;
}

.person a {
	color: var(--primary-orange);
	font-weight: 500;
}

.person a:hover {
	text-decoration: underline;
}

@media (max-width: 992px) {
	.doc-grid,
	.contact-container {
		grid-template-columns: 1fr;
	}

	.playlist-items {
		max-height: none;
	}

	.expo-row,
	.expo-row:nth-child(even) {
		grid-template-columns: 1fr;
		direction: ltr;
		gap: 30px;
	}

	.expo-row:nth-child(even) .expo-content {
		direction: ltr;
	}

	.hero h1 {
		font-size: 2.8rem;
	}

	.contact-container {
		padding: 40px 20px;
		gap: 50px;
	}

	.expo-strip img {
		width: calc(50% - 20px);
	}

	.hero-books-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.hero-book.featured {
		transform: none;
	}

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

	.hero-book.featured .book-bounce,
	.hero-book.standard .book-bounce {
		max-width: 250px;
	}

	.banner-content {
		flex-direction: column;
		text-align: center;
	}

	.banner-content,
	.banner-left {
		flex-direction: column;
		text-align: center;
		gap: 25px;
	}

	.banner-action {
		justify-content: center;
	}
}

@media (max-width: 500px) {
	.expo-strip img {
		width: 100%;
	}
}
