body {
    background: #FAF6F0;
    color: #334155;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}
.font-serif-title {
    font-family: 'Cinzel', serif;
}
.font-cursive-accent {
    font-family: 'Sacramento', cursive;
}
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 207, 232, 0.5);
}
.gold-border {
    border: 2px solid #FBBF24;
}
.scratch-overlay {
    cursor: pointer;
    transition: opacity 0.5s ease;
}

/* Scroll Reveal Animations */
.reveal-section {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger Delays for Section Children */
.reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.is-visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
}
.is-visible .reveal-child:nth-child(1) { transition-delay: 100ms; }
.is-visible .reveal-child:nth-child(2) { transition-delay: 250ms; }
.is-visible .reveal-child:nth-child(3) { transition-delay: 400ms; }
.is-visible .reveal-child:nth-child(4) { transition-delay: 550ms; }

/* Shimmer & Glow Keyframe Animations */
@keyframes shimmerText {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.animate-shimmer {
    background: linear-gradient(90deg, #1e293b 0%, #b45309 25%, #db2777 50%, #b45309 75%, #1e293b 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmerText 7s linear infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.25), 0 0 20px rgba(236, 72, 153, 0.15); }
    50% { box-shadow: 0 15px 40px -5px rgba(245, 158, 11, 0.45), 0 0 35px rgba(236, 72, 153, 0.3); }
}
.pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes subtleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.animate-bounce-subtle {
    animation: subtleBounce 3s ease-in-out infinite;
}

/* Festive Background Decorations */
.body-bg {
    background-image: url('../assets/festive_bg_cream.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.corner-decoration {
    position: fixed;
    width: 140px;
    height: 140px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}
@media (min-width: 768px) {
    .corner-decoration {
        width: 240px;
        height: 240px;
    }
}
.corner-top-left {
    top: -10px;
    left: -10px;
    transform: rotate(0deg);
}
.corner-bottom-right {
    bottom: -10px;
    right: -10px;
    transform: rotate(180deg);
}
.toran-decoration {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(217, 119, 6, 0.25));
}
.section-pattern-bg {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,250,245,0.92) 100%), url('../assets/festive_bg_cream.jpg');
    background-size: cover;
    background-position: center;
}
.hero-glow {
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.85) 0%, rgba(255,250,245,0.65) 50%, transparent 100%);
}
