/*
 * Modern Christmas Landing Page
 * Inspired by Nintendo Princess Peach Showtime Design
 * Maria Cacko Ballet Infantil - Natal dos Sentimentos
 */

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Christmas Colors */
    --color-primary: #B80000;
    --color-primary-light: #DC143C;
    --color-primary-dark: #8B0000;
    --color-secondary: #F2C555;
    --color-secondary-light: #FFD700;
    --color-accent: #A56E00;
    --color-green: #0C3B2E;
    --color-white: #FFFFFF;
    --color-cream: #FFF8F0;
    --color-beige: #F8EDE3;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Pinyon Script', cursive;
    --font-display: 'Julius Sans One', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-christmas: 0 10px 30px rgba(184, 0, 0, 0.15);
    --shadow-gold: 0 10px 30px rgba(242, 197, 85, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Z-index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-4);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2.25rem;
    }
}

p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-christmas);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(184, 0, 0, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-christmas);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(184, 0, 0, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-link {
    color: var(--color-white);
}

.header.scrolled .nav-link:hover {
    color: var(--color-secondary);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.logo img {
    height: 3rem;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--color-gray-100);
}

.nav-toggle-icon {
    width: 1.5rem;
    height: 2px;
    background: var(--color-gray-700);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--color-gray-700);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.nav-toggle-icon::before {
    transform: translateY(-6px);
}

.nav-toggle-icon::after {
    transform: translateY(4px);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 500;
    color: var(--color-gray-700);
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(184, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.95) 100%),
        radial-gradient(ellipse at center, rgba(242, 197, 85, 0.1) 0%, transparent 70%),
        linear-gradient(45deg, rgba(12, 59, 46, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Christmas Magic Background with CSS Decorations */
.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(242, 197, 85, 0.4) 0%, transparent 15%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 12%),
        radial-gradient(circle at 30% 70%, rgba(184, 0, 0, 0.3) 0%, transparent 18%),
        radial-gradient(circle at 90% 80%, rgba(242, 197, 85, 0.2) 0%, transparent 10%),
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 8%);
    opacity: 0.6;
    animation: magicFloat 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(242, 197, 85, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(242, 197, 85, 0.1) 0%, transparent 60%);
    animation: goldenGlow 8s ease-in-out infinite alternate;
}

@keyframes magicFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(2deg);
    }

    50% {
        transform: translateY(-5px) rotate(-1deg);
    }

    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes goldenGlow {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(3px 3px at 20% 30%, rgba(242, 197, 85, 0.8), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(4px 4px at 90% 40%, rgba(242, 197, 85, 0.7), transparent),
        radial-gradient(2px 2px at 130% 80%, rgba(255, 215, 0, 0.5), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: magicalSnowfall 25s linear infinite;
}

@keyframes magicalSnowfall {
    0% {
        transform: translateY(-100px) translateX(0px);
    }

    100% {
        transform: translateY(calc(100vh + 100px)) translateX(50px);
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(calc(100vh + 100px));
    }
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(242, 197, 85, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-16) 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
        padding: var(--space-20) 0;
        text-align: left;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }
}

.hero-text {
    text-align: center;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: center;
        order: 2;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(242, 197, 85, 0.3);
}

.hero-badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--color-secondary);
}

.hero-title {
    font-family: var(--font-script);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(242, 197, 85, 0.8),
        0 0 20px rgba(242, 197, 85, 0.6),
        0 0 30px rgba(242, 197, 85, 0.4);
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, transparent, rgba(242, 197, 85, 0.1), transparent);
    border-radius: var(--radius-lg);
    animation: titleGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes titleGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.hero-title-small {
    display: block;
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-2);
}

.hero-title-main {
    display: block;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.1;
    position: relative;
    animation: textShimmer 3s ease-in-out infinite;
}

.hero-title-main::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-secondary);
    text-shadow:
        0 0 5px rgba(242, 197, 85, 0.8),
        0 0 10px rgba(242, 197, 85, 0.6),
        0 0 15px rgba(242, 197, 85, 0.4);
    z-index: -1;
    opacity: 0.7;
}

@keyframes textShimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

@media (min-width: 768px) {
    .hero-title-small {
        font-size: 1.5rem;
    }

    .hero-title-main {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-small {
        font-size: 1.75rem;
    }

    .hero-title-main {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--space-8);
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .hero-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-4);
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(242, 197, 85, 0.2);
    transition: all var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.info-icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-md);
    padding: var(--space-2);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 0.875rem;
    color: var(--color-gray-900);
    font-weight: 700;
    font-family: var(--font-heading);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

@media (min-width: 1024px) {
    .hero-cta {
        align-items: flex-start;
    }
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 3;
}

@media (min-width: 1024px) {
    .hero-visual {
        margin-bottom: var(--space-12);
    }
}

/* Magical Christmas Tree behind mascot */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
    background:
        radial-gradient(ellipse at 50% 90%, var(--color-secondary) 0%, transparent 30%),
        radial-gradient(ellipse at 50% 70%, var(--color-secondary) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, var(--color-secondary) 0%, transparent 50%),
        linear-gradient(to top, var(--color-primary) 85%, transparent 100%);
    opacity: 0.3;
    animation: treeGlow 6s ease-in-out infinite alternate;
    z-index: 1;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes treeGlow {
    0% {
        opacity: 0.2;
        transform: translateX(-50%) scale(0.9);
    }

    100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Nintendo-style decorative tiles */
.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    z-index: 1;
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
}

.hero-visual::before {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    top: 10%;
    left: 10%;
    animation-delay: -2s;
    box-shadow: 0 10px 30px rgba(242, 197, 85, 0.3);
}

.hero-visual::after {
    background: linear-gradient(135deg, var(--color-white), var(--color-cream));
    bottom: 15%;
    right: 15%;
    animation-delay: -4s;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {

    .hero-visual::before,
    .hero-visual::after {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1024px) {

    .hero-visual::before,
    .hero-visual::after {
        width: 120px;
        height: 120px;
    }
}

.mascot-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
}

@media (min-width: 768px) {
    .mascot-container {
        transform: scale(1.1);
    }
}

@media (min-width: 1024px) {
    .mascot-container {
        transform: scale(1.2);
    }
}

.hero-mascot {
    width: 240px;
    height: 240px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@media (min-width: 768px) {
    .hero-mascot {
        width: 280px;
        height: 280px;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    }
}

@media (min-width: 1024px) {
    .hero-mascot {
        width: 320px;
        height: 320px;
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.mascot-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(242, 197, 85, 0.3) 0%, rgba(184, 0, 0, 0.1) 30%, transparent 60%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite alternate;
    z-index: 1;
}

@media (min-width: 768px) {
    .mascot-glow {
        inset: -40px;
        background: radial-gradient(circle, rgba(242, 197, 85, 0.35) 0%, rgba(184, 0, 0, 0.15) 30%, transparent 65%);
    }
}

@media (min-width: 1024px) {
    .mascot-glow {
        inset: -50px;
        background: radial-gradient(circle, rgba(242, 197, 85, 0.4) 0%, rgba(184, 0, 0, 0.2) 30%, transparent 70%);
    }
}

@keyframes glow {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.mascot-sparkles {
    position: absolute;
    inset: -60px;
    pointer-events: none;
    z-index: 2;
}

.mascot-sparkles::before,
.mascot-sparkles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    border-radius: 50%;
    animation: magicalSparkle 3s ease-in-out infinite;
}

.mascot-sparkles::before {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    box-shadow:
        0 0 10px var(--color-secondary),
        0 0 20px var(--color-secondary),
        0 0 30px var(--color-secondary);
}

.mascot-sparkles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
    box-shadow:
        0 0 8px var(--color-secondary),
        0 0 16px var(--color-secondary),
        0 0 24px var(--color-secondary);
}

@keyframes magicalSparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    20% {
        opacity: 1;
        transform: scale(1.5) rotate(90deg);
    }

    40% {
        opacity: 0.8;
        transform: scale(1) rotate(180deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.2) rotate(270deg);
    }

    80% {
        opacity: 0.6;
        transform: scale(0.8) rotate(360deg);
    }
}

@media (min-width: 768px) {
    .mascot-sparkles {
        inset: -80px;
    }

    .mascot-sparkles::before,
    .mascot-sparkles::after {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .mascot-sparkles {
        inset: -100px;
    }

    .mascot-sparkles::before,
    .mascot-sparkles::after {
        font-size: 2.5rem;
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Christmas Halo Effect */
.mascot-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    opacity: 0.5;
    animation: halo 6s ease-in-out infinite;
    z-index: 0;
}

@media (min-width: 768px) {
    .mascot-container::before {
        top: -25px;
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
}

@media (min-width: 1024px) {
    .mascot-container::before {
        top: -30px;
        width: 140px;
        height: 140px;
        border-width: 3px;
    }
}

@keyframes halo {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(0.95);
        box-shadow: 0 0 15px rgba(242, 197, 85, 0.2);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 25px rgba(242, 197, 85, 0.4);
    }
}

/* Golden Magic Aura */
.mascot-container::after {
    content: '';
    position: absolute;
    inset: -60px;
    background:
        radial-gradient(circle at 30% 30%, rgba(242, 197, 85, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        conic-gradient(from 0deg, transparent, rgba(242, 197, 85, 0.2), transparent);
    border-radius: 50%;
    animation: goldenAura 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes goldenAura {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.8) rotate(0deg);
    }

    25% {
        opacity: 0.9;
        transform: scale(1.1) rotate(90deg);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }

    75% {
        opacity: 1;
        transform: scale(0.9) rotate(270deg);
    }
}

@media (min-width: 768px) {
    .mascot-container::after {
        bottom: -30px;
        right: -30px;
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .mascot-container::after {
        bottom: -40px;
        right: -40px;
        font-size: 3rem;
    }
}

@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0px) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Nintendo-style floating decorations */
.hero {
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(12, 59, 46, 0.8), rgba(12, 59, 46, 0.6));
    border-radius: var(--radius-lg);
    animation: float 12s ease-in-out infinite;
    z-index: 1;
    opacity: 0.7;
    box-shadow: 0 4px 15px rgba(12, 59, 46, 0.3);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: -3%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(184, 0, 0, 0.8), rgba(139, 0, 0, 0.6));
    border-radius: var(--radius-lg);
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
    opacity: 0.6;
    box-shadow: 0 4px 15px rgba(184, 0, 0, 0.3);
}

/* Additional floating elements */
.floating-christmas-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: var(--radius-lg);
    animation: float 15s ease-in-out infinite;
    opacity: 0.5;
}

.floating-element:nth-child(1) {
    top: 15%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    animation-delay: -3s;
    box-shadow: 0 4px 15px rgba(242, 197, 85, 0.3);
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 8%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-white), var(--color-cream));
    animation-delay: -6s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.floating-element:nth-child(3) {
    top: 25%;
    right: 10%;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    animation-delay: -9s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    right: 5%;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-white), var(--color-cream));
    animation-delay: -12s;
}

/* Enhanced Christmas Magic 3D Elements */
.christmas-magic-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.magic-star {
    position: absolute;
    font-size: 1.8rem;
    animation: gentleFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(242, 197, 85, 0.6));
    opacity: 0.8;
}

.magic-star-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.magic-star-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: -4s;
    font-size: 1.5rem;
}

.magic-snowflake {
    position: absolute;
    font-size: 1.8rem;
    animation: snowflakeRotate 12s linear infinite;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.7;
}

.magic-snowflake-1 {
    top: 30%;
    right: 10%;
    animation-delay: -6s;
}

/* Enhanced Christmas Decorative Elements */
.christmas-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.christmas-light {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.christmas-light:nth-child(1) {
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    animation-delay: 0s;
    box-shadow: 0 0 15px var(--color-secondary);
}

.christmas-light:nth-child(2) {
    top: 15%;
    left: 25%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    animation-delay: 1s;
    box-shadow: 0 0 15px var(--color-primary);
}

.christmas-light:nth-child(3) {
    top: 20%;
    left: 45%;
    background: radial-gradient(circle, var(--color-white) 0%, transparent 70%);
    animation-delay: 2s;
    box-shadow: 0 0 15px var(--color-white);
}

.christmas-light:nth-child(4) {
    top: 25%;
    left: 65%;
    background: radial-gradient(circle, var(--color-green) 0%, transparent 70%);
    animation-delay: 0.5s;
    box-shadow: 0 0 15px var(--color-green);
}

.christmas-light:nth-child(5) {
    top: 30%;
    left: 85%;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    animation-delay: 1.5s;
    box-shadow: 0 0 15px var(--color-secondary);
}

.christmas-light:nth-child(6) {
    top: 35%;
    left: 95%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    animation-delay: 2.5s;
    box-shadow: 0 0 15px var(--color-primary);
}

/* Diffused Light Effects */
.diffused-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(242, 197, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(184, 0, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at 10% 70%, rgba(242, 197, 85, 0.05) 0%, transparent 40%);
    animation: diffusedPulse 12s ease-in-out infinite;
}

/* Enhanced Snow Animation */
.enhanced-snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    user-select: none;
    pointer-events: none;
    animation: enhancedSnowfall linear infinite;
}

.snowflake:nth-child(odd) {
    animation-duration: 12s;
    font-size: 0.8em;
}

.snowflake:nth-child(even) {
    animation-duration: 18s;
    font-size: 1.2em;
}

.snowflake:nth-child(3n) {
    animation-duration: 15s;
    font-size: 1em;
}

/* Magical Sparkle Bursts */
.sparkle-burst {
    position: fixed;
    pointer-events: none;
    z-index: 3;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkleExplosion 2s ease-out forwards;
    box-shadow: 0 0 10px var(--color-secondary);
}

/* Christmas Tree Silhouettes */
.christmas-trees {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.tree-silhouette {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    animation: treeGlow 8s ease-in-out infinite alternate;
}

.tree-silhouette:nth-child(1) {
    left: 5%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 80px solid rgba(12, 59, 46, 0.3);
    animation-delay: 0s;
}

.tree-silhouette:nth-child(2) {
    left: 15%;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 70px solid rgba(12, 59, 46, 0.25);
    animation-delay: 2s;
}

.tree-silhouette:nth-child(3) {
    right: 10%;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 90px solid rgba(12, 59, 46, 0.35);
    animation-delay: 4s;
}

/* 3D Animation Keyframes */
@keyframes magicFloat3D {

    0%,
    100% {
        transform: translateY(0px) translateZ(0px) rotateY(0deg);
    }

    25% {
        transform: translateY(-20px) translateZ(10px) rotateY(90deg);
    }

    50% {
        transform: translateY(-10px) translateZ(20px) rotateY(180deg);
    }

    75% {
        transform: translateY(-25px) translateZ(10px) rotateY(270deg);
    }
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes ornamentSwing {

    0%,
    100% {
        transform: rotate(-8deg) translateZ(0px);
    }

    50% {
        transform: rotate(8deg) translateZ(5px);
    }
}

@keyframes bellRing {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    5%,
    15% {
        transform: rotate(15deg);
    }

    10%,
    20% {
        transform: rotate(-15deg);
    }
}

/* Enhanced Christmas Animation Keyframes */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
        box-shadow: 0 0 5px currentColor;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

@keyframes diffusedPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    66% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

@keyframes enhancedSnowfall {
    0% {
        transform: translateY(-100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkleExplosion {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(7deg);
    }
}

@keyframes snowflakeRotate {
    0% {
        transform: rotate(0deg) translateY(0px);
    }
    100% {
        transform: rotate(360deg) translateY(-20px);
    }
}

@keyframes snowflakeRotate {
    0% {
        transform: rotate(0deg) translateY(0px);
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) translateY(-20px);
        opacity: 0.8;
    }
}

/* Lottie Animation Containers */
.lottie-animations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.lottie-container {
    position: absolute;
}

.lottie-tree {
    bottom: 10%;
    left: 5%;
    animation: gentleFloat 10s ease-in-out infinite;
}

.lottie-snow {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.lottie-sparkles {
    top: 20%;
    right: 10%;
    animation: sparkleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all var(--transition-normal);
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) translateY(-4px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--space-20) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -2%;
    width: 100px;
    height: 100px;
    background: url('assets/pps-tile-1-gold-2x-1.avif') center/cover;
    border-radius: var(--radius-xl);
    animation: float 14s ease-in-out infinite;
    opacity: 0.4;
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -3%;
    width: 80px;
    height: 80px;
    background: url('assets/pps-tile-1-blue-2x.avif') center/cover;
    border-radius: var(--radius-xl);
    animation: float 16s ease-in-out infinite reverse;
    opacity: 0.3;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.card:hover::before {
    opacity: 1;
}

/* Nintendo-style card decorations */
.card::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    border-radius: 50%;
    opacity: 0.6;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-christmas);
}

.card-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-3);
}

.card-text {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin: 0;
}

.feelings-section {
    background: linear-gradient(135deg, rgba(242, 197, 85, 0.1), rgba(184, 0, 0, 0.05));
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    border: 2px solid rgba(242, 197, 85, 0.2);
}

.feelings-title {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--space-8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.feelings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .feelings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .feelings-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.feeling-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.feeling-item:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-gold);
}

.feeling-icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary-dark);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    border-radius: 50%;
    padding: var(--space-2);
}

.feeling-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-gray-800);
    font-size: 0.875rem;
    text-align: center;
}

/* ===== DETAILS SECTION ===== */
.details {
    background: var(--color-white);
}

.details-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

@media (min-width: 1024px) {
    .details-content {
        grid-template-columns: 1fr 1fr;
    }
}

.detail-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-gray-100);
    text-align: center;
    transition: all var(--transition-normal);
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
}

.detail-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-christmas);
}

.detail-icon i {
    width: 2rem;
    height: 2rem;
}

.detail-title {
    font-size: 1.5rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
}

.detail-date,
.detail-venue {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.detail-address {
    color: var(--color-gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.sessions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-6);
}

.session {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-4);
    background: rgba(242, 197, 85, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-secondary);
    flex: 1;
}

.session-label {
    font-size: 0.75rem;
    color: var(--color-gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.session-time {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.map-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-secondary);
}

/* ===== PLANS SECTION - SPECTACULAR REDESIGN ===== */
.plans {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: var(--space-32) 0;
}

.plans-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.plans-sparkles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(3px 3px at 15% 25%, rgba(242, 197, 85, 0.8), transparent),
        radial-gradient(2px 2px at 85% 75%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(4px 4px at 45% 15%, rgba(242, 197, 85, 0.7), transparent),
        radial-gradient(2px 2px at 25% 85%, rgba(255, 215, 0, 0.5), transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    animation: magicalSparkles 30s linear infinite;
    opacity: 0.4;
}

.plans-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(242, 197, 85, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    animation: plansGlow 8s ease-in-out infinite alternate;
}

@keyframes magicalSparkles {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(-100px) translateX(50px);
    }
}

@keyframes plansGlow {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.plans .section-title,
.plans .section-subtitle {
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.plans .section-title {
    font-size: 3.5rem;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(242, 197, 85, 0.6);
}

.plans-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .plans-showcase {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.plan-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(242, 197, 85, 0.1);
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 197, 85, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(242, 197, 85, 0.3);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-featured {
    transform: scale(1.05);
    border: 3px solid var(--color-secondary);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(242, 197, 85, 0.3);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    color: var(--color-primary-dark);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(242, 197, 85, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.plan-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.plan-sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleRotate 4s ease-in-out infinite;
    opacity: 0.7;
}

.plan-decoration .plan-sparkle:nth-child(1) {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.plan-decoration .plan-sparkle:nth-child(2) {
    bottom: 20%;
    left: 10%;
    animation-delay: -2s;
}

.plan-decoration .plan-sparkle:nth-child(3) {
    top: 30%;
    left: 20%;
    animation-delay: -1s;
}

@keyframes sparkleRotate {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

.plan-header {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
}

.plan-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-4);
}

.plan-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(242, 197, 85, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 3s ease-in-out infinite alternate;
}

.diamond-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
}

@keyframes iconGlow {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.plan-title {
    font-size: 2rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-2);
    font-family: var(--font-heading);
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.plan-price-container {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: var(--space-1);
    background: linear-gradient(135deg, var(--color-gray-50), var(--color-white));
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--space-3);
}

.diamond-price {
    background: linear-gradient(135deg, rgba(242, 197, 85, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(242, 197, 85, 0.2);
}

.price-label {
    font-size: 1rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.price-currency {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.price-description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--space-3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.plan-features {
    margin-bottom: var(--space-8);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3);
    margin-bottom: var(--space-2);
    background: rgba(242, 197, 85, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(242, 197, 85, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 2rem;
    text-align: center;
}

.feature-item span {
    font-weight: 500;
    color: var(--color-gray-700);
}

.btn-plan {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-plan-gold {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    color: var(--color-primary-dark);
    box-shadow: 0 8px 20px rgba(242, 197, 85, 0.3);
}

.btn-plan-diamond {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(184, 0, 0, 0.3);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-shine {
    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;
}

.btn-plan:hover .btn-shine {
    left: 100%;
}

.plans-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .plans-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: var(--space-1);
    font-family: var(--font-heading);
}

.benefit-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* ===== MESSAGE SECTION ===== */
.message {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    text-align: center;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin: 0 auto var(--space-8);
    box-shadow: var(--shadow-christmas);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.message-icon i {
    width: 2.5rem;
    height: 2.5rem;
}

.message-title {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .message-title {
        font-size: 4rem;
    }
}

.message-text {
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: var(--space-8);
    font-style: italic;
}

.message-quote {
    background: rgba(242, 197, 85, 0.1);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border-left: 4px solid var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-style: italic;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-primary-dark);
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-center {
    text-align: center;
    max-width: 600px;
}

.cta-mascot-wrapper {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-final {
    position: relative;
}

.cta-mascot {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

.footer-text {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-text p {
    margin-bottom: var(--space-1);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-8);
        padding: var(--space-8);
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-slow);
        z-index: var(--z-modal);
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: var(--space-2) 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-info {
        flex-direction: column;
    }

    .info-item {
        min-width: auto;
    }

    .hero-cta {
        align-items: center;
    }
}

@media (max-width: 767px) {
    /* Center all content on mobile */
    .hero-content,
    .section-content,
    .about-cards,
    .plans-grid,
    .details-cards-grid,
    .message-content {
        text-align: center;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-mascot {
        width: 200px;
        height: 200px;
    }

    .section {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .about-cards {
        gap: var(--space-6);
        justify-items: center;
    }

    .card {
        padding: var(--space-6);
        text-align: center;
    }

    .feelings-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .feeling-item {
        text-align: center;
    }

    .plans-grid {
        gap: var(--space-6);
        justify-items: center;
    }

    .plan-card {
        padding: var(--space-6);
        text-align: center;
    }

    .plan-featured {
        transform: none;
        order: -1;
    }

    .details-cards-grid {
        justify-items: center;
    }

    .detail-card {
        text-align: center;
    }

    .detail-header {
        justify-content: center;
        text-align: center;
    }

    .detail-content {
        text-align: center;
        align-items: center;
    }

    .detail-date-main {
        justify-content: center;
        text-align: center;
    }

    .date-info {
        text-align: center;
    }

    .sessions-grid {
        justify-content: center;
    }

    .session-card {
        text-align: center;
    }

    .session-info {
        text-align: center;
    }

    .venue-info {
        text-align: center;
    }

    .venue-name {
        text-align: center;
    }

    .venue-address {
        text-align: center;
    }

    .address-line {
        justify-content: center;
        text-align: center;
    }

    .message-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .message-text {
        text-align: center;
    }

    .message-quote {
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
        text-align: center;
    }

    .cta-description {
        text-align: center;
    }

    /* Center buttons */
    .btn,
    .hero-cta,
    .plan-cta {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .container {
        padding: 0 var(--space-4);
    }

    /* Force center alignment on smallest screens with highest specificity */
    body,
    body * {
        text-align: center !important;
    }

    /* Override any left-aligned elements */
    .hero,
    .hero-content,
    .hero-text,
    .section,
    .section-content,
    .container,
    .details-section,
    .details-showcase,
    .details-cards-grid {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-title-main {
        font-size: 2rem;
        text-align: center !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center !important;
    }

    .hero-mascot {
        width: 160px;
        height: 160px;
        margin: 0 auto !important;
    }

    .btn,
    .btn-large,
    .hero-cta a {
        padding: var(--space-3) var(--space-6);
        font-size: 0.875rem;
        margin: 0 auto !important;
        display: block !important;
        width: fit-content !important;
        text-align: center !important;
    }

    .feelings-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        justify-items: center !important;
        text-align: center !important;
    }

    .sessions {
        flex-direction: column !important;
        align-items: center !important;
    }

    .session-card {
        text-align: center !important;
        margin: 0 auto !important;
    }

    /* Center all grid items */
    .about-cards,
    .plans-grid,
    .details-cards-grid {
        justify-items: center !important;
        text-align: center !important;
    }

    /* Force center all detail card elements */
    .detail-card {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .detail-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 10px !important;
    }

    .detail-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .detail-date-main {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 10px !important;
    }

    .date-info,
    .session-info,
    .venue-info,
    .venue-name,
    .address-line {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Center hero elements */
    .hero-text {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-info,
    .hero-cta {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title,
    .hero-title-main,
    .hero-title-small,
    .hero-subtitle {
        text-align: center !important;
    }

    /* Center all text elements */
    h1, h2, h3, h4, h5, h6,
    p, span, div, a {
        text-align: center !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {

    .card,
    .detail-card,
    .plan-card {
        border-width: 3px;
        border-color: var(--color-gray-900);
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
}

.btn:focus {
    outline-color: var(--color-white);
}

/* Print styles */
@media print {

    .header,
    .scroll-indicator,
    .hero-particles,
    .hero-glow,
    .mascot-glow {
        display: none;
    }

    .hero {
        background: var(--color-white);
        color: var(--color-gray-900);
        min-height: auto;
        padding: var(--space-8) 0;
    }

    .hero-title,
    .hero-subtitle {
        color: var(--color-gray-900);
        text-shadow: none;
    }
}/
* MOBILE CENTERING OVERRIDE - HIGHEST PRIORITY */
@media screen and (max-width: 480px) {
    /* Force center everything with maximum specificity */
    html body .hero,
    html body .hero-content,
    html body .hero-text,
    html body .hero-title,
    html body .hero-title-main,
    html body .hero-title-small,
    html body .hero-subtitle,
    html body .section,
    html body .container,
    html body .details-section,
    html body .details-showcase,
    html body .details-cards-grid,
    html body .detail-card,
    html body .detail-header,
    html body .detail-content,
    html body .detail-title,
    html body .detail-date-main,
    html body .date-info,
    html body .venue-info,
    html body .venue-name,
    html body .address-line,
    html body h1,
    html body h2,
    html body h3,
    html body h4,
    html body h5,
    html body h6,
    html body p,
    html body span,
    html body div {
        text-align: center !important;
    }

    /* Force flex containers to center */
    html body .hero-content,
    html body .hero-text,
    html body .section,
    html body .container,
    html body .details-cards-grid,
    html body .detail-card,
    html body .detail-header,
    html body .detail-content,
    html body .detail-date-main {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Center buttons */
    html body .btn,
    html body .btn-large,
    html body .hero-cta a {
        margin: 0 auto !important;
        display: block !important;
        width: fit-content !important;
    }
}