/* RSVP actions with enhanced states */
.rsvp__actions { display: flex; gap: 10px; justify-content: flex-start; margin-top: 10px; flex-wrap: nowrap; }

/* Glowing border animation around button - Nova theme: silver/blue */
@keyframes glowingBorder {
	0% { 
		box-shadow: 0 0 5px rgba(99,102,241,0.4), 0 0 10px rgba(99,102,241,0.2), 0 0 15px rgba(99,102,241,0.1);
	}
	50% { 
		box-shadow: 0 0 10px rgba(99,102,241,0.6), 0 0 20px rgba(99,102,241,0.4), 0 0 30px rgba(99,102,241,0.2), 0 0 40px rgba(99,102,241,0.1);
	}
	100% { 
		box-shadow: 0 0 5px rgba(99,102,241,0.4), 0 0 10px rgba(99,102,241,0.2), 0 0 15px rgba(99,102,241,0.1);
	}
}

/* Wiggle dance animation */
@keyframes wiggleDance {
	0%, 100% { 
		transform: scale(1) rotate(0deg) translateY(0);
	}
	15% { 
		transform: scale(1.03) rotate(-1deg) translateY(-2px);
	}
	30% { 
		transform: scale(1.03) rotate(1deg) translateY(-2px);
	}
	45% { 
		transform: scale(1.03) rotate(-0.5deg) translateY(-1px);
	}
	60% { 
		transform: scale(1.02) rotate(0.5deg) translateY(-1px);
	}
	75% { 
		transform: scale(1.01) rotate(0deg) translateY(0);
	}
}

/* Combined pulse effect */
.btn--pulse {
	animation: wiggleDance 2s ease-in-out infinite, glowingBorder 1.5s ease-in-out infinite !important;
	position: relative;
}

/* Shimmer effect overlay */
.btn--pulse::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	animation: shimmerEffect 2s ease-in-out infinite;
	border-radius: inherit;
	pointer-events: none;
}

@keyframes shimmerEffect {
	0% { left: -100%; }
	50%, 100% { left: 100%; }
}

/* Pending state with indigo/blue highlight - Nova theme */
.btn--pending {
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
	position: relative;
	overflow: hidden;
}

.btn--pending:hover:not(:disabled) {
	background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%) !important;
}

/* Event status indicator */
.event-status {
	font-size: 0.85rem;
	font-weight: 500;
	padding: 4px 8px;
	border-radius: 6px;
	font-family: 'Montserrat', system-ui, sans-serif;
	min-width: fit-content;
}

.event-status.confirmed {
	background: #d1fae5;
	color: #047857;
	border: 1px solid #a7f3d0;
}

.event-status.pending {
	background: #e0e7ff;
	color: #3730a3;
	border: 1px solid #c7d2fe;
	animation: pendingPulse 2s ease-in-out infinite;
}

@keyframes pendingPulse {
	0%, 100% { 
		background: #e0e7ff;
		border-color: #c7d2fe;
	}
	50% { 
		background: #c7d2fe;
		border-color: #6366f1;
	}
}

/* State for first-time visitors - not yet confirmed */
.event-status.not-confirmed {
	background: #e0e7ff;
	color: #3730a3;
	border: 1px solid #c7d2fe;
}

.event-status:empty {
	display: none;
}

/* RSVP button confirmed states - Nova elegant style */
.rsvp__action.confirmed {
	background: #059669 !important;
	color: white !important;
	border-color: #059669 !important;
	box-shadow: 0 4px 14px rgba(5,150,105,0.35) !important;
	position: relative;
	animation: none !important;
	transform: none !important;
}

.rsvp__action.confirmed::before {
	display: none !important;
}

/* Confirmed "No asistiré" button - elegant muted style */
.btn--danger.confirmed {
	background: #64748b !important;
	color: white !important;
	border-color: #64748b !important;
	box-shadow: 0 4px 14px rgba(100,116,139,0.3) !important;
	animation: none !important;
	transform: none !important;
}

.btn--danger.confirmed::before {
	display: none !important;
}

/* Prevent flash/flicker on RSVP action buttons */
.rsvp__action {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.rsvp__action:active {
	transform: translateZ(0) !important;
}

/* Remove shimmer effect from RSVP buttons to prevent flicker */
.rsvp__action.btn--success::before,
.rsvp__action.btn--danger::before {
	display: none;
}

/* Remove the automatic checkmark since it's already in the text */
.itinerario-status .danger {
	color: #c0392b;
	font-weight: bold;
}
.itinerario-status .warning {
	color: #4338ca;
	font-weight: bold;
}
.itinerario-status.warning {
	background: #e0e7ff;
	color: #4338ca;
	border-color: #a5b4fc;
	box-shadow: 0 2px 8px rgba(67,56,202,0.08);
}

/* Specific style for no confirmations at all */
.itinerario-status.no-confirmations {
	background: #e0e7ff;
	color: #4338ca;
	border: 1px solid #a5b4fc;
	box-shadow: 0 2px 8px rgba(67,56,202,0.08);
}

.itinerario-status.danger {
	background: #ffeaea;
	color: #c0392b;
	border-color: #f5c6cb;
	box-shadow: 0 2px 8px rgba(192,57,43,0.08);
}

/* Progressive loading skeleton styles - Nova theme */
.subevent-skeleton {
	background: linear-gradient(180deg, rgba(99,102,241,.04), rgba(255,255,255,0)) , var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px;
	margin-bottom: 18px;
	animation: pulse 1.5s ease-in-out infinite alternate;
}

.skeleton-title {
	height: 22px;
	background: #e0e0e0;
	border-radius: 4px;
	margin-bottom: 12px;
	width: 60%;
	animation: shimmer 2s infinite;
}

.skeleton-content {
	height: 16px;
	background: #e0e0e0;
	border-radius: 4px;
	margin-bottom: 8px;
	width: 80%;
	animation: shimmer 2s infinite;
}

.skeleton-content:nth-child(3) {
	width: 65%;
	animation-delay: 0.2s;
}

.skeleton-content:last-child {
	width: 40%;
	animation-delay: 0.4s;
}

@keyframes pulse {
	0% { opacity: 1; }
	100% { opacity: 0.7; }
}

@keyframes shimmer {
	0% { background-position: -200px 0; }
	100% { background-position: calc(200px + 100%) 0; }
}

.skeleton-title,
.skeleton-content {
	background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
	background-size: 200px 100%;
	background-repeat: no-repeat;
}

/* Progressive fade-in animation for content */
.progressive-fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: progressiveFadeIn 0.8s ease forwards;
}

.progressive-fade-in-delay-1 {
	animation-delay: 0.2s;
}

.progressive-fade-in-delay-2 {
	animation-delay: 0.4s;
}

.progressive-fade-in-delay-3 {
	animation-delay: 0.6s;
}

.progressive-fade-in-delay-4 {
	animation-delay: 0.8s;
}

@keyframes progressiveFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Smooth transitions for content reveal */
.section.hidden {
	display: none !important;
}

.section:not(.hidden) {
	animation: sectionReveal 0.6s ease forwards;
}

@keyframes sectionReveal {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Optimize animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
	.progressive-fade-in,
	.section,
	.subevent-skeleton {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ============================================
   NOVA THEME - Modern Elegant Silver/Indigo
   ============================================ */
:root{
	--bg:#f8fafc;            /* soft silver-white */
	--bg-soft:#f1f5f9;       /* softer section alt */
	--card:#ffffff;          /* card surface */
	--text:#1e293b;          /* main text - slate */
	--muted:#64748b;         /* subtle text */
	/* Modern elegant accents - indigo/silver */
	--accent:#4f46e5;        /* primary accent (indigo) */
	--accent-2:#e0e7ff;      /* soft highlight */
	--border:#e2e8f0;        /* light border */
	--shadow: 0 10px 30px rgba(0,0,0,.06); /* softer shadow */
	--radius:16px;
	--radius-lg:22px;
}

*{box-sizing:border-box}
html{height:100%; scroll-behavior:smooth}
body{height:100%}
body{
	margin:0;
	font-family: 'Montserrat', 'Poppins', system-ui, sans-serif;
	color:var(--text);
	background:var(--bg);
	line-height:1.7;
}

.container{width:min(1100px, 92%); margin:0 auto}

/* Global transitions & motion preferences */
*:where(button, a, .btn, .rsvp__btn, .slider__nav){
	transition: all .25s ease;
	will-change: transform;
}

/* Optimize for smooth scrolling and performance */
.hero,
.section {
	will-change: transform;
}

.progressive-fade-in {
	will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce){
	*{animation: none !important; transition: none !important}
	.progressive-fade-in,
	.section,
	.subevent-skeleton {
		will-change: auto;
	}
	
	/* Keep hero animation even with reduced motion */
	.hero,
	.hero--with-image {
		animation: hero-cinematic 25s ease-in-out infinite !important;
	}
}

/* Hero - Nova full-screen cinematic experience */
.hero{
	position:relative;
	min-height:100vh;
	display:grid;
	place-items:center;
	background-color: #1e1b4b;
	background-position: center;
	background-size: 110%;
	background-repeat: no-repeat;
	animation: hero-cinematic 25s ease-in-out infinite;
	overflow: hidden;
}

/* Mobile optimizations for hero background */
@media (max-width: 768px) {
	.hero {
		min-height: 100vh;
		background-size: 120%;
		background-position: center center;
	}
	
	/* Ensure horizontal images cover full height on mobile */
	.hero--with-image {
		background-size: 120%;
		background-position: center center;
	}
	
	/* Force cover behavior for all image orientations */
	.hero[style*="background-image"] {
		background-size: 120% !important;
		background-position: center center !important;
	}
}

/* Extra small devices */
@media (max-width: 480px) {
	.hero {
		min-height: 90vh;
		background-attachment: scroll; /* Better performance on mobile */
	}
}

/* Default gradient hero when no main image - Nova theme: silver/indigo */
.hero--default {
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4f46e5 100%);
}

.hero--with-image {
	animation: hero-cinematic 25s ease-in-out infinite;
}

/* Animación cinematográfica Ken Burns más dramática */
@keyframes hero-cinematic {
	0% { 
		background-size: 110%; 
		background-position: 30% 20%; 
		filter: brightness(1) saturate(1);
	}
	25% { 
		background-size: 115%; 
		background-position: 70% 30%; 
		filter: brightness(1.02) saturate(1.05);
	}
	50% { 
		background-size: 120%; 
		background-position: 50% 60%; 
		filter: brightness(1.05) saturate(1.1);
	}
	75% { 
		background-size: 115%; 
		background-position: 40% 40%; 
		filter: brightness(1.02) saturate(1.05);
	}
	100% { 
		background-size: 110%; 
		background-position: 30% 20%; 
		filter: brightness(1) saturate(1);
	}
}

/* Nova overlay - cinematic dark with vignette effect */
.hero__overlay{
	position:absolute; 
	inset:0; 
	background: 
		radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(15, 12, 41, 0.4) 50%, rgba(15, 12, 41, 0.85) 100%),
		linear-gradient(180deg, rgba(30, 27, 75, 0.3) 0%, rgba(30, 27, 75, 0.6) 50%, rgba(15, 12, 41, 0.9) 100%);
	z-index:0;
}

.hero__content{position:relative; text-align:center; padding:40px 0; z-index:2}

/* Nova title - Cinematic elegant typography */
.hero__title{
	font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; 
	font-weight:400; 
	font-size:clamp(42px,8vw,85px); 
	letter-spacing:.08em; 
	margin:0 0 10px;
	color:#fff;
	text-shadow:
		0 2px 30px rgba(99,102,241,.5),
		0 4px 60px rgba(0,0,0,.3);
	animation: title-reveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
	line-height: 1.1;
}

@keyframes title-reveal {
	0% {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
		letter-spacing: 0.2em;
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
		letter-spacing: 0.08em;
	}
}

.hero__subtitle{color:rgba(255,255,255,.92); margin:0 0 14px; font-style:italic; animation: fade-up 1s ease .1s both; font-family: 'Montserrat', sans-serif; font-weight: 300; letter-spacing: 0.02em;}
.parents_names{margin:0 0 20px; animation: fade-up 1s ease .2s both}
.parents_names p{margin:0 0 4px; color:rgba(255,255,255,.88); font-size:.95rem; font-weight:300; font-family: 'Montserrat', sans-serif;}

/* Nova countdown - elegant separated boxes */
.hero__countdown{
	display:inline-flex; 
	align-items:center; 
	gap:16px; 
	background:transparent; 
	border:none; 
	padding:20px 0; 
	box-shadow:none; 
	animation: fade-up 1s ease .5s both;
}
.countdown__label{
	color:rgba(255,255,255,.9); 
	font-size:1.1rem; 
	font-family: 'Montserrat', sans-serif; 
	font-weight: 300;
	letter-spacing: 0.05em;
}
.countdown__value{
	font-variant-numeric:tabular-nums; 
	font-weight:600; 
	font-size:1.4rem; 
	color:#fff; 
	font-family: 'Montserrat', sans-serif;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	padding: 8px 14px;
	border-radius: 6px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	min-width: 50px;
	text-align: center;
}
.hero__date{margin-top:8px; color:rgba(255,255,255,.95); font-style:italic; font-weight:500; animation: fade-up 1s ease .4s both; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 0.02em;}
.hero__rsvp{margin-top:20px; animation: fade-up 1s ease .6s both}
.hero__rsvp .btn{text-decoration:none; display:inline-block}

/* Specific styles for hero RSVP button - Nova elegant glassmorphism */
.hero__rsvp .btn--primary {
	background: rgba(255, 255, 255, 0.15) !important;
	color: white !important;
	border: 1px solid rgba(255,255,255,0.4) !important;
	padding: 16px 40px;
	border-radius: 4px;
	font-weight: 500;
	box-shadow: 
		0 4px 30px rgba(99,102,241,0.3),
		inset 0 1px 0 rgba(255,255,255,0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-size: 0.8rem;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.hero__rsvp .btn--primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.6s ease;
}

.hero__rsvp .btn--primary:hover::before {
	left: 100%;
}

.hero__rsvp .btn--primary:hover {
	background: rgba(255, 255, 255, 0.95) !important;
	color: #312e81 !important;
	border: 1px solid white !important;
	transform: translateY(-3px);
	box-shadow: 
		0 12px 40px rgba(99,102,241,0.4),
		0 0 0 1px rgba(255,255,255,0.1);
}
.btn--large{padding:10px 20px; font-size:1rem; font-weight:500}

/* Hero decorative layers - Nova theme with indigo/silver tones */
.hero::before{content:""; position:absolute; inset:0; pointer-events:none; background:
	radial-gradient(1200px 60% at 50% 0%, rgba(99,102,241,.08), transparent 60%),
	radial-gradient(800px 40% at 80% 0%, rgba(165,180,252,.06), transparent 55%);
}
.hero::after{content:""; position:absolute; inset:0; pointer-events:none; background-image:
	radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,.20), transparent 60%),
	radial-gradient(1.5px 1.5px at 30% 15%, rgba(255,255,255,.15), transparent 60%),
	radial-gradient(1.8px 1.8px at 80% 25%, rgba(255,255,255,.18), transparent 60%),
	radial-gradient(1.2px 1.2px at 60% 10%, rgba(255,255,255,.12), transparent 60%);
	opacity:.40;
}

@keyframes fade-up{from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none}}

/* Sections - Nova theme */
.section{padding:32px 0; background:var(--bg); background-image:
	radial-gradient(700px 40% at 15% 0%, rgba(99,102,241,.04), transparent 60%),
	radial-gradient(800px 35% at 85% 0%, rgba(165,180,252,.04), transparent 65%);
}
.section--soft{background:var(--bg-soft); background-image:
	radial-gradient(620px 35% at 20% 0%, rgba(99,102,241,.03), transparent 60%),
	radial-gradient(700px 30% at 80% 0%, rgba(165,180,252,.03), transparent 65%);
}

/* Special decoration for suggestions section - Nova theme */
.section--soft#sugerencias {
	position: relative;
	overflow: hidden;
}

.section--soft#sugerencias::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 66%;
	width: 350px;
	height: 350px;
	/* Production absolute image URL - can be customized for Nova */
	background-image: url('https://invt.date/assets/img/nova/fondo1.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.15;
	filter: grayscale(60%) brightness(0.4) hue-rotate(220deg);
	pointer-events: none;
	z-index: 0;
}

/* Mobile adjustments for flower decoration */
@media (max-width: 768px) {
	.section--soft#sugerencias::before {
		width: 400px;
		height: 400px;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		background-size: contain;
		opacity: 0.10;
	}
}

/* Ensure content is above decoration */
.section--soft#sugerencias .container {
	position: relative;
	z-index: 10;
}

.section--soft#sugerencias .section__header,
.section--soft#sugerencias .suggestions {
	position: relative;
	z-index: 10;
}

.section__header{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px}

/* Section title - Nova theme with elegant serif */
.section__title{
	font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; 
	font-size:clamp(24px,3.6vw,32px); 
	margin:0 0 16px; 
	letter-spacing:.02em;
	font-weight: 500;
	color: var(--text);
}

.itinerario-status {
	background: #dcfce7;
	color: #166534;
	border-radius: 12px;
	padding: 12px 18px;
	margin-bottom: 18px;
	font-weight: 500;
	font-family: 'Montserrat', system-ui, sans-serif;
	box-shadow: 0 2px 8px rgba(22,101,52,0.08);
	border: 1px solid #bbf7d0;
	display: block;
}

/* Status line styling */
.status-line {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.status-line:last-child {
	margin-bottom: 0;
}

.status-icon {
	flex-shrink: 0;
}

.status-confirmed {
	color: #047857;
	font-weight: 600;
}

.status-not-attending {
	color: #9ca3af;
	font-style: italic;
}

.status-pending-item {
	color: #4338ca;
	font-weight: 600;
	background: #e0e7ff;
	padding: 2px 6px;
	border-radius: 4px;
}

.status-line.status-pending {
	color: #4338ca;
}

.status-line.status-pending em {
	color: #6366f1;
	font-size: 0.9em;
}

/* All confirmed state */
.itinerario-status.all-confirmed {
	background: #d1fae5;
	border-color: #6ee7b7;
	color: #047857;
}

/* Has pending items - Nova indigo theme */
.itinerario-status.has-pending {
	background: #eef2ff;
	border-color: #c7d2fe;
	color: #3730a3;
}

.itinerario-status.loading {
	background: #f5f5f5;
	color: #666;
	border: 1px solid #ddd;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	display: flex;
	align-items: center;
	gap: 12px;
}

.itinerario-status .loading-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid #ddd;
	border-top: 2px solid #666;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.btn--secondary {
	background: #f1f5f9;
	color: #64748b;
	border: 1px solid #e2e8f0;
	margin-top: 8px;
	margin-bottom: 2px;
}
.btn--secondary:hover {
	background: #e2e8f0;
	color: #475569;
}
.icon-envelope{color:var(--accent); opacity:.9}

/* Suggestions - Nova elegant style */
.suggestions{
	display:grid; 
	gap:16px;
}
.suggestion{
	color:var(--text); 
	font-family: 'Montserrat', sans-serif;
	padding: 16px 20px;
	background: white;
	border-left: 2px solid #a5b4fc;
	transition: all 0.3s ease;
}
.suggestion:hover {
	border-left-color: #4f46e5;
	background: linear-gradient(90deg, rgba(99,102,241,.03), transparent);
}
.suggestion a{
	color:var(--accent); 
	text-decoration:none; 
	font-weight: 500;
	border-bottom:none;
	transition: color 0.2s ease;
}
.suggestion a:hover{
	color: #312e81;
}
.separator{opacity:.35; margin:0 12px}
.suggestion__icons{
	display:inline-flex; 
	gap:8px; 
	vertical-align:middle; 
	margin:0 10px 0 8px; 
	color:var(--accent);
	opacity: 0.7;
}

/* Sub events - Nova theme */
.subevents{display:grid; gap:18px}

/* Responsive grid for sub events */
@media (min-width: 821px) {
	.subevents{grid-template-columns:repeat(auto-fit,minmax(400px,1fr))}
	
	.subevents--single {
		grid-template-columns: 1fr 1fr;
	}
	
	.subevents--single .subevent:only-child {
		grid-column: 1;
	}
}

@media (max-width: 820px){
	.subevents{grid-template-columns:1fr}
	.subevents--single {
		grid-template-columns: 1fr;
	}
}

/* Subevent card - Nova elegant minimalist style */
.subevent{
	background: white; 
	border: none; 
	border-radius: 0; 
	padding: 28px 24px; 
	box-shadow: none;
	border-left: 3px solid #4f46e5;
	position: relative;
	transition: all 0.3s ease;
}
.subevent:hover {
	background: linear-gradient(90deg, rgba(99,102,241,.04), transparent);
	border-left-width: 5px;
}
.subevent::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--border), transparent 80%);
}
.subevent:first-child::before {
	display: none;
}
.subevent__header{display:flex; justify-content:space-between; align-items:center; gap:12px}
.subevent__title{
	margin:0; 
	font-weight:500; 
	font-size:1.35rem; 
	font-family: 'Cormorant Garamond', serif; 
	letter-spacing: 0.02em;
	color: #1e1b4b;
}
.subevent__time{
	color: #4f46e5; 
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	background: rgba(99,102,241,0.1);
	padding: 6px 12px;
	border-radius: 4px;
}
.subevent__place{margin:.5rem 0; color:var(--text); font-family: 'Montserrat', sans-serif; font-size: 0.95rem;}
.subevent__map a{color:var(--accent); text-decoration:none; font-weight: 500;}

.rsvp{display:grid; grid-template-columns:auto 1fr; gap:10px 12px; align-items:center; margin-top:10px}
.rsvp__label{color:var(--muted); font-family: 'Montserrat', sans-serif;}
.rsvp__control{display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--border); padding:8px; border-radius:12px; width:fit-content; box-shadow:inset 0 0 0 1px rgba(0,0,0,.02)}
.rsvp__btn{appearance:none; border:0; background:linear-gradient(180deg, #f8fafc, #f1f5f9); color:#1e293b; width:34px; height:34px; border-radius:10px; cursor:pointer; font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial}
.rsvp__btn:hover{background:linear-gradient(180deg, #fff, #f1f5f9)}
.rsvp__btn:active{transform:scale(.98)}
.rsvp__input{width:64px; text-align:center; color:var(--text); background:transparent; border:0; font-weight:700; font-variant-numeric:tabular-nums; font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial}
.rsvp__input:focus{outline:none}
.rsvp__hint{grid-column:1 / -1; color:var(--muted); font-size:.9rem; font-family: 'Montserrat', sans-serif;}
.rsvp__action{margin-top:10px; width:100%}

/* Buttons - Nova modern elegant style */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 8px;
	border: 2px solid transparent;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	font-size: 0.875rem;
	line-height: 1.4;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn:hover:not(:disabled):not([disabled]) {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn:active:not(:disabled):not([disabled]) {
	transform: translateY(0);
}

/* Primary button - Nova elegant indigo */
.btn--primary {
	background: #4f46e5;
	color: white;
	border-color: #4f46e5;
	box-shadow: 0 4px 14px rgba(79,70,229,0.35);
}

.btn--primary:hover:not(:disabled) {
	background: #4338ca;
	border-color: #4338ca;
	box-shadow: 0 6px 20px rgba(79,70,229,0.45);
}

/* Success button - Elegant emerald outline style */
.btn--success {
	background: transparent;
	color: #059669;
	border: 2px solid #059669;
	box-shadow: 0 2px 8px rgba(5,150,105,0.15);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--success:hover:not(:disabled) {
	background: #059669;
	color: white;
	box-shadow: 0 6px 20px rgba(5,150,105,0.35);
}

/* Danger button - Elegant outline style */
.btn--danger {
	background: transparent;
	color: #dc2626;
	border: 2px solid #dc2626;
	box-shadow: 0 2px 8px rgba(220,38,38,0.15);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--danger:hover:not(:disabled) {
	background: #dc2626;
	color: white;
	box-shadow: 0 6px 20px rgba(220,38,38,0.35);
}

.btn:disabled,
.btn[disabled],
.btn--disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
	pointer-events: none;
}

/* Message box styles - Nova elegant minimalist theme */
.message-box {
	margin-top: 24px;
	padding: 28px;
	background: transparent;
	border: none;
	border-top: 1px solid var(--border);
	border-radius: 0;
	box-shadow: none;
}

.message-box__label {
	display: block;
	margin-bottom: 12px;
	font-weight: 400;
	color: var(--text);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	letter-spacing: 0.02em;
}

.message-box__input {
	width: 100%;
	padding: 16px;
	border: none;
	border-bottom: 2px solid var(--border);
	border-radius: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	resize: vertical;
	min-height: 100px;
	background: rgba(248,250,252,0.5);
	transition: all 0.3s ease;
}

.message-box__input:focus {
	outline: none;
	border-bottom-color: #4f46e5;
	background: white;
	box-shadow: 0 4px 20px rgba(79,70,229,0.1);
}

.message-box__hint {
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 8px;
	margin-bottom: 16px;
	font-family: 'Montserrat', sans-serif;
}

/* Guest messages styles - Nova elegant cards */
.guest-messages {
	display: grid;
	gap: 16px;
}

.guest-message {
	background: white;
	padding: 24px 28px;
	border: none;
	border-left: 2px solid #a5b4fc;
	border-radius: 0;
	font-style: normal;
	color: var(--text);
	position: relative;
	box-shadow: 0 4px 20px rgba(79,70,229,0.08);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	line-height: 1.6;
	transition: all 0.3s ease;
}

.guest-message:hover {
	border-left-color: #4f46e5;
	box-shadow: 0 8px 30px rgba(79,70,229,0.12);
	transform: translateX(4px);
}

.guest-message::before {
	content: '"';
	font-size: 3rem;
	color: #c7d2fe;
	position: absolute;
	top: 8px;
	left: 20px;
	font-family: 'Cormorant Garamond', serif;
	line-height: 1;
	opacity: 0.6;
}

/* Gallery/Slider styles - Nova cinematic gallery */
.slider {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	padding: 20px 0;
}

.slider__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	gap: 12px;
}

.slide {
	min-width: 280px;
	max-width: 280px;
	margin-right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide:hover {
	transform: scale(1.03);
	z-index: 2;
}

.slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(30, 27, 75, 0.6) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.slide:hover::after {
	opacity: 1;
}

/* Single image mode - center the image */
.slider--single-image .slider__track {
	justify-content: center;
}

.slider--single-image .slide {
	min-width: 100%;
	max-width: 100%;
	margin-right: 0;
	border-radius: 12px;
}

/* Two images mode */
.slider--two-images .slider__track {
	justify-content: center;
	gap: 20px;
}

.slider--two-images .slide {
	min-width: calc(50% - 10px);
	max-width: calc(50% - 10px);
	margin-right: 0;
}

.slide img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide:hover img {
	transform: scale(1.08);
}

/* Slider navigation - Nova minimal elegant style */
.slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.95);
	color: #312e81;
	border: 1px solid rgba(79,70,229,0.2);
	width: 48px;
	height: 48px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	transition: all 0.3s ease;
}

.slider__nav:hover {
	background: #4f46e5;
	color: white;
	border-color: #4f46e5;
	transform: translateY(-50%) scale(1.05);
}

.slider__nav--prev {
	left: 16px;
}

.slider__nav--next {
	right: 16px;
}

@keyframes infiniteScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Spotify styles */
.spotify iframe {
	width: 100%;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

/* Notification styles - Nova theme */
#notification-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	pointer-events: none;
}

.notification {
	background: white;
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	border: 1px solid #e2e8f0;
	transform: translateX(400px);
	opacity: 0;
	animation: slideIn 0.3s ease forwards;
	pointer-events: all;
	min-width: 280px;
	font-family: 'Montserrat', sans-serif;
}

.notification.removing {
	animation: slideOut 0.3s ease forwards;
}

.notification-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.notification-icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	flex-shrink: 0;
}

.notification.success .notification-icon {
	background: #22c55e;
	color: white;
}

.notification.error .notification-icon {
	background: #ef4444;
	color: white;
}

.notification.info .notification-icon {
	background: #4f46e5;
	color: white;
}

@keyframes slideIn {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	to {
		transform: translateX(400px);
		opacity: 0;
	}
}

/* Auto-confirm countdown indicator - Nova indigo theme */
.auto-confirm-countdown {
	position: absolute;
	top: -10px;
	right: -10px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	border: 2px solid white;
	border-radius: 13px;
	font-size: 0.85rem;
	font-weight: bold;
	color: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	animation: countdownBadgePulse 1s ease-in-out infinite;
	z-index: 100;
	pointer-events: none;
}

.auto-confirm-countdown .countdown-text {
	display: none;
}

.auto-confirm-countdown strong {
	display: inline;
	font-weight: bold;
	animation: none;
}

/* Make button container relative for absolute positioning */
.rsvp__actions {
	position: relative;
}

.rsvp__actions .btn {
	position: relative;
	overflow: visible;
}

@keyframes countdownBadgePulse {
	0%, 100% { 
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	}
	50% { 
		transform: scale(1.15);
		box-shadow: 0 3px 12px rgba(34, 197, 94, 0.5);
	}
}

/* Turnstile container */
.turnstile-container {
	display: none;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	min-height: 0;
	height: 0;
	overflow: hidden;
}

.turnstile-container.turnstile-visible {
	display: flex !important;
	margin: 16px 0 !important;
	min-height: 65px !important;
	height: auto !important;
}

.turnstile-loading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 20px;
	color: var(--muted);
	font-size: 0.9rem;
}

.turnstile-loading::before {
	content: '';
	width: 16px;
	height: 16px;
	border: 2px solid var(--border);
	border-top: 2px solid var(--accent);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Disabled state for RSVP actions */
.rsvp__action:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
	animation: none !important;
}

.rsvp__action:disabled::before {
	display: none !important;
}

.rsvp__action.loading {
	position: relative;
	color: transparent !important;
	pointer-events: none;
	animation: none !important;
}

.rsvp__action.loading::before {
	display: none !important;
}

.rsvp__action.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.3);
	border-top: 2px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.slider__nav {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	
	.slider__nav--prev {
		left: 10px;
	}
	
	.slider__nav--next {
		right: 10px;
	}
	
	.slide img {
		height: 300px;
	}
	
	/* Two images mode on mobile - stack vertically */
	.slider--two-images .slider__track {
		flex-direction: column;
		gap: 15px;
	}
	
	.slider--two-images .slide {
		min-width: 100%;
		max-width: 100%;
	}
	
	/* Regular slider on mobile */
	.slider:not(.slider--single-image):not(.slider--two-images) .slide {
		min-width: 280px;
		max-width: 280px;
		margin-right: 15px;
	}
	
	#notification-container {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}
	
	.notification {
		min-width: auto;
		width: 100%;
	}
}

/* Nova Footer - elegant minimalist */
.site-footer {
	background: #1e1b4b;
	color: rgba(255,255,255,0.7);
	padding: 40px 20px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
}

.site-footer a {
	color: #a5b4fc;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer a:hover {
	color: white;
}

/* Nova Section dividers */
.section-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border), transparent);
	margin: 0;
	border: none;
}

/* Scroll indicator for hero */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	color: rgba(255,255,255,0.6);
	font-size: 1.5rem;
	z-index: 10;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Nova accent line decoration */
.accent-line {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #4f46e5, #a5b4fc);
	margin: 16px auto;
}

/* Enhanced section titles with underline */
.section__title::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #4f46e5;
	margin-top: 12px;
}
