/* 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;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    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;
}

/* Thanksgiving Decorations */
.christmas-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.thanksgiving-decorations {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.thanksgiving-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.9;
}

.thanksgiving-icon:nth-child(1) { animation-delay: 0s; }
.thanksgiving-icon:nth-child(2) { animation-delay: 0.2s; }
.thanksgiving-icon:nth-child(3) { animation-delay: 0.4s; }
.thanksgiving-icon:nth-child(4) { animation-delay: 0.6s; }
.thanksgiving-icon:nth-child(5) { animation-delay: 0.8s; }

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

/* Featured Promotion */
.featured-promo {
    padding: 80px 0;
    background: #f8f9fa;
}

.promo-banner {
    background: linear-gradient(135deg, #eaaa0e 0%, #d29a0c 100%);
    color: #000000;
    padding: 40px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.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: #8B4513 !important;
    font-size: 2.8rem !important;
    margin-bottom: 20px !important;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.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(210, 105, 30, 0.08);
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.section-subtitle {
    text-align: center;
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.christmas-card {
    position: relative;
    border: 3px solid #D2691E;
    background: linear-gradient(135deg, #ffffff 0%, #FFF8DC 100%);
}

.christmas-card::before {
    content: "🍂";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.3;
    animation: snowRotate 3s ease-in-out infinite;
}

.christmas-card::after {
    content: "🦃";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    opacity: 0.3;
    animation: treeGlow 2s ease-in-out infinite;
}

@keyframes snowRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

@keyframes treeGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.christmas-card .promo-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.featured-reward {
    border: 4px solid #eaaa0e;
    box-shadow: 0 8px 25px rgba(234, 170, 14, 0.3);
}

.featured-reward::before {
    content: "🎁";
    font-size: 2.5rem;
}

.featured-reward .promo-header {
    background: linear-gradient(135deg, #eaaa0e 0%, #d99a0d 100%);
}

.featured-reward .discount {
    background: #1a472a;
    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, #8B4513 0%, #D2691E 30%, #CD853F 50%, #D2691E 70%, #8B4513 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;
    }
}

.thanksgiving-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.4;
}

.falling-leaf {
    position: absolute;
    top: -50px;
    font-size: 2.5rem;
    animation: leafFall linear infinite;
    opacity: 0.8;
}

.falling-leaf:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.falling-leaf:nth-child(2) {
    left: 30%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.falling-leaf:nth-child(3) {
    left: 50%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.falling-leaf:nth-child(4) {
    left: 70%;
    animation-duration: 9s;
    animation-delay: 0.5s;
}

.falling-leaf:nth-child(5) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.falling-leaf:nth-child(6) {
    left: 20%;
    animation-duration: 13s;
    animation-delay: 3s;
}

@keyframes leafFall {
    to {
        transform: translateY(100vh) rotate(720deg);
    }
}

.crane-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Turkey Walking Across Screen */
.turkey-walking {
    animation: turkeyWalk 7s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform: scale(1.5);
}

@keyframes turkeyWalk {
    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 Turkey Styles */
.JT {
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.JT-leg {
    position: absolute;
    top: 90px;
    z-index: -100;
}

.JT-leg_left {
    left: 48%;
}

.JT-leg_right {
    left: 63%;
}

.JT-leg-shin {
    width: 10px;
    height: 40px;
    background: #f8931f;
    position: relative;
    z-index: 100;
    background: linear-gradient(to right, #f7ad59 0%, #f9a94a 100%);
}

.JT-leg-foot {
    width: 40px;
    height: 10px;
    background-color: #f8931f;
    border-top-left-radius: 100% 100%;
    border-top-right-radius: 100% 100%;
    border-bottom-right-radius: 14% 100%;
    border-bottom-left-radius: 14% 100%;
    position: absolute;
    z-index: 200;
    bottom: -5px;
}

.JT-leg-foot-left {
    left: -30px;
    transform-origin: left;
    transform: rotate(0deg);
    position: absolute;
}

.JT-leg-foot-right {
    left: 0px;
    position: absolute;
    transform-origin: left;
    transform: rotate(-20deg);
    -webkit-animation: shake .5s infinite;
    animation: shake .5s infinite;
}

.JT-feathers {
    position: absolute;
    z-index: 50;
    left: -100%;
    top: 20%;
    transform-origin: left bottom;
    transform: rotate(-5deg);
}

.JT-feather {
    width: 180px;
    height: 60px;
    background-color: #aa6615;
    border-top-left-radius: 40% 100%;
    border-top-right-radius: 100% 70%;
    border-bottom-right-radius: 100% 100%;
    border-bottom-left-radius: 40% 100%;
    box-shadow: 0px 0px 0px #000000;
    position: absolute;
    transform-origin: right center;
}

.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 {
    transform: rotate(80deg);
    background-color: #f8931f;
}

.JT-feather-5 {
    transform: rotate(100deg);
    background-color: #f8931f;
}

.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;
    background-color: #7b2e12;
    background: linear-gradient(to right, rgba(123, 46, 18, 1) 0%, rgba(64, 19, 3, 1) 100%);
    border-top-left-radius: 100% 100%;
    border-top-right-radius: 100% 100%;
    border-bottom-right-radius: 50% 80%;
    border-bottom-left-radius: 50% 80%;
    z-index: 900;
}

.JT-head {
    position: absolute;
    z-index: 1000;
    left: 20%;
    top: -50px;
    width: 70px;
    height: 75px;
    background-color: #c4694a;
    background: linear-gradient(to right, rgba(194, 142, 124, 1) 0%, rgba(196, 104, 74, 1) 100%);
    border-radius: 100%;
}

.JT-eye {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    background: #fff;
    position: absolute;
    top: -55px;
    z-index: 1050;
}

.JT-eye-left {
    left: 15px;
}

.JT-eye-right {
    left: 55px;
}

.JT-eye-iris {
    position: absolute;
    top: 36px;
    left: 20px;
    z-index: 1060;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    background: #000;
}

.JT-beak {
    position: absolute;
    top: -14px;
    left: 40px;
    z-index: 1040;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 20px 0 20px;
    border-color: #f8d04f transparent transparent transparent;
    border-radius: 200px;
}

.JT-hat {
    position: absolute;
    top: -115px;
    left: 15px;
    z-index: 1100;
    transform-origin: left bottom;
    transform: rotate(-10deg);
}

.JT-hat-pipe {
    width: 70px;
    height: 60px;
    background-color: #000;
    background: linear-gradient(to right, rgba(74, 74, 74, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-bottom: 15px solid #fff;
    z-index: 1200;
    position: relative;
}

.JT-hat-brim {
    position: absolute;
    bottom: -15px;
    left: -60%;
    z-index: 1150;
    width: 160px;
    height: 26px;
    background-color: #000;
    background: linear-gradient(to right, rgba(74, 74, 74, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-top-left-radius: 100% 100%;
    border-top-right-radius: 100% 100%;
    border-bottom-right-radius: 57% 32%;
    border-bottom-left-radius: 66% 32%;
}

.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) {
    .turkey-walking {
        animation: turkeyWalkMobile 7s cubic-bezier(0.4, 0.0, 0.2, 1);
        transform: scale(1);
    }

    @keyframes turkeyWalkMobile {
        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;
    }
}
