/* ============================================
   EL KIKI SHOW — style.css
   Mobile-first. Breakpoints : 768px (tablette), 1024px (desktop)
   ============================================ */

:root {
	--navy: #2b2b6c;
	--navy-light: #3d3d8a;
	--pink-light: #f7c2d8;
	--pink: #ec6896;
	--pink-dark: #d94f7d;
	--cream: #fbf2e6;
	--white: #ffffff;

	--font-title: "Rozha One", serif;
	--font-body: "Quicksand", sans-serif;

	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;

	--container-w: 1160px;
}

/* ----- Reset ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--navy);
	background: var(--white);
	line-height: 1.5;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3 {
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 1.1;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
	width: 100%;
	max-width: var(--container-w);
	margin: 0 auto;
	padding: 0 20px;
}

/* ----- Boutons ----- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	white-space: nowrap;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-icon { font-size: 1rem; }

.btn-pink {
	background: var(--pink);
	color: var(--white);
	box-shadow: 0 6px 18px rgba(236, 104, 150, 0.4);
}

.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-header { display: none; }

/* ----- Header ----- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	background: var(--navy);
	padding: 14px 0;
	transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
	padding: 8px 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.logo img { height: 42px; width: auto; }

.main-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: min(78vw, 320px);
	height: 100vh;
	background: var(--navy-light);
	padding: 100px 32px 32px;
	transform: translateX(100%);
	transition: transform 0.35s ease;
	z-index: 999;
}

.main-nav.open { transform: translateX(0); }

.main-nav ul { display: flex; flex-direction: column; gap: 26px; }

.main-nav a {
	color: var(--white);
	font-weight: 600;
	font-size: 1.1rem;
	position: relative;
}

.main-nav a.active,
.main-nav a:hover { color: var(--pink-light); }

.burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	z-index: 1001;
}

.burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero + billetterie : fond confetti partagé, continu entre les deux sections ----- */
.hero-event-bg {
	background: var(--navy);
	position: relative;
	isolation: isolate;
}

.hero-event-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/formes-fond.svg") top center / 100% auto no-repeat;
	opacity: 0.15;
	z-index: -1;
	pointer-events: none;
}

.hero {
	padding: 130px 0 60px;
	position: relative;
	overflow: hidden;
}

.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.hero-title {
	font-size: clamp(3.2rem, 10vw, 5.2rem);
	color: var(--white);
}

.hero-title .accent { color: var(--pink); display: block; }

.hero-subtitle {
	font-family: var(--font-title);
	font-size: clamp(2rem, 5vw, 2.2rem);
	color: var(--white);
	margin-top: 18px;
}

.rainbow span {
	display: inline-block;
}
.rainbow span:nth-child(1) { color: #ff4d4d; }
.rainbow span:nth-child(2) { color: #ffb84d; }
.rainbow span:nth-child(3) { color: #ffe14d; }
.rainbow span:nth-child(4) { color: #6bdc7a; }
.rainbow span:nth-child(5) { color: #4dc4ff; }
.rainbow span:nth-child(6) { color: var(--pink-light); }

.hero-desc {
	color: rgba(255, 255, 255, 0.8);
	margin-top: 16px;
	max-width: 46ch;
	font-weight: 500;
	font-size: 1.125rem;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.hero-visual { position: relative; }

.hero-photo-wrap {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

.hero-photo {
	border-radius: var(--radius-lg);
	width: 100%;
}

.confetti {
	position: absolute;
	font-size: 1.6rem;
	color: var(--pink-light);
}
.confetti-1 { top: -14px; left: -10px; color: #6bdc7a; }
.confetti-2 { top: 10%; right: -18px; color: var(--pink); }
.confetti-3 { bottom: 20%; left: -22px; color: #4dc4ff; }
.confetti-4 { bottom: -16px; right: 20%; color: #ffe14d; }

.mascot {
	position: absolute;
	bottom: -20px;
	right: -14px;
	font-size: 3.4rem;
	filter: drop-shadow(0 8px 14px rgba(0,0,0,0.3));
}

.mascot img { width: 80px; height: auto; }

.rainbow-deco {
	position: absolute;
	bottom: -6px;
	right: 10%;
	font-size: 1.6rem;
}

/* ----- Event block (billetterie) ----- */
.event-block {
	padding: 0 0px 50px 0;
	margin-top: -1px;
}

.event-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.event-poster img {
	border-radius: var(--radius-md);
	width: 100%;
}

.badge {
	display: inline-block;
	background: var(--pink);
	color: var(--white);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.badge-light { background: var(--pink-light); color: var(--pink-dark); }

.event-title { font-size: clamp(2rem, 6vw, 2.6rem); color: var(--navy); }

.event-date {
	color: var(--pink);
	font-weight: 700;
	font-size: 1.2rem;
	margin-top: 6px;
}

.event-meta {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-weight: 600;
}

.meta-icon { margin-right: 6px; }

.event-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.tag {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--pink-light);
	color: var(--navy);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 10px 14px;
	border-radius: 999px;
}

.tag-plain { background: transparent; padding-left: 0; }

.event-tickets {
	background: var(--cream);
	border-radius: var(--radius-md);
	padding: 12px;
}

.event-tickets h3 {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 16px;
}

.ticket-iframe-wrap {
	min-height: 500px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0px;
}

.ticket-iframe-wrap iframe {
	width: 100%;
	height: 100%;
	min-height: 500px;
	border: 0;
	border-radius: var(--radius-sm);
}

/* ----- About event ----- */
.about-event {
	background: var(--navy) url("../images/bg-about-party.svg") center / cover no-repeat;
	color: var(--white);
	padding: 70px 0;
	position: relative;
	overflow: hidden;
}

.about-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.about-gallery-solo {
	position: relative;
}

.g-solo { aspect-ratio: 4 / 5; }

.about-gallery {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	align-content: start;
}

.gallery-badge {
	position: absolute;
	top: -14px;
	left: 12px;
	background: var(--pink);
	color: var(--white);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 10px 18px;
	border-radius: 999px;
	z-index: 2;
	box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.g-item { border-radius: var(--radius-sm); width: 100%; height: 100%; object-fit: cover; }
.g-2, .g-3 { aspect-ratio: 1 / 1; }
.g-4, .g-5 { aspect-ratio: 4 / 3; }

/* ----- Social ----- */
.social-block {
	background: var(--cream);
	padding: 60px 0;
	text-align: center;
}

.social-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.social-text { max-width: 60ch; font-weight: 600; }
.social-text p { margin-bottom: 10px; }
.link-inline { color: var(--pink); font-weight: 700; }

.social-thumbs {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 16px;
}
.social-thumbs img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; }

.social-title { font-size: clamp(1.8rem, 6vw, 2.4rem); color: var(--pink); margin-bottom: 20px; }

.social-cards {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
	max-width: 420px;
}

.social-card {
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 26px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 30px rgba(43, 43, 108, 0.08);
}

.social-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
}
.social-icon img { width: 48px; height: 48px; }

.social-card p { font-weight: 700; }

/* ----- Contact ----- */
.contact-block {
	background: var(--navy) url("../images/bg-contact-corners.svg") center / cover no-repeat;
	color: var(--white);
	padding: 70px 0;
	position: relative;
	overflow: hidden;
}

.contact-inner {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.contact-block h2 {
	font-size: clamp(2rem, 6vw, 2.6rem);
	margin-bottom: 30px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: rgba(255, 255, 255, 0.04);
	padding: 26px;
	border-radius: var(--radius-md);
}

.form-row { display: flex; flex-direction: column; gap: 14px; }

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	border: none;
	font-family: var(--font-body);
	font-weight: 600;
	background: var(--white);
	color: var(--navy);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(43, 43, 108, 0.55); }

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { align-self: center; margin-top: 6px; }

.form-note {
	font-size: 0.75rem;
	opacity: 0.6;
	margin-top: 4px;
}

.mic-deco, .hands-deco {
	position: absolute;
	font-size: 4rem;
	opacity: 0.9;
	z-index: 1;
}
.mic-deco { top: 10%; left: 2%; }
.hands-deco { bottom: 6%; right: 2%; }

/* ----- Footer ----- */
.site-footer {
	background: var(--navy);
	color: var(--white);
	padding: 40px 0 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
}

.footer-logo { height: 46px; }

.footer-inner p { opacity: 0.75; font-size: 0.9rem; max-width: 40ch; }

.footer-social { display: flex; align-items: center; gap: 16px; font-size: 1.3rem; }
.footer-social .icon-instagram,
.footer-social .icon-meetup { width: 22px; height: 22px; }

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.78rem;
	opacity: 0.6;
	margin-top: 12px;
}

.footer-links a:hover { text-decoration: underline; }

/* ----- Reveal (animé par GSAP) ----- */
[data-reveal] { opacity: 0; }

/* ============================================
   TABLETTE — 768px+
   ============================================ */
@media (min-width: 768px) {
	.btn-header { display: inline-flex; }
	.burger { display: none; }

	.mascot img { width: 150px; }

	.main-nav {
		position: static;
		width: auto;
		height: auto;
		background: none;
		padding: 0;
		transform: none;
	}

	.main-nav ul { flex-direction: row; gap: 30px; }
	.main-nav a { font-size: 0.95rem; }

	/* Tablette : affiche + infos sur une ligne, billetterie en pleine largeur en dessous */
	.event-card {
		display: grid;
		grid-template-columns: 220px 1fr;
		gap: 24px 28px;
		padding: 28px;
	}
	.event-poster { grid-column: 1; grid-row: 1; }
	.event-info { grid-column: 2; grid-row: 1; }
	.event-tickets { grid-column: 1 / -1; grid-row: 2; padding: 24px; }
	.ticket-iframe-wrap { padding: 20px; }

	.about-inner { flex-direction: row; align-items: stretch; }
	.about-gallery-solo, .about-gallery { flex: 1; }
	.g-solo { aspect-ratio: auto; height: 100%; }

	.social-inner { flex-direction: row; align-items: center; text-align: left; gap: 40px; }
	.social-text { text-align: left; flex: 1; }
	.social-thumbs { justify-content: flex-start; }
	.social-follow { flex-shrink: 0; }
	.social-cards { flex-direction: row; width: auto; }

	.form-row { flex-direction: row; }
}

/* ============================================
   DESKTOP — 1024px+
   ============================================ */
@media (min-width: 1024px) {
	.hero-inner { flex-direction: row; align-items: center; }
	.hero-text { flex: 1; }
	.hero-visual { flex: 1; }
	.hero-cta { flex-wrap: nowrap; }

	.about-gallery { gap: 16px; }

	/* Desktop : affiche + infos sur une ligne, billetterie en pleine largeur en dessous */
	.event-card {
		grid-template-columns: 240px 1fr;
	}
	.event-poster { grid-column: 1; grid-row: 1; }
	.event-info { grid-column: 2; grid-row: 1; }
	.event-tickets { grid-column: 1 / -1; grid-row: 2; }
}

/* ----- Bandeau cookies ----- */
.cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 1200;
	background: var(--navy);
	color: var(--white);
	border-radius: var(--radius-md);
	padding: 18px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
	flex: 1;
	min-width: 220px;
	font-size: 0.82rem;
	line-height: 1.5;
	opacity: 0.9;
}

.cookie-banner a { color: var(--pink-light); text-decoration: underline; }

.cookie-banner .btn { flex-shrink: 0; }

@media (min-width: 768px) {
	.cookie-banner { left: 24px; right: auto; max-width: 460px; }
}

/* ----- Pages légales ----- */
.legal-header { padding: 22px 0; background: var(--navy); }

.legal-back { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.legal-back:hover { color: var(--pink-light); }

.legal-main { padding: 60px 0 90px; }

.legal-content { max-width: 780px; margin: 0 auto; }

.legal-content h1 { font-size: clamp(2rem, 6vw, 2.6rem); color: var(--navy); }

.legal-updated { opacity: 0.6; font-size: 0.85rem; margin: 8px 0 40px; }

.legal-content h2 {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--pink-dark);
	margin: 32px 0 12px;
}

.legal-content p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }

.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-content li { font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }

.legal-content a { color: var(--pink); font-weight: 600; text-decoration: underline; }

.legal-content strong { color: var(--navy); }
