
/* ============================================
   cat WALK PROMO BANNER STYLES
   Full width section with parallax background
   ============================================ */

.catwalk-promo-banner {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.catwalk-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-title {
    color: #fff;
    font-family: 'futura-pt', sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn-catwalk-outline {
    display: inline-block;
    padding: 16px 45px;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'futura-pt', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-catwalk-outline:hover {
    background: #fff;
    color: #151515;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .catwalk-promo-banner {
        height: 500px;
        background-attachment: scroll; /* Disable parallax on mobile/tablet for performance */
    }
    
    .promo-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .catwalk-promo-banner {
        height: 400px;
    }
    
    .promo-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .btn-catwalk-outline {
        padding: 14px 35px;
        font-size: 12px;
    }
}
