:root {
    --easter-lavender: #b19cd9;
    --easter-mint: #98fb98;
    --easter-peach: #ffcba4;
    --easter-rose: #ffc0cb;
    --easter-sage: #9caf88;
    --easter-cream: #fff8dc;
    --easter-gold: #daa520;
    --easter-violet: #8a2be2;
    --easter-spring: #00ff7f;

    /* Easter Gradients */
    --easter-gradient-main: linear-gradient(135deg, #b19cd9 0%, #98fb98 25%, #ffcba4 50%, #ffc0cb 75%, #9caf88 100%);
    --easter-gradient-border: linear-gradient(45deg, #b19cd9, #98fb98, #ffcba4, #ffc0cb);
    --easter-gradient-soft: linear-gradient(to bottom, rgba(177, 156, 217, 0.2), rgba(152, 251, 152, 0.2));
    --easter-gradient-bloom: radial-gradient(circle, rgba(255, 192, 203, 0.3), rgba(177, 156, 217, 0.2), transparent);

    /* Easter Shadows & Effects */
    --easter-glow-soft: 0 0 20px rgba(177, 156, 217, 0.4);
    --easter-glow-spring: 0 0 20px rgba(152, 251, 152, 0.4);
    --easter-glow-warm: 0 0 15px rgba(255, 203, 164, 0.5);
    --easter-text-glow: 0 0 10px rgba(255, 248, 220, 0.8);

    /* Animation Timings */
    --easter-bloom: 3s;
    --easter-flutter: 4s;
    --easter-gentle: 2.5s;
}

body {
    background:
        radial-gradient(circle at 15% 85%, rgba(177, 156, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(152, 251, 152, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 203, 164, 0.05) 0%, transparent 70%),
        url('../layout/2024/images/body-texture-easter.webp');
    background-blend-mode: overlay, overlay, overlay, normal;
    background-size: 100% 100%, 100% 100%, 100% 100%, repeat;
}

/* Navigation Enhancements */
.navbar {
    background: var(--modal-border) url('../layout/2024/images/body-texture-easter.webp');
    background-blend-mode: overlay;
    border-bottom: 3px solid transparent;
    border-image: var(--easter-gradient-border) 1;
}

.nav-item a {
    color: var(--easter-cream);
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.6),
        0 0 8px rgba(177, 156, 217, 0.6),
        0 0 16px rgba(152, 251, 152, 0.4),
        0 0 24px rgba(255, 203, 164, 0.3);
    transition: all 0.3s ease;
}

.nav-item a:hover {
    color: var(--easter-cream);
    background: rgba(177, 156, 217, 0.2);
    border-radius: 6px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(255, 248, 220, 0.8),
        0 0 20px rgba(177, 156, 217, 0.6);
    transform: translateY(-1px);
}


.sub-nav a {
    color: var(--easter-cream);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.sub-nav a:hover {
    color: var(--easter-spring);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 0 10px rgba(152, 251, 152, 0.3);
}

/* Hero Section */
.logo a {
    width: min(394px, 60vw);
    height: 200px;
    background: url('/layout/2024/images/easter-syrnia-logo.webp') center/contain no-repeat;
    transition: filter 0.3s ease;
}


.hero {
    background: url('../layout/2024/images/hero-background-easter.webp') 50% 25% / cover no-repeat;
    border-bottom: 4px solid var(--easter-rose);
    box-shadow:
        inset 0 0 50px rgba(255, 248, 220, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-header {
    position: relative;
    z-index: 2;
    background: rgba(147, 249, 189, 0.158);
    border: 2px solid rgba(255, 248, 220, 0.077);
    border-radius: 12px;
    padding: 8px 12px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(126, 95, 185, 0.582),
        0 0 20px rgba(9, 129, 9, 0.603),
        0 0 28px rgba(183, 81, 3, 0.53);
}

.hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--easter-gradient-main);
    opacity: 0.1;
    border-radius: inherit;
    z-index: -1;
}


/* Footer Enhancements */
.footer {
    border-top: 3px solid transparent;
    border-image: var(--easter-gradient-border) 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--easter-gradient-border);
    opacity: 0.6;
}

.footer-icons {
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0 0 8px rgba(255, 248, 220, 0.4);
}

.footer-icons a {
    color: var(--easter-cream);
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    color: var(--easter-gold);
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(218, 165, 32, 0.6);
    transform: translateY(-2px);
}

.footer-links a {
    color: var(--easter-cream);
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0 0 8px rgba(177, 156, 217, 0.4),
        0 0 12px rgba(152, 251, 152, 0.3),
        0 0 16px rgba(255, 203, 164, 0.2);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(255, 248, 220, 0.6),
        0 0 16px rgba(177, 156, 217, 0.5);
}

/* Easter Animations */
@keyframes easterBloom {

    0%,
    100% {
        box-shadow:
            0 6px 20px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(177, 156, 217, 0.3),
            inset 0 1px 0 rgba(255, 248, 220, 0.2);
    }

    50% {
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(177, 156, 217, 0.5),
            0 0 35px rgba(152, 251, 152, 0.4),
            0 0 40px rgba(255, 203, 164, 0.3),
            inset 0 1px 0 rgba(255, 248, 220, 0.3);
    }
}

@keyframes petalDance {

    0%,
    100% {
        opacity: 0.6;
        transform: rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

@keyframes petalRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes springBreeze {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes floatingPetal {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }

    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-header {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero::after {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {

    .logo a {
        width: min(300px, 75vw);
        min-height: 130px;
    }

    .hero-header {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero::after {
        width: 40px;
        height: 40px;
    }
}