/* Coming Soon Arrow */
.hero-cta {
    margin-top: 40px;
    opacity: 0;
    animation: riseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}

.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.8vw, 16px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #cc4400;
    transition: opacity 0.3s ease;
}

.hero-cta a:hover {
    opacity: 0.7;
}

.cta-arrow {
    display: inline-block;
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Show Promo Section */
.show-promo {
    padding: 80px 40px;
    background: #1a1a1a;
    color: #fff;
}

.show-promo-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.show-promo-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.show-promo-image img {
    width: 100%;
    display: block;
}

.show-promo-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.show-promo-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cc4400;
}

.show-promo-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
}

.show-promo-date {
    font-size: 18px;
    font-weight: 300;
    color: #ccc;
}

.show-promo-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #bbb;
}

.show-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #cc4400;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.show-promo-link:hover {
    opacity: 0.85;
}

.show-promo-link .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.show-promo-link:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .show-promo {
        padding: 60px 20px;
    }

    .show-promo-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .show-promo-image {
        max-width: 400px;
        margin: 0 auto;
    }
}
