/* ============================================================
   HOLI KE RANG, DHARMLOK KE SANG — Styles
   ============================================================ */

:root {
	--pink: #e91e8c;
	--pink-lt: #f48fb1;
	--purple: #7b1fa2;
	--purple-lt: #ce93d8;
	--orange: #f57c00;
	--orange-lt: #ffcc80;
	--yellow: #fdd835;
	--green: #2e7d32;
	--green-lt: #a5d6a7;
	--red: #c62828;
	--white: #ffffff;
	--off-white: #fdf6ff;
	--dark: #1a1a2e;
	--text: #3d1a3d;
	--text-lt: #6d4c7d;
	--radius: 16px;
	--shadow: 0 8px 32px rgba(123, 31, 162, 0.13);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", "Tiro Devanagari Hindi", sans-serif;
	background: var(--off-white);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.7;
}

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

img {
	display: block;
	max-width: 100%;
	border-radius: var(--radius);
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: #f3e5f5;
}
::-webkit-scrollbar-thumb {
	background: var(--pink);
	border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(233, 30, 140, 0.12);
	transition: box-shadow var(--transition);
}
#navbar.scrolled {
	box-shadow: 0 4px 24px rgba(123, 31, 162, 0.14);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 24px;
	gap: 16px;
}

.nav-logos {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-logo-img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 10px;
	border: 2px solid var(--pink-lt);
	cursor: pointer;
	transition: transform var(--transition);
}
.nav-logo-img:hover {
	transform: scale(1.08);
}

.nav-brand {
	display: flex;
	flex-direction: column;
}
.nav-title-hi {
	font-family: "Tiro Devanagari Hindi", serif;
	font-size: 1rem;
	font-weight: 700;
	background: linear-gradient(90deg, var(--pink), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}
.nav-subtitle {
	font-size: 0.65rem;
	color: var(--text-lt);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn-video-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: linear-gradient(135deg, var(--purple), var(--pink));
	color: #fff;
	border: none;
	padding: 9px 18px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.btn-video-nav:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
}
.btn-video-nav .play-icon {
	font-size: 0.75rem;
}

.btn-download {
	display: flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, var(--orange), var(--yellow));
	color: var(--dark);
	padding: 9px 18px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.btn-download:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}
.btn-download.sm {
	width: 100%;
	justify-content: center;
	border-radius: 8px;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	width: 36px;
	height: 36px;
	padding: 4px;
}
.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--pink);
	border-radius: 2px;
	transition: all var(--transition);
}

.nav-mobile-menu {
	display: none;
	flex-direction: column;
	gap: 8px;
	padding: 12px 24px 16px;
	border-top: 1px solid rgba(233, 30, 140, 0.1);
}
.nav-mobile-menu a,
.nav-mobile-menu button {
	font-size: 0.9rem;
	color: var(--text);
	font-weight: 500;
	padding: 4px 0;
}
.nav-mobile-menu.open {
	display: flex;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
	min-height: 100svh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	padding: 100px 60px 60px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #fff0fb 0%, #fff7f0 50%, #f0f0ff 100%);
}

.hero-bg-colors {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.color-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.25;
}
.c1 {
	width: 400px;
	height: 400px;
	background: var(--pink);
	top: -100px;
	left: -100px;
}
.c2 {
	width: 300px;
	height: 300px;
	background: var(--orange);
	bottom: -80px;
	right: 200px;
}
.c3 {
	width: 250px;
	height: 250px;
	background: var(--purple);
	top: 200px;
	right: -60px;
}
.c4 {
	width: 200px;
	height: 200px;
	background: var(--yellow);
	bottom: 100px;
	left: 200px;
}

.hero-content {
	position: relative;
	z-index: 1;
}
.hero-image {
	position: relative;
	z-index: 1;
}
.hero-image img {
	border-radius: 24px;
	box-shadow: 0 24px 64px rgba(123, 31, 162, 0.2);
	transition: transform 0.5s ease;
}
.hero-image img:hover {
	transform: translateY(-6px) rotate(0.5deg);
}

.hero-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.badge {
	padding: 5px 14px;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.badge.pink {
	background: #fce4ec;
	color: var(--pink);
	border: 1px solid var(--pink-lt);
}
.badge.orange {
	background: #fff3e0;
	color: var(--orange);
	border: 1px solid var(--orange-lt);
}

.hero-title {
	font-family: "Tiro Devanagari Hindi", serif;
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 700;
	line-height: 1.2;
	background: linear-gradient(
		135deg,
		var(--pink) 0%,
		var(--purple) 60%,
		var(--orange) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.hero-subtitle {
	font-size: 1rem;
	color: var(--text-lt);
	font-weight: 500;
	margin-bottom: 28px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}
.detail-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(233, 30, 140, 0.12);
	border-radius: 12px;
	padding: 12px 16px;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.detail-card:hover {
	transform: translateX(4px);
	box-shadow: var(--shadow);
}
.detail-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
}
.detail-card div {
	display: flex;
	flex-direction: column;
}
.detail-card strong {
	font-size: 0.95rem;
	color: var(--text);
}
.detail-card span {
	font-size: 0.78rem;
	color: var(--text-lt);
}

.hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--pink), var(--purple));
	color: #fff;
	border: none;
	padding: 13px 28px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
	box-shadow: 0 4px 18px rgba(233, 30, 140, 0.35);
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(233, 30, 140, 0.45);
}
.btn-primary.white {
	background: #fff;
	color: var(--pink);
	box-shadow: 0 4px 18px rgba(255, 255, 255, 0.3);
}
.btn-primary.white:hover {
	box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
	background: transparent;
	color: var(--purple);
	border: 2px solid var(--purple);
	padding: 11px 26px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all var(--transition);
}
.btn-secondary:hover {
	background: var(--purple);
	color: #fff;
}

.btn-outline-white {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.6);
	padding: 11px 26px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all var(--transition);
}
.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
}

.scroll-hint {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 0.7rem;
	color: var(--text-lt);
	z-index: 1;
	animation: bounce 2s infinite;
}
.scroll-arrow {
	width: 16px;
	height: 16px;
	border-right: 2px solid var(--pink);
	border-bottom: 2px solid var(--pink);
	transform: rotate(45deg);
}
@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(6px);
	}
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section {
	padding: 80px 0;
}

.section-tag {
	display: inline-block;
	background: linear-gradient(90deg, var(--pink), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.section-tag.light {
	-webkit-text-fill-color: rgba(255, 255, 255, 0.8);
	color: rgba(255, 255, 255, 0.8);
}

.section-title {
	font-family: "Tiro Devanagari Hindi", serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text);
	line-height: 1.3;
}
.section-title.light {
	color: #fff;
}

.section-desc {
	color: var(--text-lt);
	max-width: 600px;
	margin-bottom: 48px;
	font-size: 0.95rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
	background: #fff;
}

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

.about-lead {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 16px;
}
.about-text p {
	color: var(--text-lt);
	margin-bottom: 14px;
}

.site-link {
	display: inline-block;
	margin-top: 16px;
	padding: 10px 22px;
	background: linear-gradient(90deg, var(--pink), var(--purple));
	color: #fff !important;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.site-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(123, 31, 162, 0.3);
}

.about-image img {
	box-shadow: var(--shadow);
	transition: transform 0.4s ease;
}
.about-image img:hover {
	transform: scale(1.02);
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
#highlights {
	background: linear-gradient(160deg, #fdf0ff 0%, #fff7f0 100%);
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.highlight-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(123, 31, 162, 0.09);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
	border: 1px solid rgba(233, 30, 140, 0.08);
}
.highlight-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(123, 31, 162, 0.18);
}
.highlight-card.featured {
	grid-column: span 1;
	border: 2px solid var(--pink);
	position: relative;
}

.hcard-img {
	position: relative;
	height: 200px;
	overflow: hidden;
}
.hcard-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	transition: transform 0.5s ease;
}
.highlight-card:hover .hcard-img img {
	transform: scale(1.06);
}

.hcard-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(123, 31, 162, 0.6) 0%,
		transparent 60%
	);
	display: flex;
	align-items: flex-end;
	padding: 12px;
}
.hcard-num {
	font-size: 2.5rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.25);
	line-height: 1;
	font-family: "Poppins", sans-serif;
}

.hcard-body {
	padding: 20px;
}
.hcard-body h3 {
	font-family: "Tiro Devanagari Hindi", serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 4px;
}
.hcard-sub {
	font-size: 0.78rem;
	color: var(--pink);
	font-weight: 600;
	margin-bottom: 10px;
}
.hcard-body p {
	font-size: 0.82rem;
	color: var(--text-lt);
	line-height: 1.6;
}

.featured-badge {
	display: inline-block;
	background: linear-gradient(90deg, var(--yellow), var(--orange));
	color: var(--dark);
	padding: 3px 10px;
	border-radius: 50px;
	font-size: 0.68rem;
	font-weight: 700;
	margin-bottom: 8px;
}

/* ============================================================
   ORGANIZERS
   ============================================================ */
#organizers {
	background: #fff;
}

.org-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 40px;
}

.org-card {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid rgba(233, 30, 140, 0.1);
}
.org-header {
	padding: 16px 24px;
	display: flex;
	align-items: center;
}
.org-header.pink {
	background: linear-gradient(90deg, var(--pink), #f06292);
}
.org-header.purple {
	background: linear-gradient(90deg, var(--purple), #9c27b0);
}
.org-label {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Tiro Devanagari Hindi", serif;
}

.org-list {
	list-style: none;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: #fff;
}
.org-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--text);
}
.org-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}
.org-dot.pink {
	background: var(--pink);
}
.org-dot.purple {
	background: var(--purple);
}
.org-dot.orange {
	background: var(--orange);
}
.org-dot.green {
	background: var(--green);
}

.org-slide img {
	width: 100%;
	box-shadow: var(--shadow);
	border-radius: 20px;
}

/* ============================================================
   INVITATION
   ============================================================ */
#invite {
	background: linear-gradient(
		135deg,
		var(--purple) 0%,
		var(--pink) 60%,
		var(--orange) 100%
	);
	position: relative;
	overflow: hidden;
}

.invite-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.i1 {
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.08);
	top: -200px;
	right: -100px;
	border-radius: 50%;
}
.i2 {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
	bottom: -100px;
	left: -50px;
	border-radius: 50%;
}

.invite-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.invite-text p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 14px;
	font-size: 0.95rem;
}
.invite-text strong {
	color: #fff;
}

.invite-details {
	margin: 24px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.invite-detail-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 10px 14px;
	color: #fff;
	font-size: 0.88rem;
}
.idr-icon {
	flex-shrink: 0;
	font-size: 1.1rem;
}

.invite-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.invite-image img {
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
	border-radius: 24px;
	border: 3px solid rgba(255, 255, 255, 0.2);
}

/* ============================================================
   THANK YOU
   ============================================================ */
#thankyou {
	background: linear-gradient(160deg, #fff0fb 0%, #fff7f0 100%);
}
.ty-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.ty-image img {
	box-shadow: var(--shadow);
}
.ty-text h2 {
	font-family: "Tiro Devanagari Hindi", serif;
	font-size: clamp(2rem, 4vw, 3rem);
	background: linear-gradient(135deg, var(--pink), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
}
.ty-text p {
	color: var(--text-lt);
	margin-bottom: 16px;
	font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 48px 0 24px;
}
.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand h3 {
	font-family: "Tiro Devanagari Hindi", serif;
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 6px;
}
.footer-brand p {
	font-size: 0.82rem;
	margin-bottom: 8px;
}
.footer-brand a {
	color: var(--pink-lt);
	font-size: 0.82rem;
}
.footer-links,
.footer-orgs {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-links a {
	font-size: 0.85rem;
	transition: color var(--transition);
}
.footer-links a:hover {
	color: var(--pink-lt);
}
.footer-orgs p {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 4px;
}
.footer-orgs strong {
	display: block;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.85);
}
.footer-bottom {
	text-align: center;
	padding-top: 20px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FIXED VIDEO BUTTON
   ============================================================ */
.fixed-video-btn {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--purple), var(--pink));
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 6px 24px rgba(233, 30, 140, 0.5);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.fixed-video-btn:hover {
	transform: scale(1.12);
	box-shadow: 0 10px 36px rgba(233, 30, 140, 0.6);
}
.fvb-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--pink);
	opacity: 0.4;
	animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.4;
	}
	70% {
		transform: scale(1.6);
		opacity: 0;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}
.fvb-icon {
	font-size: 1.3rem;
	position: relative;
	z-index: 1;
	line-height: 1;
}
.fvb-label {
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 1;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(10, 10, 20, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}
.modal-overlay.active {
	opacity: 1;
	pointer-events: all;
}

.modal-container {
	background: #1a1030;
	border-radius: 24px;
	width: 100%;
	max-width: 780px;
	border: 1px solid rgba(233, 30, 140, 0.25);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
	position: relative;
	transform: scale(0.92) translateY(20px);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
}
.modal-overlay.active .modal-container {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition:
		background var(--transition),
		transform var(--transition);
	line-height: 1;
}
.modal-close:hover {
	background: var(--pink);
	transform: rotate(90deg);
}

.modal-header {
	padding: 20px 24px 14px;
	background: linear-gradient(
		90deg,
		rgba(233, 30, 140, 0.15),
		rgba(123, 31, 162, 0.15)
	);
}
.modal-header h3 {
	font-family: "Tiro Devanagari Hindi", serif;
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 2px;
}
.modal-header p {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

.modal-video-wrap {
	padding: 0;
}
.video-placeholder {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
}
.video-placeholder iframe,
.video-placeholder video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: #000;
}

/* Unmute overlay */
.unmute-overlay {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 10px 20px;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	animation: unmuteBounce 1.5s ease-in-out infinite;
	white-space: nowrap;
}
.unmute-overlay:hover {
	background: rgba(233, 30, 140, 0.8);
	transform: translateX(-50%) scale(1.05);
	animation: none;
}
.unmute-overlay.hidden { display: none; }
.unmute-icon { font-size: 1.1rem; }
@keyframes unmuteBounce {
	0%, 100% { transform: translateX(-50%) scale(1); }
	50% { transform: translateX(-50%) scale(1.06); }
}

.modal-footer {
	padding: 14px 24px;
	text-align: center;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.5);
	background: rgba(0, 0, 0, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.highlights-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	#hero {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 100px 24px 60px;
	}
	.hero-image {
		display: none;
	}
	.hero-badges {
		justify-content: center;
	}
	.hero-ctas {
		justify-content: center;
	}
	.hero-details {
		text-align: left;
	}
	.about-grid,
	.invite-content,
	.ty-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}
	.nav-actions > .btn-video-nav,
	.nav-actions > .btn-download {
		display: none;
	}
	.highlights-grid {
		grid-template-columns: 1fr;
	}
	.org-grid {
		grid-template-columns: 1fr;
	}
	section {
		padding: 56px 0;
	}
	#hero {
		padding: 88px 20px 56px;
	}
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.fixed-video-btn {
		bottom: 20px;
		right: 20px;
		width: 56px;
		height: 56px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	.detail-card {
		padding: 10px 12px;
	}
	.modal-container {
		border-radius: 16px;
	}
	.btn-primary,
	.btn-secondary {
		padding: 11px 20px;
		font-size: 0.82rem;
	}
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
.fade-up {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}
.fade-up:nth-child(2) {
	transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
	transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
	transition-delay: 0.3s;
}
.fade-up:nth-child(5) {
	transition-delay: 0.4s;
}
.fade-up:nth-child(6) {
	transition-delay: 0.5s;
}
