/* ===== RESET & BASE ===== */
@font-face {
	font-family: "Circular";
	src: url("assets/fonts/Circular.woff2") format("woff2"),
	     url("assets/fonts/Circular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

* { box-sizing: border-box; }

html { min-height: 100%; position: relative; }

body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #222;
	background: #eee;
	overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.sr-only, .screen-reader-text {
	clip: rect(0,0,0,0); border: 0; height: 1px; margin: -1px;
	overflow: hidden; padding: 0; position: absolute; width: 1px;
}
.sr-only-focusable:focus {
	clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto;
}

/* ===== HEADER ===== */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header-left {
	display: flex;
	align-items: flex-start;
	position: relative;
	z-index: 101;
}

.header-home-link {
	display: block;
	position: fixed;
	top: 90px;
	left: 0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	z-index: 101;
}

.header-logo {
	height: auto;
	width: 50px;
	padding: 10px;
}

/* ===== HAMBURGER MENU ===== */
.menu-button {
	background: #222;
	border: none;
	cursor: pointer;
	padding: 25px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 7px;
	z-index: 102;
	position: fixed;
	top: 0;
	left: 0;
}

.menu-button .bar {
	display: block;
	width: 25px;
	height: 2px;
	background: #fff;
	transition: all 0.3s ease;
}

.menu-button-close {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 110;
	width: 80px;
	height: 80px;
	padding: 0;
	gap: 0;
	background: #222;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-button-close .bar {
	position: absolute;
	width: 30px;
	height: 2px;
	background: #fff;
	top: 50%;
	left: 50%;
}

.menu-button-close .bar:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}
.menu-button-close .bar:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===== NAVIGATION OVERLAY ===== */
.navigation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #222;
	z-index: 105;
	display: none;
	overflow-y: auto;
}

.navigation.open {
	display: flex;
}

.navigation-container {
	width: 100%;
	display: flex;
}

.navigation-items {
	display: flex;
	width: 100%;
	position: relative;
}

.navigation-items nav {
	padding: 100px 60px 40px;
	z-index: 2;
	position: relative;
	flex: 1;
}

.header-language {
	margin-bottom: 2rem;
}

.header-language a {
	color: #999;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	transition: color 0.3s;
}

.header-language a:hover { color: #fff; }

.header-nav-main ul {
	display: flex;
	flex-direction: column;
}

.header-nav-main li {
	margin-bottom: 0.5rem;
}

.header-nav-main a {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: opacity 0.3s;
	display: inline-block;
}

.header-nav-main a:hover {
	opacity: 0.6;
}

.header-social {
	margin-top: 2rem;
}

.header-social ul {
	display: flex;
	gap: 15px;
}

.header-social a {
	color: #fff;
	font-size: 1.5rem;
	transition: opacity 0.3s;
}

.header-social a:hover { opacity: 0.6; }

/* Nav background images */
.nav-images {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	z-index: 1;
}

.main-nav-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.main-nav-image.active {
	opacity: 1;
}

/* ===== HERO CAROUSEL ===== */
.header-carousel {
	width: 100%;
	position: relative;
}

.header-slide {
	width: 100%;
	height: 56vw;
	max-height: 806px;
	background-image: url('assets/img/hero-slide.webp');
	background-size: cover;
	background-position: center;
	position: relative;
}

.header-slide .slide-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

/* ===== HOME GRID ===== */
section {
	padding: 0;
}

.home-row {
	display: flex;
	width: 100%;
}

.home-row .left,
.home-row .right {
	flex: 1;
	min-width: 0;
}

.home-row .short-items {
	display: flex;
	flex-direction: column;
}

.home-row .short-items .home-box-link {
	flex: 1;
}

.home-box-link {
	display: block;
	position: relative;
	overflow: hidden;
}

.heading-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.parallax-wrapper {
	width: 100%;
	height: 100%;
}

.item {
	width: 100%;
	overflow: hidden;
}

.item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.home-box-link:hover .item img {
	transform: scale(1.05);
}

.item-tall {
	height: 100%;
}

.item-tall img {
	aspect-ratio: 926 / 1388;
}

.item-short img {
	aspect-ratio: 926 / 678;
}

/* Labels on home boxes */
.label {
	position: absolute;
	z-index: 2;
	padding: 15px 25px;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.label p {
	margin: 0;
	line-height: 1.4;
}

.label strong {
	font-weight: 700;
}

.label em {
	font-style: italic;
}

.bottomRight {
	bottom: 20px;
	right: 0;
	background: #222;
	padding: 12px 25px;
}

.topRight {
	top: 20px;
	right: 0;
	background: #222;
	padding: 12px 25px;
}

.bottomLeft {
	bottom: 20px;
	left: 0;
	background: #222;
	padding: 12px 25px;
}

.center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	background: rgba(34, 34, 34, 0.85);
	padding: 20px 30px;
}

/* ===== FOOTER ===== */
footer {
	background-color: #0a0907;
	background-image: url('assets/img/footer-bg.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 60px 0 40px;
	text-align: center;
}

footer .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo > img {
	width: 200px;
	margin: 0 auto 20px;
}

.footer-social-nav ul {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.footer-social-nav a {
	color: #fff;
	font-size: 1.4rem;
	transition: opacity 0.3s;
}

.footer-social-nav a:hover { opacity: 0.6; }

.footer-nav {
	margin: 30px 0 20px;
}

.footer-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}

.footer-nav li {
	display: inline;
}

.footer-nav li:not(:last-child)::after {
	content: " | ";
	color: #999;
	margin: 0 5px;
}

.footer-nav a {
	color: #ccc;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: color 0.3s;
}

.footer-nav a:hover { color: #fff; }

.copyright-text {
	color: #999;
	font-size: 0.7rem;
	line-height: 1.8;
}

.copyright-text p { margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
	.header-slide {
		height: 117vw;
		max-height: 936px;
		background-image: url('assets/img/hero-slide-mobile.webp');
	}

	.home-row {
		flex-direction: column;
	}

	.nav-images {
		display: none;
	}

	.header-nav-main a {
		font-size: 1.8rem;
	}

	.navigation-items nav {
		padding: 100px 30px 40px;
	}

	.item-tall img {
		aspect-ratio: auto;
	}

	.item-short img {
		aspect-ratio: auto;
	}
}

/* ===== PARIS PAGE STYLES ===== */
.paris-page {
	background: #f3f4ed;
	color: #282123;
	font-family: "forevs", serif;
	line-height: 1.7;
	padding-top: 0;
}

.paris-header {
	position: relative;
}

.paris-hero {
	display: block;
	height: 100vh;
	margin: 0 auto;
	max-height: 140vw;
	max-width: 100vw;
	position: relative;
	width: max-content;
	font-weight: normal;
}

.paris-hero img {
	height: 100%;
	max-width: 100vw;
	object-fit: cover;
	width: auto;
}

.paris-hero::before,
.paris-hero::after {
	bottom: 0;
	content: "";
	position: absolute;
	top: 0;
	width: 3.75rem;
	z-index: 1;
}

.paris-hero::before {
	background-image: linear-gradient(to right, #f3f4ed, transparent);
	left: 0;
}

.paris-hero::after {
	background-image: linear-gradient(to left, #f3f4ed, transparent);
	right: 0;
}

.paris-arrow {
	bottom: 0.9375rem;
	filter: invert(1);
	position: absolute;
}

.paris-arrow-left { left: 1.25rem; }
.paris-arrow-right { right: 1.25rem; }

.paris-container {
	margin: 0 auto;
	max-width: 1230px;
	padding: 0 15px;
	width: 100%;
}

.paris-dark {
	background: #282123;
	color: #f3f4ed;
}

.paris-info {
	padding: 5.625rem 0;
	text-align: center;
}

.paris-note {
	font-size: 0.875rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
}

.paris-title {
	font-size: 3.25rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.paris-title span { display: inline-block; }

.paris-content p {
	font-size: 1.25rem;
	letter-spacing: 0.04em;
	margin: 1em auto;
	max-width: 57.5rem;
}

.paris-content p span { display: inline-block; }

.paris-content a { text-decoration: underline; }

.paris-view {
	margin-top: 2rem;
}

.paris-view img {
	margin: 1.875rem auto 0;
	display: block;
}

.paris-view .paris-note {
	text-decoration: none;
	color: #f3f4ed;
}

.paris-tour {
	padding: 5.625rem 0 0;
}

.paris-wrap {
	align-items: center;
	display: flex;
	gap: 5.625rem;
}

.paris-wrap > div {
	padding-bottom: 5.625rem;
}

.paris-side-title {
	flex-basis: 17.5rem;
	width: 20rem;
}

.paris-side-title img {
	width: 100%;
}

.paris-tour-content {
	border-left: 2px solid #282123;
	flex: 1;
	padding-left: 5.625rem;
	text-align: center;
}

.paris-venue-logo {
	margin: 0 auto;
	width: 8.75rem;
}

.paris-dates {
	font-size: 3rem;
	margin: 0 auto;
	text-transform: uppercase;
	width: max-content;
}

.paris-dates p {
	border-bottom: 2px solid #282123;
	line-height: 1;
	margin: 0;
	padding: 0.5em 0;
}

.paris-dates p:last-child { border: none; }

.paris-partners {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	justify-content: center;
	margin: 0 auto;
	max-width: 100%;
	text-align: center;
	width: 25rem;
}

.paris-partners p {
	margin: 1em 0 0;
	text-transform: uppercase;
}

.paris-partners > div {
	flex: 1;
	padding: 1.25rem 1.25rem 0;
}

.paris-partners > div + div {
	border-left: 2px solid #282123;
}

.paris-partners img {
	max-height: 3rem;
}

@media screen and (max-width: 1200px) {
	.paris-wrap { gap: 2.5rem; }
	.paris-side-title { flex-basis: 16.25rem; width: 16.25rem; }
	.paris-tour-content { padding-left: 2.5rem; }
}

@media screen and (max-width: 800px) {
	.paris-hero { padding-top: 12.5rem; }
	.paris-arrow { display: none; }
	.paris-title { font-size: 2.625rem; }
	.paris-content p { font-size: 1.875rem; }
	.paris-side-title { flex-basis: 10rem; width: 10rem; }
	.paris-tour-content { padding-top: 5rem; }
	.paris-dates { font-size: 1.5rem; margin-top: 3.125rem; }
}

/* ===== SUBPAGES (placeholder) ===== */
.subpage-header {
	background: #222;
	color: #fff;
	padding: 120px 20px 60px;
	text-align: center;
	min-height: 40vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.subpage-header h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
}

.subpage-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 20px;
	text-align: center;
}

.subpage-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 1.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-banner {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.about-banner .banner-desktop {
	width: 100%;
	height: 50vw;
	max-height: 600px;
	background-size: cover;
	background-position: center;
}

.about-banner .banner-mobile {
	display: none;
	width: 100%;
}

.about-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

.about-container .content-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-align: center;
	margin: 0 0 30px;
	color: #222;
}

/* Sub-navigation */
.about-subnav {
	text-align: center;
	margin-bottom: 50px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
}

.about-subnav ul {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.about-subnav a {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #888;
	padding-bottom: 15px;
	border-bottom: 2px solid transparent;
	transition: color 0.3s, border-color 0.3s;
}

.about-subnav a:hover,
.about-subnav a.active {
	color: #222;
	border-bottom-color: #222;
}

/* Biography content */
.about-content h3.section-title {
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 40px;
	color: #222;
}

.year-box {
	display: inline-block;
	background: #222;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	padding: 10px 25px;
	margin: 40px 0 30px;
	text-transform: uppercase;
}

.bio-columns {
	display: flex;
	gap: 40px;
	margin-bottom: 30px;
}

.bio-columns .col {
	flex: 1;
	min-width: 0;
}

.bio-columns .col p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #444;
	margin: 0 0 1.2rem;
}

.bio-images {
	display: flex;
	gap: 20px;
	margin: 30px 0 50px;
	flex-wrap: wrap;
}

.bio-images img {
	flex: 1;
	min-width: 200px;
	max-width: 50%;
	object-fit: cover;
	border-radius: 0;
}

.bio-images.three-col img {
	flex: 1;
	min-width: 150px;
	max-width: 33.33%;
}

.bio-images.five-col img {
	flex: 1;
	min-width: 120px;
	max-width: 20%;
}

/* Responsive about page */
@media (max-width: 767px) {
	.about-banner .banner-desktop {
		display: none;
	}

	.about-banner .banner-mobile {
		display: block;
	}

	.about-subnav ul {
		gap: 15px;
	}

	.about-subnav a {
		font-size: 0.75rem;
	}

	.bio-columns {
		flex-direction: column;
		gap: 0;
	}

	.bio-images {
		flex-direction: column;
	}

	.bio-images img,
	.bio-images.three-col img,
	.bio-images.five-col img {
		max-width: 100%;
	}
}

/* ===== NEWS / ACTUALITÉS PAGE ===== */
.news-banner {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.news-banner-desktop {
	width: 100%;
	height: 50vw;
	max-height: 600px;
	background-size: cover;
	background-position: center top;
}

.news-banner-mobile {
	display: none;
	width: 100%;
}

.news-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

.news-page-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #222;
	margin: 0 0 40px;
	text-align: center;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.news-article {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid #ddd;
}

.news-article:last-child {
	border-bottom: none;
}

.news-article-image {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.news-article-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.news-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.news-article-image a:hover img {
	transform: scale(1.05);
}

.news-article-details {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 50px;
}

.news-article-heading {
	text-decoration: none;
	color: #222;
	transition: opacity 0.3s;
}

.news-article-heading:hover {
	opacity: 0.6;
}

.news-article-heading h3 {
	font-size: clamp(0.95rem, 1.5vw, 1.3rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.4;
	margin: 0 0 12px;
}

.news-article-date {
	font-size: 0.8rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 20px;
}

.news-read-more {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #222;
	border-bottom: 2px solid #222;
	padding-bottom: 2px;
	transition: opacity 0.3s;
	align-self: flex-start;
}

.news-read-more:hover {
	opacity: 0.6;
}

/* Responsive News */
@media (max-width: 767px) {
	.news-banner-desktop {
		display: none;
	}

	.news-banner-mobile {
		display: block;
	}

	.news-article {
		flex-direction: column;
	}

	.news-article-even {
		flex-direction: column-reverse;
	}

	.news-article-image {
		height: 220px;
	}

	.news-article-details {
		padding: 25px 20px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.news-article-details {
		padding: 30px;
	}

	.news-article-heading h3 {
		font-size: 1rem;
	}
}

/* ===== MUSIQUE PAGE ===== */
.musique-banner {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.musique-banner-desktop {
	width: 100%;
	height: 56vw;
	max-height: 600px;
	background-size: cover;
	background-position: center;
}

.musique-banner-mobile {
	display: none;
	width: 100%;
}

.musique-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px 60px;
}

.musique-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #222;
	margin: 50px 0 20px;
}

/* Sub-navigation */
.musique-subnav ul {
	display: flex;
	gap: 25px;
	margin-bottom: 50px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
}

.musique-subnav a {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #888;
	font-weight: 700;
	transition: color 0.3s;
	padding-bottom: 15px;
	position: relative;
}

.musique-subnav a.active,
.musique-subnav a:hover {
	color: #222;
}

.musique-subnav a.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #222;
}

/* Featured Albums */
.musique-featured {
	margin-bottom: 60px;
}

.featured-album {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 50px;
}

.featured-album-reverse {
	flex-direction: row-reverse;
}

.featured-album-text {
	flex: 1;
}

.featured-album-text h3 {
	font-size: clamp(1.3rem, 2.5vw, 2rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 8px;
	color: #222;
}

.featured-album-subtitle {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 20px;
	font-style: italic;
}

.featured-album-buttons {
	display: flex;
	gap: 12px;
}

.featured-album-buttons a {
	display: inline-block;
	padding: 10px 28px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border: 2px solid #222;
	transition: all 0.3s;
}

.btn-listen {
	background: #222;
	color: #fff;
}

.btn-listen:hover {
	background: #444;
	border-color: #444;
}

.btn-details {
	background: transparent;
	color: #222;
}

.btn-details:hover {
	background: #222;
	color: #fff;
}

.featured-album-image {
	flex: 0 0 auto;
	width: 45%;
	max-width: 500px;
	overflow: hidden;
}

.featured-album-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.featured-album-image:hover img {
	transform: scale(1.03);
}

/* Album Grid */
.album-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 30px;
}

.album-card a {
	display: block;
	transition: transform 0.3s;
}

.album-card a:hover {
	transform: translateY(-5px);
}

.album-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	background: #ddd;
}

.album-card h4 {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #222;
	margin: 10px 0 0;
	line-height: 1.4;
}

/* ===== BOUTIQUE PAGE ===== */
.boutique-banner {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.boutique-banner-desktop {
	width: 100%;
	height: 50vw;
	max-height: 600px;
	background-size: cover;
	background-position: center;
}

.boutique-banner-mobile {
	display: none;
	width: 100%;
}

.boutique-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px 60px;
}

.boutique-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #222;
	margin: 50px 0 10px;
	text-align: center;
}

.boutique-subtitle {
	text-align: center;
	font-size: 0.85rem;
	color: #888;
	letter-spacing: 0.1em;
	margin: 0 0 40px;
}

.boutique-subtitle a {
	color: #222;
	font-weight: 700;
	border-bottom: 1px solid #222;
	transition: opacity 0.3s;
}

.boutique-subtitle a:hover {
	opacity: 0.6;
}

/* Collection heading */
.collection-heading {
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #222;
	text-align: center;
	margin: 50px 0 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.product-card {
	text-align: center;
}

.product-card a {
	display: block;
	transition: transform 0.3s;
}

.product-card a:hover {
	transform: translateY(-5px);
}

.product-card-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	background: #f5f5f5;
}

.product-card-title {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #222;
	margin: 12px 0 5px;
	line-height: 1.4;
}

.product-card-price {
	font-size: 0.85rem;
	color: #666;
	margin: 0;
}

.product-card-badge {
	display: inline-block;
	background: #222;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 3px 10px;
	margin-top: 6px;
}

/* Shop All button */
.shop-all-btn {
	display: block;
	width: fit-content;
	margin: 30px auto 50px;
	padding: 14px 40px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	border: 2px solid #222;
	color: #222;
	background: transparent;
	transition: all 0.3s;
	text-decoration: none;
}

.shop-all-btn:hover {
	background: #222;
	color: #fff;
}

/* Featured product banner */
.boutique-featured {
	display: flex;
	margin: 40px 0;
	overflow: hidden;
}

.boutique-featured-half {
	flex: 1;
	position: relative;
	overflow: hidden;
	min-height: 300px;
}

.boutique-featured-half img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.boutique-featured-half:hover img {
	transform: scale(1.03);
}

.boutique-featured-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.boutique-featured-label span {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	margin-bottom: 5px;
	font-weight: 400;
}

/* Responsive boutique */
@media (max-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.boutique-banner-desktop {
		display: none;
	}

	.boutique-banner-mobile {
		display: block;
	}

	.boutique-container {
		padding: 0 15px 40px;
	}

	.boutique-title {
		margin: 30px 0 8px;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.product-card-title {
		font-size: 0.7rem;
	}

	.product-card-price {
		font-size: 0.75rem;
	}

	.boutique-featured {
		flex-direction: column;
	}

	.boutique-featured-half {
		min-height: 200px;
	}

	.boutique-featured-label {
		font-size: 1.3rem;
	}

	.collection-heading {
		font-size: 1rem;
		margin: 30px 0 20px;
	}
}

/* Musique page responsive */
@media (max-width: 767px) {
	.musique-banner-desktop {
		display: none;
	}

	.musique-banner-mobile {
		display: block;
	}

	.musique-container {
		padding: 0 20px 40px;
	}

	.musique-title {
		margin: 30px 0 15px;
	}

	.musique-subnav ul {
		margin-bottom: 30px;
	}

	.featured-album,
	.featured-album-reverse {
		flex-direction: column;
		gap: 20px;
	}

	.featured-album-image {
		width: 100%;
		max-width: 100%;
	}

	.featured-album-text h3 {
		font-size: 1.3rem;
	}

	.album-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 15px;
	}

	.album-card h4 {
		font-size: 0.7rem;
	}
}

/* ===== VIDEO PAGE ===== */
.video-banner {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.video-banner-desktop {
	width: 100%;
	height: 50vw;
	max-height: 600px;
	background-size: cover;
	background-position: center;
}

.video-banner-mobile {
	display: none;
	width: 100%;
}

.video-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

.video-page-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #222;
	margin: 0 0 40px;
	text-align: center;
}

/* Featured Videos */
.featured-videos {
	margin-bottom: 50px;
}

.featured-video {
	display: flex;
	align-items: stretch;
	margin-bottom: 0;
	border-bottom: 1px solid #ddd;
}

.featured-video:last-child {
	border-bottom: none;
}

.featured-video-reverse {
	flex-direction: row-reverse;
}

.featured-video-text {
	flex: 0 0 35%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 40px;
	background: #fff;
}

.featured-video-text .video-play-btn {
	background: none;
	border: none;
	cursor: pointer;
	text-align: center;
	padding: 0;
	font-family: inherit;
}

.featured-video-text strong {
	font-size: clamp(0.85rem, 1.3vw, 1.1rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #222;
	transition: opacity 0.3s;
}

.featured-video-text .video-play-btn:hover strong {
	opacity: 0.6;
}

.featured-video-image {
	flex: 0 0 65%;
	position: relative;
	overflow: hidden;
}

.featured-video-image .video-play-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
}

.featured-video-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.featured-video-image .video-play-btn:hover img {
	transform: scale(1.05);
}

.play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.2rem;
	transition: background 0.3s, transform 0.3s;
	pointer-events: none;
}

.video-play-btn:hover .play-icon {
	background: rgba(0, 0, 0, 0.8);
	transform: translate(-50%, -50%) scale(1.1);
}

/* Video Grid */
.video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.video-grid-item {
	position: relative;
}

.video-grid-item .video-play-btn {
	display: block;
	width: 100%;
	background: #fff;
	border: none;
	cursor: pointer;
	padding: 0;
	text-align: left;
	font-family: inherit;
	overflow: hidden;
}

.video-grid-item .video-play-btn img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.video-grid-item .video-play-btn:hover img {
	transform: scale(1.05);
}

.video-grid-item .play-icon {
	width: 45px;
	height: 45px;
	font-size: 0.9rem;
}

.video-grid-item strong {
	display: block;
	padding: 12px 10px 15px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.4;
	color: #222;
}

.video-grid-item .video-play-btn:hover strong {
	opacity: 0.6;
}

/* Video Modal */
.video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
	align-items: center;
	justify-content: center;
}

.video-modal.active {
	display: flex;
}

.video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
	position: relative;
	width: 90%;
	max-width: 960px;
	z-index: 201;
}

.video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	padding: 5px 10px;
	line-height: 1;
	transition: opacity 0.3s;
}

.video-modal-close:hover {
	opacity: 0.6;
}

.video-modal-player {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #000;
}

.video-modal-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Responsive Video Page */
@media (max-width: 767px) {
	.video-banner-desktop {
		display: none;
	}

	.video-banner-mobile {
		display: block;
	}

	.featured-video,
	.featured-video-reverse {
		flex-direction: column;
	}

	.featured-video-text {
		flex: none;
		padding: 20px;
	}

	.featured-video-image {
		flex: none;
	}

	.video-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.video-grid-item .play-icon {
		width: 40px;
		height: 40px;
		font-size: 0.8rem;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.video-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.featured-video-text {
		padding: 20px 25px;
	}
}

/* ===== TICKET PAGE ===== */
.tkt-page {
	background: #f5f5f5;
}

/* Hero */
.tkt-hero {
	width: 100%;
	height: 300px;
	background-image: url('assets/img/hero-slide.webp');
	background-size: cover;
	background-position: center 30%;
	position: relative;
}

.tkt-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.tkt-hero-content {
	text-align: center;
	color: #fff;
}

.tkt-hero-subtitle {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 12px;
	opacity: 0.85;
}

.tkt-hero-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.15;
}

.tkt-hero-venue {
	display: inline-block;
	margin-top: 14px;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	opacity: 0.8;
}

.tkt-hero-venue i {
	margin-right: 5px;
}

/* Wrapper: 2-col desktop */
.tkt-wrapper {
	max-width: 1260px;
	margin: 0 auto;
	padding: 30px 20px 80px;
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.tkt-main-col {
	flex: 1;
	min-width: 0;
}

/* Sections */
.tkt-section {
	background: #fff;
	border-radius: 10px;
	padding: 28px 28px 24px;
	margin-bottom: 24px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.tkt-section-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #222;
	margin: 0 0 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tkt-section-title i {
	color: #888;
	font-size: 0.95rem;
}

/* Date Selector */
.tkt-dates-scroll {
	overflow-x: auto;
	margin: 0 -28px;
	padding: 0 28px 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.tkt-dates-scroll::-webkit-scrollbar {
	height: 4px;
}

.tkt-dates-scroll::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 4px;
}

.tkt-dates {
	display: flex;
	gap: 10px;
	width: max-content;
}

.tkt-date-card {
	flex-shrink: 0;
	width: 100px;
	padding: 14px 8px 12px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-family: inherit;
}

.tkt-date-card:hover {
	border-color: #222;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tkt-date-card.active {
	border-color: #222;
	background: #222;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.tkt-date-day {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	opacity: 0.6;
}

.tkt-date-num {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.1;
}

.tkt-date-month {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.tkt-date-price {
	font-size: 0.6rem;
	margin-top: 6px;
	opacity: 0.65;
	white-space: nowrap;
}

.tkt-date-card.active .tkt-date-day,
.tkt-date-card.active .tkt-date-price {
	opacity: 0.8;
}

/* Venue Map */
.tkt-map-container {
	position: relative;
}

.tkt-venue-svg {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.tkt-map-section {
	transition: fill-opacity 0.2s ease, stroke-width 0.2s ease;
}

.tkt-map-tooltip {
	position: absolute;
	background: #222;
	color: #fff;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 0.8rem;
	pointer-events: none;
	z-index: 10;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tkt-map-tooltip strong {
	display: block;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.tkt-map-tooltip span {
	font-size: 0.9rem;
	font-weight: 700;
	color: #f1c40f;
}

.tkt-map-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin-top: 16px;
	justify-content: center;
}

.tkt-legend-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	color: #666;
	font-weight: 600;
}

.tkt-legend-dot {
	width: 12px;
	height: 12px;
	border-radius: 3px;
	flex-shrink: 0;
}

/* Category Cards */
.tkt-categories {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.tkt-cat-card {
	display: flex;
	border: 2px solid #e8e8e8;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: #fff;
	transition: all 0.2s ease;
	text-align: left;
	font-family: inherit;
	padding: 0;
}

.tkt-cat-card:hover {
	border-color: #bbb;
	box-shadow: 0 3px 12px rgba(0,0,0,0.08);
	transform: translateY(-1px);
}

.tkt-cat-card.active {
	border-color: #222;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.tkt-cat-color {
	width: 6px;
	flex-shrink: 0;
}

.tkt-cat-info {
	padding: 14px 16px;
	flex: 1;
	min-width: 0;
}

.tkt-cat-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 4px;
}

.tkt-cat-name {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #222;
}

.tkt-cat-price {
	font-size: 1.1rem;
	font-weight: 700;
	color: #222;
	white-space: nowrap;
}

.tkt-cat-desc {
	font-size: 0.72rem;
	color: #888;
	margin: 0 0 6px;
	line-height: 1.4;
}

.tkt-cat-badge {
	font-size: 0.65rem;
	color: #27ae60;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tkt-cat-badge i {
	font-size: 0.6rem;
}

.tkt-cat-card.active .tkt-cat-name,
.tkt-cat-card.active .tkt-cat-price {
	color: #222;
}

.tkt-cat-card.active::after {
	content: '';
}

/* Quantity */
.tkt-quantity-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.tkt-quantity-control {
	display: flex;
	align-items: center;
	gap: 0;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

.tkt-qty-btn {
	width: 48px;
	height: 48px;
	background: #f9f9f9;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: #222;
	transition: background 0.2s;
	font-family: inherit;
}

.tkt-qty-btn:hover {
	background: #eee;
}

.tkt-qty-value {
	width: 56px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #222;
	border-left: 2px solid #e0e0e0;
	border-right: 2px solid #e0e0e0;
	line-height: 48px;
}

.tkt-add-cart {
	padding: 0 32px;
	height: 48px;
	background: #222;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s;
	font-family: inherit;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tkt-add-cart:hover {
	background: #444;
}

.tkt-qty-note {
	font-size: 0.72rem;
	color: #999;
	margin: 12px 0 0;
}

/* Accordion */
.tkt-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tkt-accordion-item {
	border-bottom: 1px solid #eee;
}

.tkt-accordion-item:last-child {
	border-bottom: none;
}

.tkt-accordion-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	color: #222;
	transition: color 0.2s;
}

.tkt-accordion-header span {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tkt-accordion-header span i {
	color: #888;
	width: 18px;
	text-align: center;
}

.tkt-accordion-header:hover {
	color: #666;
}

.tkt-accordion-icon {
	font-size: 0.7rem;
	color: #aaa;
	transition: transform 0.3s ease;
}

.tkt-accordion-item.open .tkt-accordion-icon {
	transform: rotate(180deg);
}

.tkt-accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	padding: 0 0 0 28px;
}

.tkt-accordion-item.open .tkt-accordion-body {
	max-height: 300px;
	padding: 0 0 16px 28px;
}

.tkt-accordion-body p {
	font-size: 0.82rem;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Sidebar */
.tkt-sidebar {
	width: 340px;
	flex-shrink: 0;
	position: sticky;
	top: 100px;
}

.tkt-summary-card {
	background: #fff;
	border-radius: 10px;
	padding: 28px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.tkt-summary-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #222;
	margin: 0 0 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid #222;
}

.tkt-summary-event {
	margin-bottom: 20px;
}

.tkt-summary-event strong {
	display: block;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	color: #222;
}

.tkt-summary-event span {
	font-size: 0.75rem;
	color: #888;
}

.tkt-summary-details {
	margin-bottom: 20px;
}

.tkt-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 8px 0;
}

.tkt-summary-label {
	font-size: 0.78rem;
	color: #888;
}

.tkt-summary-value {
	font-size: 0.85rem;
	font-weight: 600;
	color: #222;
}

.tkt-summary-divider {
	height: 1px;
	background: #eee;
	margin: 4px 0;
}

.tkt-summary-total-row .tkt-summary-label {
	font-size: 0.88rem;
	font-weight: 700;
	color: #222;
}

.tkt-summary-total {
	font-size: 1.3rem !important;
	font-weight: 700 !important;
	color: #222 !important;
}

.tkt-checkout-btn {
	width: 100%;
	padding: 16px;
	background: #222;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: background 0.2s;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.tkt-checkout-btn:hover:not(:disabled) {
	background: #444;
}

.tkt-checkout-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.tkt-checkout-note {
	font-size: 0.7rem;
	color: #999;
	text-align: center;
	margin: 10px 0 0;
}

.tkt-vendors {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	text-align: center;
}

.tkt-vendors-label {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #aaa;
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
}

.tkt-vendors-logos {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.tkt-vendor-badge {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #888;
	background: #f5f5f5;
	padding: 5px 12px;
	border-radius: 4px;
	border: 1px solid #e8e8e8;
}

/* Mobile bottom summary bar */
.tkt-mobile-summary {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-top: 1px solid #ddd;
	padding: 12px 20px;
	z-index: 90;
	box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.tkt-mobile-summary-info {
	display: flex;
	flex-direction: column;
}

.tkt-mobile-summary-total {
	font-size: 1.2rem;
	font-weight: 700;
	color: #222;
}

.tkt-mobile-summary-detail {
	font-size: 0.7rem;
	color: #888;
}

.tkt-mobile-checkout-btn {
	padding: 12px 28px;
	background: #222;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.tkt-mobile-checkout-btn:hover:not(:disabled) {
	background: #444;
}

.tkt-mobile-checkout-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* Responsive Ticket Page */
@media (max-width: 1023px) {
	.tkt-sidebar {
		display: none;
	}

	.tkt-mobile-summary {
		display: flex;
	}

	.tkt-page footer {
		padding-bottom: 80px;
	}

	.tkt-wrapper {
		padding-bottom: 100px;
	}
}

@media (max-width: 767px) {
	.tkt-hero {
		height: 220px;
	}

	.tkt-hero-subtitle {
		font-size: 0.65rem;
	}

	.tkt-section {
		padding: 20px 16px 18px;
		border-radius: 8px;
		margin-bottom: 16px;
	}

	.tkt-section-title {
		font-size: 0.88rem;
		margin-bottom: 16px;
	}

	.tkt-dates-scroll {
		margin: 0 -16px;
		padding: 0 16px 8px;
	}

	.tkt-date-card {
		width: 85px;
		padding: 10px 6px;
	}

	.tkt-date-num {
		font-size: 1.3rem;
	}

	.tkt-categories {
		grid-template-columns: 1fr;
	}

	.tkt-cat-info {
		padding: 12px 14px;
	}

	.tkt-quantity-row {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.tkt-quantity-control {
		align-self: center;
	}

	.tkt-add-cart {
		justify-content: center;
		width: 100%;
	}

	.tkt-wrapper {
		padding: 16px 12px 100px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.tkt-categories {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===== TICKET CTA BANNER ===== */
.cta-tickets {
	background: #222;
	color: #fff;
	padding: 40px 20px;
}
.cta-tickets-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.cta-tickets-text h3 {
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 5px;
}
.cta-tickets-text p {
	font-size: 0.9rem;
	color: #aaa;
	margin: 0;
}
.cta-tickets-btn {
	display: inline-block;
	background: #fff;
	color: #222;
	padding: 14px 35px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.cta-tickets-btn:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}
@media (max-width: 767px) {
	.cta-tickets-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* ===== BLOG PAGE ===== */
.blog-page {
	background: #f5f5f5;
}

.blog-hero {
	width: 100%;
	height: 50vw;
	max-height: 500px;
	background-image: url('assets/img/hero-slide.webp');
	background-size: cover;
	background-position: center 30%;
	position: relative;
}

.blog-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 50px;
}

.blog-hero-content {
	text-align: center;
	color: #fff;
}

.blog-hero-label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	background: rgba(255,255,255,0.15);
	padding: 6px 20px;
	margin-bottom: 16px;
	backdrop-filter: blur(4px);
}

.blog-hero-title {
	font-size: clamp(1.8rem, 5vw, 3.2rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 10px;
	line-height: 1.15;
}

.blog-hero-subtitle {
	font-size: clamp(0.85rem, 1.5vw, 1.1rem);
	opacity: 0.8;
	margin: 0;
	font-style: italic;
}

.blog-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 20px 60px;
}

/* Blog Tags & Dates */
.blog-tag {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	background: #222;
	color: #fff;
	padding: 4px 12px;
	margin-bottom: 10px;
}

.blog-date {
	display: block;
	font-size: 0.75rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

/* Featured Article */
.blog-featured {
	display: flex;
	background: #fff;
	margin-bottom: 50px;
	overflow: hidden;
}

.blog-featured-image {
	flex: 0 0 50%;
	overflow: hidden;
}

.blog-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-image img {
	transform: scale(1.03);
}

.blog-featured-content {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.blog-featured-content h2 {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.4;
	margin: 0 0 15px;
	color: #222;
}

.blog-featured-content h2 a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.blog-featured-content h2 a:hover {
	opacity: 0.6;
}

.blog-featured-content p {
	font-size: 0.9rem;
	line-height: 1.8;
	color: #555;
	margin: 0 0 20px;
}

.blog-read-more {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #222;
	border-bottom: 2px solid #222;
	padding-bottom: 2px;
	transition: opacity 0.3s;
	align-self: flex-start;
}

.blog-read-more:hover {
	opacity: 0.6;
}

/* Section Title */
.blog-section-title {
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #222;
	margin: 0 0 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid #222;
}

/* Blog Grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.blog-card {
	background: #fff;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.blog-card-image {
	overflow: hidden;
	height: 220px;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.05);
}

.blog-card-content {
	padding: 25px;
}

.blog-card-content h3 {
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.5;
	margin: 0 0 12px;
	color: #222;
}

.blog-card-content h3 a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.blog-card-content h3 a:hover {
	opacity: 0.6;
}

.blog-card-content p {
	font-size: 0.85rem;
	line-height: 1.7;
	color: #666;
	margin: 0 0 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Newsletter CTA */
.blog-newsletter {
	background: #222;
	color: #fff;
	text-align: center;
	padding: 50px 40px;
}

.blog-newsletter h2 {
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
}

.blog-newsletter p {
	font-size: 0.9rem;
	color: #aaa;
	margin: 0 0 25px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.blog-newsletter-btn {
	display: inline-block;
	background: #fff;
	color: #222;
	padding: 14px 35px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: all 0.3s ease;
}

.blog-newsletter-btn:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}

/* Blog Responsive */
@media (max-width: 767px) {
	.blog-hero {
		height: 60vw;
		min-height: 250px;
	}

	.blog-hero-overlay {
		padding-bottom: 30px;
	}

	.blog-featured {
		flex-direction: column;
	}

	.blog-featured-image {
		flex: none;
		height: 220px;
	}

	.blog-featured-content {
		padding: 25px 20px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.blog-card-image {
		height: 180px;
	}

	.blog-card-content {
		padding: 20px;
	}

	.blog-newsletter {
		padding: 35px 20px;
	}

	.blog-container {
		padding: 30px 15px 40px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.blog-featured-content {
		padding: 30px;
	}

	.blog-card-image {
		height: 200px;
	}
}
