@import url('../esl/esl-buttons.css');

.e-signage-buttons-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.e-signage-buttons-container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
}

.button-item {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.button-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.button-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.button-content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

.button-action {
    text-align: center;
}

.btn-signage {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-signage:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .e-signage-buttons-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .button-item {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .button-content h3 {
        font-size: 20px;
    }
    
    .button-content p {
        font-size: 14px;
    }
    
    .btn-signage {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .e-signage-buttons-section {
        padding: 60px 0;
    }
    
    .button-item {
        padding: 25px 15px;
    }
    
    .button-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .button-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }
}
