/* Base styles shared across all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo h2 {
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.logo a:hover h2 {
    color: #eaaa0e;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #eaaa0e;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #eaaa0e;
    background: rgba(234, 170, 14, 0.08);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #eaaa0e 0%, #d29a0c 100%);
    box-shadow: 0 4px 12px rgba(234, 170, 14, 0.3);
}

.nav-link.active::before {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page header */
.page-header {
    position: relative;
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: background-image 1s ease-in-out;
}

@keyframes christmasGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Christmas Decorations */
.christmas-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.christmas-icons-container {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.christmas-icon {
    font-size: 2.5rem;
    animation: christmasBounce 2s ease-in-out infinite;
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.christmas-icon:nth-child(1) { animation-delay: 0s; }
.christmas-icon:nth-child(2) { animation-delay: 0.2s; }
.christmas-icon:nth-child(3) { animation-delay: 0.4s; }
.christmas-icon:nth-child(4) { animation-delay: 0.6s; }
.christmas-icon:nth-child(5) { animation-delay: 0.8s; }

@keyframes christmasBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-15px) rotate(10deg) scale(1.1); 
    }
}

/* Featured Promotion */
.featured-promo {
    padding: 80px 0;
    background: #f8f9fa;
}

.promo-banner {
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.promo-cta {
    background: white;
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.promo-cta:hover {
    background: #f0f0f0;
}

.promo-details h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.promo-details ul {
    list-style: none;
}

.promo-details li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.promo-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Current Promotions */
.current-promotions {
    padding: 80px 0;
}

.current-promotions h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.promotions-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    min-height: 200px;
}

.promo-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.promo-header {
    background: #000000;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 250px;
    gap: 15px;
}

.promo-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.discount {
    background: #eaaa0e;
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.promo-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-content p {
    color: #555;
    margin-bottom: 20px;
}

.promo-features {
    list-style: none;
    margin-bottom: 25px;
}

.promo-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.promo-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #eaaa0e;
    font-weight: bold;
}

.promo-button {
    background: #eaaa0e;
    color: #000000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.promo-button:hover {
    background: #e55a2b;
}

/* Christmas Theme Styles */
.rewards-title {
    color: #165b33 !important;
    font-size: 2.8rem !important;
    margin-bottom: 20px !important;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(196, 30, 58, 0.2);
}

.rewards-intro {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(22, 91, 51, 0.08);
    border-radius: 10px;
    border-left: 4px solid #c41e3a;
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.05);
}

.section-subtitle {
    text-align: center;
    color: #165b33;
    font-size: 2rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(196, 30, 58, 0.2);
}

.christmas-card {
    position: relative;
    border: 3px solid #c41e3a;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
}

.christmas-card::before {
    content: "❄️";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.4;
    animation: snowRotate 3s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(135, 206, 250, 0.6));
}

.christmas-card::after {
    content: "🎄";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    opacity: 0.4;
    animation: treeGlow 2s ease-in-out infinite;
}

@keyframes snowRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

@keyframes treeGlow {
    0%, 100% { 
        opacity: 0.4; 
        filter: drop-shadow(0 0 5px rgba(22, 91, 51, 0.3));
    }
    50% { 
        opacity: 0.7;
        filter: drop-shadow(0 0 10px rgba(22, 91, 51, 0.6));
    }
}

.christmas-card .promo-header {
    background: linear-gradient(135deg, #c41e3a 0%, #a01828 100%);
}

.featured-reward {
    border: 4px solid #165b33;
    box-shadow: 0 8px 25px rgba(22, 91, 51, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.featured-reward::before {
    content: "🎁";
    font-size: 2.5rem;
    animation: giftBounce 1.5s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.featured-reward .promo-header {
    background: linear-gradient(135deg, #165b33 0%, #0f3d23 100%);
}

.featured-reward .discount {
    background: #c41e3a;
    color: white;
}

.veterans-discount {
    border: 3px solid #B22234;
}

.veterans-discount .promo-header {
    background: linear-gradient(135deg, #B22234 0%, #8B0000 100%);
}

.veterans-discount::before {
    content: "⭐";
}

.veterans-discount::after {
    content: "🇺🇸";
}

.veterans-discount .discount {
    background: white;
    color: #B22234;
    border: 2px solid #B22234;
}

.rewards-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
}

/* Seasonal Offers */
.seasonal-offers {
    padding: 80px 0;
    background: #f8f9fa;
}

.seasonal-offers h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seasonal-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.seasonal-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.seasonal-card p {
    color: #555;
    margin-bottom: 20px;
}

.seasonal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.seasonal-benefits span {
    background: #eaaa0e;
    color: #000000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Financing Promotions */
.financing-promos {
    padding: 80px 0;
}

.financing-promos h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.financing-deals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.financing-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.financing-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.financing-card p {
    color: #555;
    margin-bottom: 20px;
}

.financing-terms {
    margin-bottom: 20px;
}

.financing-terms span {
    display: block;
    padding: 5px 0;
    color: #555;
}

.disclaimer {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Promotions CTA */
.promotions-cta {
    padding: 80px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.promotions-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.promotions-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: #eaaa0e;
    color: #000000;
}

.cta-button.primary:hover {
    background: #d29a0c;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #000000;
}

/* Footer */
.footer {
    background: #100e0a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 150px repeat(3, 1fr) 150px;
    gap: 40px;
    align-items: start;
}

.footer-logo-left,
.footer-logo-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 180px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #eaaa0e;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #eaaa0e;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #000000;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .promo-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promotions-grid {
        flex-direction: column;
    }

    .promo-card {
        flex-direction: column;
        min-height: auto;
    }

    .promo-header {
        min-width: 100%;
        padding: 25px;
    }

    .promo-header h3 {
        font-size: 1.2rem;
    }

    .discount {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .promo-content {
        padding: 25px;
    }

    .seasonal-grid {
        grid-template-columns: 1fr;
    }

    .financing-deals {
        grid-template-columns: 1fr;
    }

    .current-promotions h2,
    .seasonal-offers h2,
    .financing-promos h2,
    .promotions-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-left,
    .footer-logo-right {
        display: none;
    }
}

/* ===================================
   HOLIDAY CRANE ANIMATION
   =================================== */

.crane-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #165b33 0%, #0f3d23 20%, #c41e3a 50%, #0f3d23 80%, #165b33 100%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeOut 1s ease 7s forwards;
    pointer-events: none;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.christmas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.falling-snowflake {
    position: absolute;
    top: -50px;
    font-size: 2.5rem;
    animation: snowFall linear infinite;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.falling-snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.falling-snowflake:nth-child(2) {
    left: 30%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.falling-snowflake:nth-child(3) {
    left: 50%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.falling-snowflake:nth-child(4) {
    left: 70%;
    animation-duration: 9s;
    animation-delay: 0.5s;
}

.falling-snowflake:nth-child(5) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.falling-snowflake:nth-child(6) {
    left: 20%;
    animation-duration: 13s;
    animation-delay: 3s;
}

@keyframes snowFall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

.crane-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Santa Walking Across Screen */
.santa-walking {
    animation: santaWalk 7s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform: scale(1.5);
}

@keyframes santaWalk {
    0% {
        transform: translateX(-150vw) scale(1.5);
    }
    40% {
        transform: translateX(0) scale(1.5);
    }
    60% {
        transform: translateX(0) scale(1.5);
    }
    100% {
        transform: translateX(150vw) scale(1.5);
    }
}

/* CSS Santa Sleigh Styles */
.JT {
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(196, 30, 58, 0.4));
    font-size: 5rem;
}

.JT-leg {
    display: none;
}

.JT-leg_left {
    display: none;
}

.JT-leg_right {
    display: none;
}

.JT-leg-shin {
    display: none;
}

.JT-leg-foot {
    display: none;
}

.JT-leg-foot-left {
    display: none;
}

.JT-leg-foot-right {
    display: none;
}

.JT-feathers {
    display: none;
}

.JT-feather {
    display: none;
}

.JT-feather-1 {
    transform: rotate(20deg);
    background-color: #a95026;
}

.JT-feather-2 {
    transform: rotate(40deg);
    background-color: #ab8427;
}

.JT-feather-3 {
    transform: rotate(60deg);
}

.JT-feather-4 {
    display: none;
}

.JT-feather-5 {
    display: none;
}

.JT-feather-6 {
    transform: rotate(120deg);
}

.JT-feather-7 {
    transform: rotate(140deg);
    background-color: #ab8427;
}

.JT-feather-8 {
    transform: rotate(160deg);
    background-color: #a95026;
}

.JT-feather-9 {
    transform: rotate(180deg);
}

.JT-bod {
    position: relative;
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
}

.JT-bod::before {
    content: "🎄";
    font-size: 6rem;
    animation: treeGlide 1.5s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(22, 91, 51, 0.5));
}

@keyframes treeGlide {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.JT-head {
    display: none;
}

.JT-eye {
    display: none;
}

.JT-eye-left {
    display: none;
}

.JT-eye-right {
    display: none;
}

.JT-eye-iris {
    display: none;
}

.JT-beak {
    display: none;
}

.JT-hat {
    display: none;
}

.JT-hat-pipe {
    display: none;
}

.JT-hat-brim {
    display: none;
}

.JT-shake {
    -webkit-animation: JTshake 3.5s infinite;
    animation: JTshake 3.5s infinite;
}

.JT-rock {
    -webkit-animation: JTrock 3.5s infinite;
    animation: JTrock 3.5s infinite;
}

.JT-bounce {
    -webkit-animation: JTbounce 1s infinite;
    animation: JTbounce 1s infinite;
}

@keyframes JTshake {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes JTrock {
    0% {
        transform: translate(10px);
    }
    50% {
        transform: translate(0px);
    }
    100% {
        transform: translate(10px);
    }
}

@keyframes JTbounce {
    0% {
        transform: translate(0px, 0px);
    }
    30% {
        transform: translate(0px, 3px);
    }
    75% {
        transform: translate(0px, -3px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.holiday-text {
    text-align: center;
    color: white;
    animation: textFadeIn 1s ease 1s forwards;
    opacity: 0;
    margin-top: 90px;
}

@keyframes textFadeIn {
    to {
        opacity: 1;
    }
}

.holiday-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.holiday-text p {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .santa-walking {
        animation: santaWalkMobile 7s cubic-bezier(0.4, 0.0, 0.2, 1);
        transform: scale(1);
    }

    @keyframes santaWalkMobile {
        0% {
            transform: translateX(-120vw) scale(1);
        }
        40% {
            transform: translateX(-10vw) scale(1);
        }
        60% {
            transform: translateX(-10vw) scale(1);
        }
        100% {
            transform: translateX(120vw) scale(1);
        }
    }

    .holiday-text h2 {
        font-size: 1.8rem;
    }

    .holiday-text p {
        font-size: 1rem;
    }

    .snowflake {
        font-size: 1.5rem;
    }
}
