/**
 * Hero Promos - Promotions Section
 * Theme: Hello Elementor Child
 * Version: 1.0.0
 */

.hero-promos {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-promo-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(193, 163, 95, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(193, 163, 95, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridSlide 25s linear infinite;
    opacity: 0.4;
}
@keyframes gridSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
.hero-promo-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #c1a35f;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatElegant 18s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(193, 163, 95, 0.6);
}
.hero-promo-particle:nth-child(1) { top: 20%; left: 12%; animation-delay: 0s; }
.hero-promo-particle:nth-child(2) { top: 55%; left: 22%; animation-delay: 3s; }
.hero-promo-particle:nth-child(3) { top: 38%; left: 78%; animation-delay: 6s; }
.hero-promo-particle:nth-child(4) { top: 68%; left: 65%; animation-delay: 9s; }
.hero-promo-particle:nth-child(5) { top: 28%; left: 48%; animation-delay: 12s; }
.hero-promo-particle:nth-child(6) { top: 72%; left: 88%; animation-delay: 15s; }
@keyframes floatElegant {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
    25% { transform: translateY(-35px) translateX(25px); opacity: 1; }
    50% { transform: translateY(-70px) translateX(-25px); opacity: 0.5; }
    75% { transform: translateY(-35px) translateX(25px); opacity: 1; }
}
.hero-promo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 163, 95, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}
.hero-promo-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}
.hero-promo-content {
    color: #ffffff;
}
.hero-promo-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(193, 163, 95, 0.15);
    border: 2px solid #c1a35f;
    border-radius: 30px;
    color: #c1a35f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}
.hero-promo-title {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
.hero-promo-title-highlight {
    display: block;
    font-size: 90px;
    font-weight: 900;
    background: linear-gradient(135deg, #c1a35f 0%, #d4b76f 50%, #c1a35f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-promo-subtitle {
    font-size: 20px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-promo-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}
.hero-promo-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hero-promo-btn-primary {
    background: #c1a35f;
    color: #000000;
    border: 2px solid #c1a35f;
}
.hero-promo-btn-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 163, 95, 0.4);
}
.hero-promo-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.hero-promo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c1a35f;
    color: #c1a35f;
    transform: translateY(-3px);
}
.hero-promo-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s backwards;
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-promo-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.hero-promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 250px;
}
.hero-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(193, 163, 95, 0.2);
}
.hero-promo-card:first-child {
    grid-row: span 2;
    min-height: 520px;
}
.hero-promo-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-promo-card:hover img {
    transform: scale(1.05);
}
.hero-promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-promo-card:hover .hero-promo-overlay {
    transform: translateY(0);
}
.hero-promo-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.hero-promo-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-promo-old-price {
    font-size: 15px;
    color: #999999;
    text-decoration: line-through;
}
.hero-promo-new-price {
    font-size: 20px;
    color: #c1a35f;
    font-weight: 700;
}
.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c1a35f;
    color: #000000;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(193, 163, 95, 0.4);
    animation: gentleBounce 3s ease-in-out infinite;
}
@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.hero-promo-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(193, 163, 95, 0.2);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}
.hero-promo-stat {
    text-align: center;
}
.hero-promo-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #c1a35f;
    margin-bottom: 5px;
}
.hero-promo-stat-label {
    font-size: 13px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
@media (max-width: 968px) {
    .hero-promo-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 30px;
    }
    .hero-promo-title {
        font-size: 48px;
    }
    .hero-promo-title-highlight {
        font-size: 70px;
    }
    .hero-promo-visual {
        order: -1;
    }
    .hero-promo-stats {
        justify-content: space-around;
    }
}
@media (max-width: 640px) {
    .hero-promos {
        min-height: auto;
    }
    .hero-promo-container {
        padding: 40px 20px;
    }
    .hero-promo-title {
        font-size: 36px;
    }
    .hero-promo-title-highlight {
        font-size: 56px;
    }
    .hero-promo-subtitle {
        font-size: 16px;
    }
    .hero-promo-ctas {
        flex-direction: column;
    }
    .hero-promo-btn {
        width: 100%;
        justify-content: center;
    }
    .hero-promo-images {
        grid-template-columns: 1fr;
    }
    .hero-promo-card:first-child {
        grid-row: auto;
    }
    .hero-promo-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    .hero-promo-stat {
        flex: 1 1 40%;
    }
}
