/* ===================================
   Promotion Graphics Section
   =================================== */

.promotion-graphics {
    padding: 50px 0;
    background: #ffffff;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--promo-color, #2d7a3e);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
}

.promo-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-icon {
    transform: scale(1.1);
}

.promo-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.promo-emoji {
    font-size: 2.5rem;
}

.promo-text {
    color: white;
    width: 100%;
}

.promo-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-text p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.promo-card:hover .promo-overlay {
    opacity: 0.8;
}

/* Add subtle pattern overlay */
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 640px) {
    .promotion-graphics {
        padding: 30px 0;
    }
    
    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .promo-card {
        height: auto;
        border-radius: 16px;
        padding: 20px 15px;
    }
    
    .promo-content {
        gap: 10px;
    }
    
       .promo-icon {
        width: 165px;
        height: 165px;
    }
    
        .promo-icon img {
        width: 165px;
        height: 165px;
    }
    
    .promo-emoji {
        font-size: 2rem;
    }
    
    .promo-text h3 {
        font-size: 1rem;
    }
    
    .promo-text p {
        font-size: 0.75rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .promo-card {
        height: 150px;
    }
}

@media (min-width: 1025px) {
    .promotion-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Color variations for better visual appeal */
.promo-card:nth-child(1) {
    --promo-color: #E85D75;
}

.promo-card:nth-child(2) {
    --promo-color: #4ECDC4;
}

.promo-card:nth-child(3) {
    --promo-color: #F4A261;
}

.promo-card:nth-child(4) {
    --promo-color: #6BCB77;
}
