/* Base Styles - Christmas Theme */
:root {
    --primary-color: #c41e3a;
    --secondary-color: #228b22;
    --accent-color: #ffd700;
    --light-color: #f0f8ff;
    --dark-color: #2f4f2f;
    --success-color: #228b22;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #4682b4;
    --gray-color: #6c757d;
    --light-gray: #e6f3ff;
    --christmas-red: #c41e3a;
    --christmas-green: #228b22;
    --christmas-gold: #ffd700;
    --snow-white: #ffffff;
    --winter-blue: #4682b4;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Desktop Layout Container */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
                url('../images/back.jpg');
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Christmas Decorations */
.patriotic-star {
    position: absolute;
    color: var(--christmas-gold);
    font-size: 24px;
    opacity: 0.8;
    z-index: -1;
}

.star-1 {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 50px;
    animation: christmas-float 6s ease-in-out infinite;
}

.star-1::before {
    content: '🎄';
    font-size: 30px;
}

.star-2 {
    width: 30px;
    height: 30px;
    bottom: 40px;
    left: 30px;
    animation: christmas-float 8s ease-in-out infinite;
}

.star-2::before {
    content: '❄️';
    font-size: 20px;
}

.star-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 20px;
    animation: christmas-float 7s ease-in-out infinite;
}

.star-3::before {
    content: '🎅';
    font-size: 25px;
}

@keyframes christmas-float {
    0% {
        transform: translateY(0) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
        filter: brightness(1.3);
    }
    100% {
        transform: translateY(0) rotate(0deg);
        filter: brightness(1);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #001a4d;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #a00826;
    color: white;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(
        45deg,
        var(--secondary-color),
        var(--secondary-color) 10px,
        white 10px,
        white 20px,
        var(--primary-color) 20px,
        var(--primary-color) 30px
    );
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: white;
}

.logo h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--accent-color);
}

/* Christmas Lights */
.christmas-lights {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    gap: 8px;
}

.christmas-lights .light {
    font-size: 1.2rem;
    animation: christmas-blink 2s infinite;
    text-shadow: 0 0 10px currentColor;
}

.christmas-lights .light.red {
    color: #ff0000;
    animation-delay: 0s;
}

.christmas-lights .light.green {
    color: #00ff00;
    animation-delay: 0.4s;
}

.christmas-lights .light.blue {
    color: #0066ff;
    animation-delay: 0.8s;
}

.christmas-lights .light.yellow {
    color: #ffff00;
    animation-delay: 1.2s;
}

@keyframes christmas-blink {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.5);
    }
    25% {
        opacity: 0.3;
        transform: scale(0.8);
        filter: brightness(0.8);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.admin-link {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
}

.admin-link:hover {
    background-color: #e6c200;
    color: var(--primary-color) !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero Section - Christmas Theme */
.hero {
    background-image: url('../images/back.jpg');
    background-size: 65% auto;
    background-position: center 60%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #a7031f;
    color: white;
    padding: 150px 20px 50px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(196, 30, 58, 0.75), rgba(34, 139, 34, 0.75));
    mix-blend-mode: multiply;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.desktop-line-break {
    display: none;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Special Christmas Parade Title */
.christmas-parade-title {
    font-size: 2.8rem !important;
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive !important;
    color: var(--snow-white) !important;
    text-shadow: 
        3px 3px 0px var(--christmas-red),
        -1px -1px 0px var(--christmas-green),
        2px 2px 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6) !important;
    background: linear-gradient(45deg, 
        var(--christmas-red) 0%, 
        var(--christmas-gold) 25%, 
        var(--snow-white) 50%, 
        var(--christmas-gold) 75%, 
        var(--christmas-green) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: christmas-text-shine 3s ease-in-out infinite;
    margin-bottom: 25px !important;
    letter-spacing: 2px;
    font-weight: bold !important;
}

@media (min-width: 992px) {
    .christmas-parade-title {
        font-size: 5.6rem !important;
        line-height: 1.2;
    }
    .desktop-line-break {
        display: block;
    }
}

@keyframes christmas-text-shine {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.about h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-gray);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.detail i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Registration Section */
.register {
    padding: 80px 0;
    background-color: rgba(230, 243, 255, 0.8);
}

.register h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::before,
section h2::after {
    content: '🎄';
    color: var(--christmas-green);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(34, 139, 34, 0.5);
}

section h2::before {
    left: -40px;
}

section h2::after {
    right: -40px;
    content: '🎅';
    color: var(--christmas-red);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.payment-options {
    display: flex;
    gap: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option input[type="radio"] {
    margin-right: 5px;
}

.fee-notice {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
}

.fee-notice-small {
    color: var(--gray-color);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.alert ul {
    margin-left: 20px;
}

/* Club Section */
.club {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.club h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.club-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.club-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.club-text {
    flex: 1;
}

.club-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* CTA Section - Christmas Theme */
.cta {
    background: linear-gradient(rgba(196, 30, 58, 0.8), rgba(34, 139, 34, 0.8));
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}

.cta .btn:hover {
    background-color: #e6c200;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info, .footer-links, .footer-payment {
    flex: 1;
    min-width: 250px;
}

.footer-info h3, .footer-links h3, .footer-payment h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-payment p {
    margin-bottom: 10px;
}

.footer-payment strong {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .club-content {
        flex-direction: column;
    }
    
    .about-image, .club-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 20px 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-info, .footer-links, .footer-payment {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .about h2, .register h2, .club h2, .cta h2 {
        font-size: 2rem;
    }
    
    .registration-form {
        padding: 20px;
    }
}

/* Christmas Snow Effect */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #ffffff;
    font-size: 1em;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; font-size: 1.2em; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; font-size: 0.8em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 10s; animation-delay: 2s; font-size: 1.5em; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 14s; animation-delay: 0.5s; font-size: 1em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 9s; animation-delay: 1.5s; font-size: 1.3em; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 11s; animation-delay: 3s; font-size: 0.9em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.1em; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 15s; animation-delay: 4s; font-size: 1.4em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 7s; animation-delay: 1.8s; font-size: 0.7em; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 16s; animation-delay: 3.5s; font-size: 1.6em; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 6s; animation-delay: 0.8s; font-size: 0.6em; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 18s; animation-delay: 2.2s; font-size: 1.7em; }
.snowflake:nth-child(13) { left: 45%; animation-duration: 5s; animation-delay: 4.5s; font-size: 0.5em; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 20s; animation-delay: 1.2s; font-size: 1.8em; }
.snowflake:nth-child(15) { left: 65%; animation-duration: 8.5s; animation-delay: 3.8s; font-size: 0.9em; }
.snowflake:nth-child(16) { left: 75%; animation-duration: 12.5s; animation-delay: 0.3s; font-size: 1.2em; }
.snowflake:nth-child(17) { left: 85%; animation-duration: 17s; animation-delay: 2.8s; font-size: 1.4em; }
.snowflake:nth-child(18) { left: 95%; animation-duration: 9.5s; animation-delay: 4.2s; font-size: 0.8em; }
.snowflake:nth-child(19) { left: 5%; animation-duration: 11.5s; animation-delay: 1.7s; font-size: 1.3em; }
.snowflake:nth-child(20) { left: 12%; animation-duration: 14.5s; animation-delay: 3.2s; font-size: 1.1em; }

@keyframes snowfall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.8;
    }
}

/* Christmas Snowman */
.snowman {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    animation: snowman-sway 4s ease-in-out infinite;
}

.snowman-base {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ffffff 60%, #f0f8ff 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.snowman-body {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffffff 60%, #f0f8ff 100%);
    border-radius: 50%;
    position: relative;
    margin: -10px auto 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.snowman-head {
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, #ffffff 60%, #f0f8ff 100%);
    border-radius: 50%;
    position: relative;
    margin: -8px auto 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.snowman-eyes {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.eye {
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    position: absolute;
}

.eye.left {
    left: -6px;
}

.eye.right {
    right: -6px;
}

.snowman-nose {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 8px solid #ff8c00;
}

.snowman-mouth {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
}

.mouth-dot {
    width: 2px;
    height: 2px;
    background: #000;
    border-radius: 50%;
}

.snowman-buttons {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.button {
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

.snowman-hat {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.hat-brim {
    width: 55px;
    height: 8px;
    background: #000;
    border-radius: 4px;
    margin-bottom: 2px;
}

.hat-top {
    width: 35px;
    height: 25px;
    background: #000;
    border-radius: 4px 4px 0 0;
    margin: 0 auto;
}

.snowman-arms {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.arm {
    position: absolute;
    width: 25px;
    height: 3px;
    background: #8b4513;
    border-radius: 2px;
    top: 20px;
}

.left-arm {
    left: -35px;
    transform: rotate(-30deg);
}

.right-arm {
    right: -35px;
    transform: rotate(30deg);
}

@keyframes snowman-sway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

/* Mobile adjustments for snowman */
@media (max-width: 768px) {
    .snowman {
        bottom: 10px;
        right: 15px;
        transform: scale(0.8);
    }
}

/* Christmas Decorative Images Container */
.christmas-decorative-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Registration Section Images */
.registration-duck, .registration-float {
    position: relative;
}

/* Desktop sizes for registration images */
@media (min-width: 769px) {
    .registration-duck, .registration-float {
        width: 500px;
    }
}

/* Tablet sizes */
@media (max-width: 768px) {
    .registration-duck, .registration-float {
        width: 300px;
    }
}

/* Mobile sizes */
@media (max-width: 576px) {
    .registration-duck, .registration-float {
        width: 250px;
    }
}

.christmas-float-image img {
    border-radius: 10px;
    display: block;
    background: white;
    padding: 5px;
}

@keyframes christmas-light-border {
    0% {
        background-position: 0% 0%;
        filter: hue-rotate(0deg) brightness(1.2);
    }
    25% {
        background-position: 100% 0%;
        filter: hue-rotate(90deg) brightness(1.5);
    }
    50% {
        background-position: 100% 100%;
        filter: hue-rotate(180deg) brightness(1.2);
    }
    75% {
        background-position: 0% 100%;
        filter: hue-rotate(270deg) brightness(1.5);
    }
    100% {
        background-position: 0% 0%;
        filter: hue-rotate(360deg) brightness(1.2);
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

/* Positioned decorative images */
.duck-image-1 {
    top: 20px;
    right: 50px;
    width: 120px;
    animation-delay: 0s;
}

.duck-image-2 {
    bottom: 30px;
    left: 30px;
    width: 100px;
    animation-delay: 1s;
}

.float-image-1 {
    top: 60%;
    right: 20px;
    width: 140px;
    animation-delay: 0.5s;
}

.float-image-2 {
    top: 30%;
    left: 20px;
    width: 110px;
    animation-delay: 1.5s;
}

.duck-image-3 {
    top: 80%;
    right: 60%;
    width: 90px;
    animation-delay: 2s;
}

.float-image-3 {
    bottom: 50px;
    right: 40%;
    width: 130px;
    animation-delay: 2.5s;
}

/* Responsive adjustments for decorative images */
@media (max-width: 992px) {
    .christmas-float-image {
        width: 80px !important;
    }

    .duck-image-1, .float-image-1 {
        right: 20px;
    }

    .duck-image-2, .float-image-2 {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .christmas-float-image {
        width: 200px !important; /* Larger on tablets */
        padding: 6px;
    }

    .christmas-float-image img {
        padding: 4px;
    }

    .duck-image-3, .float-image-3 {
        display: none; /* Hide some images on mobile to avoid clutter */
    }
}

@media (max-width: 576px) {
    .christmas-float-image {
        width: 250px !important; /* Even larger on phones */
        padding: 8px;
    }

    .christmas-float-image img {
        padding: 5px;
    }
}

@media (max-width: 992px) {
    .hero {
        background-size: cover;
        background-position: center;
    }
}